-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
37 lines (37 loc) · 998 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
37
{
"name": "@mapbox/vt2geojson",
"description": "Dump vector tiles to GeoJSON",
"version": "1.1.5",
"main": "index.js",
"bin": {
"vt2geojson": "./vt2geojson"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/vt2geojson.git"
},
"author": "John Firebaugh <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/vt2geojson/issues"
},
"homepage": "https://github.com/mapbox/vt2geojson",
"dependencies": {
"pbf": "^1.3.5",
"request": "^2.64.0",
"vector-tile": "git+https://github.com/mapbox/vector-tile-js.git#classify-rings",
"yargs": "^3.27.0"
},
"devDependencies": {
"documentation": "^2.1.0-alpha2",
"eslint": "^1.6.0",
"eslint-config-mourner": "^1.0.1",
"nock": "^2.13.0",
"tap": "^2.1.1"
},
"scripts": {
"lint": "eslint vt2geojson *.js",
"docs": "documentation --lint --github --format html --output .",
"test": "npm run lint && tap --cov test.js"
}
}