forked from inaturalist/elasticmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "elasticmaps",
"version": "0.1.11",
"description": "Map tileserver based on node-mapnik and elasticsearch",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/inaturalist/elasticmaps.git"
},
"keywords": [
"elasticmaps", "elasticsearch", "tileserver", "maps"
],
"author": "Patrick Leary <[email protected]>",
"license": "MIT",
"dependencies": {
"express": "^4.12.3",
"underscore": "^1.8.3",
"mapnik": "^1.4.17",
"sphericalmercator": "^1.0.3",
"elasticsearch": "^4.0.2",
"step": "~0.0.5"
},
"devDependencies": {
"mocha": "^2.2.4",
"chai": "^2.3.0",
"istanbul": "^0.3.14",
"supertest": "^1.0.1",
"coveralls": "^2.11.2",
"mocha-lcov-reporter": "~0.0.2"
}
}