UNPKG

geojson-vt

Version:

Slice GeoJSON data into vector tiles efficiently

44 lines (43 loc) 1.13 kB
{ "name": "geojson-vt", "version": "1.0.1", "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", "faucet": "0.0.1", "jshint": "^2.5.10", "tape": "^3.0.3", "watchify": "^2.1.1" }, "scripts": { "test": "jshint src/*.js test/test-*.js && tape test/test-*.js | faucet", "build-min": "browserify src/index.js -s geojsonvt -o geojson-vt.js", "build-dev": "browserify -d src/index.js -s geojsonvt -o debug/geojson-vt-dev.js", "watch": "watchify -v -d src/index.js -s geojsonvt -o debug/geojson-vt-dev.js" }, "jshintConfig": { "undef": true, "unused": true, "trailing": true, "eqeqeq": true, "indent": 4, "node": true, "latedef": "nofunc", "strict": true, "globalstrict": true, "quotmark": true } }