forked from mapbox/geobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "geobuf",
"version": "1.0.1",
"description": "Compact binary encoding for geographic data",
"main": "index.js",
"bin": {
"geobuf2json": "bin/geobuf2json",
"json2geobuf": "bin/json2geobuf",
"shp2geobuf": "bin/shp2geobuf"
},
"scripts": {
"test": "eslint *.js test/*.js && tap test/*.js",
"cov": "istanbul cover test/*.js",
"coveralls": "istanbul cover test/*.js && coveralls < ./coverage/lcov.info",
"build-min": "mkdirp dist && browserify index.js -s geobuf | uglifyjs -c warnings=false -m > dist/geobuf.js",
"build-dev": "mkdirp dist && browserify index.js -d -s geobuf > dist/geobuf-dev.js",
"build": "npm run build-min && npm run build-dev",
"prepublish": "in-publish && npm run build || not-in-publish"
},
"repository": {
"type": "git",
"url": "[email protected]:mapbox/geobuf.git"
},
"keywords": [
"geographic",
"data",
"buffer",
"protobuf",
"format",
"compression",
"geojson",
"topojson"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/geobuf/issues"
},
"homepage": "https://github.com/mapbox/geobuf",
"devDependencies": {
"benchmark": "~1.0.0",
"browserify": "^11.0.1",
"coveralls": "~2.11.2",
"eslint": "^0.17.1",
"geojson-fixtures": "0.6.1",
"in-publish": "^2.0.0",
"istanbul": "~0.3.11",
"mkdirp": "^0.5.0",
"tap": "~0.7.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"concat-stream": "^1.4.7",
"pbf": "^1.3.2",
"shapefile": "~0.3.0"
}
}