-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
67 lines (67 loc) · 1.53 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "geobuf",
"version": "3.0.2",
"description": "Compact binary encoding for geographic data",
"main": "index.js",
"bin": {
"geobuf2json": "bin/geobuf2json",
"json2geobuf": "bin/json2geobuf",
"shp2geobuf": "bin/shp2geobuf"
},
"scripts": {
"pretest": "eslint *.js test/*.js",
"test": "tape test/*.js",
"build-min": "mkdirp dist && browserify index.js -s geobuf | uglifyjs -c -m > dist/geobuf.js",
"build-dev": "mkdirp dist && browserify index.js -d -s geobuf > dist/geobuf-dev.js",
"build-all": "npm run build-min && npm run build-dev",
"prepare": "npm run build-all"
},
"repository": {
"type": "git",
"url": "[email protected]:mapbox/geobuf.git"
},
"files": [
"encode.js",
"decode.js",
"index.js",
"dist",
"bin",
"geobuf.proto"
],
"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": "~2.1.4",
"browserify": "^16.5.1",
"eslint": "^7.5.0",
"eslint-config-mourner": "^2.0.3",
"geojson-fixtures": "1.0.0",
"mkdirp": "^1.0.4",
"tape": "^5.0.1",
"uglify-js": "^3.10.0"
},
"dependencies": {
"concat-stream": "^2.0.0",
"pbf": "^3.2.1",
"shapefile": "~0.6.6"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"brace-style": 0
}
}
}