forked from mapbox/vector-tile-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 821 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
{
"name": "@mapbox/vector-tile",
"description": "Parses vector tiles",
"repository": {
"url": "git+https://github.com/mapbox/vector-tile-js.git"
},
"version": "2.0.1",
"type": "module",
"exports": "./index.js",
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"@mapbox/point-geometry": "~1.0.0",
"@types/geojson": "^7946.0.14",
"pbf": "^4.0.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^9.6.0",
"eslint-config-mourner": "^4.0.2",
"typescript": "^5.5.3"
},
"scripts": {
"lint": "eslint index.js test/*.js",
"pretest": "npm run lint",
"test": "tsc && node --test",
"cov": "node --test --experimental-test-coverage",
"prepublishOnly": "npm test"
},
"files": [
"index.d.ts"
]
}