-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "openflights-cached",
"version": "1.3.15",
"description": "A module that fetches newest OpenFlights airport data upon install and exposes in simple API allowing to search by ICAO and IATA codes.",
"keywords": [
"iata",
"icao",
"openflights",
"airports",
"locations",
"timezones"
],
"main": "index.js",
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"scramjet": "^4.36.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/signicode/openflights-cached.git"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-scramjet": "^3.0.0",
"si": "^2.0.0"
},
"types": "./.d.ts/openflights-cached.d.ts",
"scripts": {
"clean": "rm -rf dist && git checkout -- dist/",
"postinstall": "bin/fetch.js",
"integrity": "x=0; for f in `find ./dist/ -maxdepth 1 -type f`; do cat $f | jq type; x=$(($x + $?)); done; test $x = 0",
"test": "npx eslint . && test/index.js"
},
"author": "Signicode <open-source@signicode.com>",
"license": "MIT"
}