forked from mapbox/geojson-vt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "geojson-vt",
"version": "2.1.6",
"description": "Slice GeoJSON data into vector tiles efficiently",
"homepage": "https://github.com/mapbox/geojson-vt",
"keywords": [
"spatial",
"geojson",
"tiles",
"geometry"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/geojson-vt.git"
},
"main": "src/index.js",
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "^11.1.0",
"coveralls": "^2.11.4",
"eslint": "^1.5.0",
"faucet": "0.0.1",
"istanbul": "^0.3.20",
"tape": "^4.2.0",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"license": "ISC",
"scripts": {
"test": "eslint src/*.js test/*.js debug/viz.js && tape test/test-*.js | faucet",
"cov": "istanbul cover tape test/test*.js",
"coveralls": "npm run cov && coveralls < ./coverage/lcov.info",
"build-min": "browserify src/index.js -s geojsonvt | uglifyjs -c -m -o geojson-vt.js",
"build-dev": "browserify -d src/index.js -s geojsonvt -o geojson-vt-dev.js",
"watch": "watchify -v -d src/index.js -s geojsonvt -o geojson-vt-dev.js"
}
}