forked from mapbox/tilelive-bridge
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 899 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
30
31
32
33
34
35
36
{
"name": "@kartotherian/tilelive-bridge",
"version": "3.1.1-wikimedia.1",
"main": "./index.js",
"description": "Datasource => vector tiles bridge backend for tilelive",
"repository": {
"type": "git",
"url": "https://github.com/kartotherian/tilelive-bridge.git"
},
"publishConfig": {
"access": "public"
},
"licenses": [
{
"type": "BSD"
}
],
"dependencies": {
"@mapbox/sphericalmercator": "~1.0.1",
"@kartotherian/mapnik": "~3.7.4",
"mapnik-pool": "~0.1.3"
},
"devDependencies": {
"queue-async": "1.0.7",
"tape": "3.0.x",
"deep-equal": "~1.0.0",
"istanbul": "~0.3.17",
"coveralls": "~2.11.2",
"eslint": "~1.00.0",
"eslint-config-unstyled": "^1.1.0"
},
"scripts": {
"test": "eslint index.js && tape test/*.js",
"coverage": "istanbul cover tape test/*.js && coveralls < ./coverage/lcov.info"
}
}