vector-tile-js/package.json
Vladimir Agafonkin a1aaedd659 bump version
2014-06-26 18:16:09 +03:00

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"
}
}