-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.82 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "openflights-data",
"version": "1.0.6",
"description": "REST microservice for openflights airports and airlines data",
"keywords": [
"airlines",
"airports",
"iata",
"icao",
"microservice",
"openflights",
"rest"
],
"homepage": "https://github.com/commenthol/openflights-data#readme",
"bugs": {
"url": "https://github.com/commenthol/openflights-data/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/openflights-data.git"
},
"license": "Unlicense",
"author": "commenthol <[email protected]>",
"main": "src/index.js",
"directories": {
"doc": "docs",
"example": "example",
"test": "test"
},
"scripts": {
"all": "npm-run-all clean lint test",
"clean": "rimraf *.tgz",
"clean:all": "npm-run-all clean clean:data clean:node_modules",
"clean:data": "rimraf data/*.dat",
"clean:node_modules": "rimraf node_modules",
"postinstall": "node scripts/data.js",
"lint": "eslint --cache --fix '**/*.js'",
"prepublishOnly": "npm run all",
"start": "node test/server.js",
"test": "mocha"
},
"dependencies": {
"@turf/bbox-polygon": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/points-within-polygon": "^6.5.0",
"csv-parser": "^3.0.0",
"debug": "^4.3.2",
"express": "^4.17.1",
"i18n-iso-countries": "^6.8.0",
"map-lru": "^2.0.0"
},
"devDependencies": {
"compression": "^1.7.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.1.1",
"npm-run-all": "^4.1.5",
"supertest": "^6.1.6"
}
}