-
Notifications
You must be signed in to change notification settings - Fork 270
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "geojson-vt",
"version": "4.0.2",
"description": "Slice GeoJSON data into vector tiles efficiently",
"homepage": "https://github.com/mapbox/geojson-vt",
"type": "module",
"exports": "./src/index.js",
"sideEffects": false,
"keywords": [
"spatial",
"geojson",
"tiles",
"geometry"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/geojson-vt.git"
},
"module": "src/index.js",
"main": "geojson-vt-dev.js",
"jsdelivr": "geojson-vt.js",
"unpkg": "geojson-vt.js",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"benchmark": "^2.1.4",
"eslint": "^9.5.0",
"eslint-config-mourner": "^4.0.0",
"rollup": "^4.18.0"
},
"license": "ISC",
"scripts": {
"pretest": "eslint src/*.js test/*.js debug/viz.js",
"test": "node --test",
"cov": "node --experimental-test-coverage --test",
"build": "rollup -c",
"watch": "rollup -cw",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"geojson-vt.js",
"geojson-vt-dev.js",
"src"
]
}