vector-tile-js/package.json
John Firebaugh d1b8401c54 1.1.3
2015-06-15 10:54:51 -07:00

32 lines
751 B
JSON

{
"name": "vector-tile",
"description": "Parses vector tiles",
"repository": "https://github.com/mapbox/vector-tile-js.git",
"version": "1.1.3",
"license": "BSD",
"main": "index.js",
"dependencies": {
"point-geometry": "0.0.0"
},
"devDependencies": {
"benchmark": "^1.0.0",
"coveralls": "~2.11.2",
"istanbul": "~0.3.6",
"mapnik": "^3.1.6",
"jshint": "^2.6.3",
"pbf": "^1.3.2",
"tape": "~3.5.0"
},
"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"
}
}