mirror of
https://github.com/mapbox/vector-tile-js.git
synced 2026-01-25 14:08:34 +00:00
30 lines
701 B
JSON
30 lines
701 B
JSON
{
|
|
"name": "vector-tile",
|
|
"description": "Parses vector tiles",
|
|
"repository": "https://github.com/mapbox/vector-tile-js.git",
|
|
"version": "0.1.0",
|
|
"license": "BSD",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"point-geometry": "0.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "~2.10.0",
|
|
"istanbul": "~0.2.11",
|
|
"jshint": "^2.5.1",
|
|
"pbf": "0.0.1",
|
|
"tape": "~2.13.3"
|
|
},
|
|
"jshintConfig": {
|
|
"trailing": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"indent": 4,
|
|
"node": true
|
|
},
|
|
"scripts": {
|
|
"test": "jshint lib && tape test/parse.test.js",
|
|
"cov": "istanbul cover ./node_modules/.bin/tape test/parse.test.js && coveralls < ./coverage/lcov.info"
|
|
}
|
|
}
|