-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "@mapbox/vtshaver",
"version": "0.3.3",
"description": "Creates style-optimized vector tiles",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:mapbox/vtshaver.git"
},
"scripts": {
"test": "tape test/*.test.js",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "npm run docs-cpp && npm run docs-js",
"docs-cpp": "documentation build src/*.cpp --re --polyglot -f md -o API-CPP.md",
"docs-js": "documentation build lib/styleToFilters.js -f md -o API-JavaScript.md",
"build:dev": "make debug"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.12.0",
"@mapbox/node-pre-gyp": "^1.0.8",
"node-addon-api": "^4.3.0"
},
"bin": {
"vtshave": "./bin/vtshave.js",
"vtshaver-filters": "./bin/vtshaver-filters.js"
},
"devDependencies": {
"@mapbox/mason-js": "^0.1.5",
"@mapbox/mvt-fixtures": "^3.7.0",
"@mapbox/vector-tile": "^1.3.1",
"aws-sdk": "^2.1080.0",
"bytes": "^3.1.2",
"d3-queue": "^3.0.7",
"minimist": "^1.2.5",
"pbf": "^3.2.1",
"tape": "^4.5.1"
},
"binary": {
"module_name": "vtshaver",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{platform}-{arch}.tar.gz"
}
}