-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "elasticmaps",
"version": "5.3.0",
"description": "Map tileserver based on node-mapnik and elasticsearch",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/inaturalist/elasticmaps.git"
},
"keywords": [
"elasticmaps",
"elasticsearch",
"tileserver",
"maps"
],
"author": "Patrick Leary <[email protected]>",
"license": "MIT",
"dependencies": {
"@mapbox/sphericalmercator": "^1.2.0",
"recacheman": "^2.2.4",
"del": "^6.0.0",
"@elastic/elasticsearch": "^8.7.0",
"es6-promise-pool": "^2.5.0",
"express": "^4.17.2",
"flat": "^5.0.2",
"handlebars": "^4.7.7",
"latlon-geohash": "^1.1.0",
"lodash": "^4.17.21",
"mapnik": "^4.5.9",
"step": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"mocha": "^10.0.0",
"nyc": "*",
"supertest": "^6.2.0"
}
}