-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "@maplibre/vtvalidate",
"version": "0.4.2",
"description": "Simply checks if a vector tile contains valid/invalid geometries",
"url": "http://github.com/maplibre/vtvalidate",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/maplibre/vtvalidate"
},
"scripts": {
"test": "tape test/*.test.js",
"install": "cmake-js compile --CDVCPKG_TARGET_TRIPLET=x64-windows-static",
"docs": "typedoc --entryPoints lib/index.d.ts --out docs/API"
},
"author": "Maplibre",
"license": "ISC",
"dependencies": {
"cmake-js": "^7.3.1"
},
"files": [
"bin",
"cmake",
"lib/index.js",
"lib/index.d.ts",
"src",
"vendor",
"CMakeLists.txt"
],
"devDependencies": {
"@mapbox/mvt-fixtures": "~3.6.0",
"bytes": "^3.1.2",
"d3-queue": "^3.0.7",
"minimist": "~1.2.5",
"tape": "^5.5.0",
"typedoc": "^0.28.15"
},
"bin": {
"vtvalidate": "./bin/vtvalidate.js"
},
"binary": {
"napi_versions": [
8
]
}
}