forked from sustainablejc/otm-tiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 827 Bytes
/
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
{
"name": "otm-tiler",
"version": "1.0.0",
"description": "Wraps Windshaft to provide map tiles for OpenTreeMap 2",
"main": "server.js",
"repository": "[email protected]:OpenTreeMap/otm-tiler.git",
"license": "AGPL-3.0",
"scripts": {
"test": "_mocha test/*.js",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- test/*.js",
"watch": "supervisor --inspect --watch .,style --extensions js,mms server.js",
"lint": "jshint *.js test/*.js"
},
"devDependencies": {
"coveralls": "^2.13.1",
"docco": "^0.7.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^3.5.2",
"supervisor": "^0.12.0"
},
"dependencies": {
"express": "3.21.2",
"moment": "2.19.3",
"rollbar": "^2.2.7",
"underscore": "^1.8.3",
"windshaft": "^3.3.1"
}
}