-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "tilestrata",
"version": "2.3.2",
"description": "A pluggable map tile server.",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"test-ci": "mocha -R tap",
"bench": "node misc/benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/naturalatlas/tilestrata.git"
},
"keywords": [
"map",
"tiles",
"server",
"layers"
],
"bugs": {
"url": "https://github.com/naturalatlas/tilestrata/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/naturalatlas/tilestrata",
"dependencies": {
"async": "~3.2.0",
"basic-auth": "~2.0.1",
"bbox-intersect": "~0.1.2",
"chalk": "^2.4.2",
"filesize": "~6.1.0",
"http-status": "~1.4.2",
"humanize-duration": "~3.24.0",
"lodash": "~4.17.20",
"npmlog": "~4.1.2",
"recovery": "~0.2.6",
"request": "~2.88.2",
"tilebelt": "~1.0.1",
"uuid": "~3.3.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"mocha": "^2.3.3"
}
}