forked from mapbox/node-tilejson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 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
{
"name": "@mapbox/tilejson",
"description": "Tile source backend for online tile sources",
"version": "1.1.0",
"author": "Mapbox (https://www.mapbox.com)",
"license": "BSD-2-Clause",
"contributors": [
"Konstantin Käfer <[email protected]>",
"mcm-jyl"
],
"dependencies": {
"@mapbox/sphericalmercator": "1.0.5",
"@mapbox/tiletype": "~0.3.1",
"agentkeepalive": "2.0.2",
"requestretry": "^1.12.0"
},
"devDependencies": {
"eslint": "^0.24.0",
"istanbul": "~0.3.17",
"coveralls": "~2.11.2",
"tape": "3.0.x"
},
"main": "./lib/tilejson.js",
"repository": {
"type": "git",
"url": "http://github.com/mapbox/node-tilejson.git"
},
"scripts": {
"test": "eslint --no-eslintrc -c .eslintrc lib && tape test/*.test.js",
"coverage": "istanbul cover tape test/*.test.js && coveralls < ./coverage/lcov.info"
},
"url": "http://github.com/mapbox/node-tilejson"
}