-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.11 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
{
"name": "@mapbox/vtvalidate",
"version": "0.2.3",
"description": "Simply checks if a vector tile contains valid/invalid geometries",
"url": "http://github.com/mapbox/vtvalidate",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:mapbox/vtvalidate.git"
},
"scripts": {
"test": "tape test/*.test.js",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "documentation build src/vtvalidate.cpp --polyglot -f md -o API.md"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"nan": "~2.10.0",
"node-pre-gyp": "~0.10.1"
},
"devDependencies": {
"@mapbox/mvt-fixtures": "~3.5.0",
"aws-sdk": "^2.4.7",
"tape": "^4.5.1",
"d3-queue": "^3.0.1",
"minimist": "~1.2.0",
"bytes": "^2.4.0"
},
"bin": {
"vtvalidate": "./bin/vtvalidate.js"
},
"binary": {
"module_name": "module",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
}
}