-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "@mapbox/vtvalidate",
"version": "0.3.1",
"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": {
"@mapbox/mason-js": "^0.1.5",
"@mapbox/node-pre-gyp": "^1.0.8",
"aws-sdk": "^2.1074.0",
"node-addon-api": "^4.3.0"
},
"devDependencies": {
"@mapbox/mvt-fixtures": "~3.6.0",
"aws-sdk": "2.1074.0",
"bytes": "^3.1.2",
"d3-queue": "^3.0.7",
"minimist": "~1.2.5",
"tape": "^5.5.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": "{platform}-{arch}.tar.gz"
}
}