forked from mapbox/pbf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pbf",
"version": "3.2.1",
"description": "a low-level, lightweight protocol buffers implementation in JavaScript",
"main": "index.js",
"unpkg": "dist/pbf.js",
"jsdelivr": "dist/pbf.js",
"scripts": {
"bench": "node bench/bench.js",
"test": "eslint index.js compile.js test/*.js bench/bench-tiles.js bin/pbf && tap test/*.test.js && npm run build-min",
"cov": "tap test/*.test.js --cov --coverage-report=html",
"build-min": "mkdirp dist && browserify index.js -s Pbf | uglifyjs -c -m > dist/pbf.js",
"build-dev": "mkdirp dist && browserify index.js -d -s Pbf > dist/pbf-dev.js",
"prepublishOnly": "npm run build-dev && npm run build-min"
},
"files": [
"bin",
"dist",
"compile.js"
],
"bin": {
"pbf": "bin/pbf"
},
"repository": {
"type": "git",
"url": "[email protected]:mapbox/pbf.git"
},
"keywords": [
"protocol",
"buffer",
"pbf",
"protobuf",
"binary",
"format",
"serialization",
"encoder",
"decoder"
],
"author": "Konstantin Kaefer",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mapbox/pbf/issues"
},
"homepage": "https://github.com/mapbox/pbf",
"dependencies": {
"ieee754": "^1.1.12",
"resolve-protobuf-schema": "^2.1.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"eslint": "^5.15.1",
"eslint-config-mourner": "^2.0.3",
"mkdirp": "^0.5.1",
"protobufjs": "^6.8.8",
"protocol-buffers": "^4.1.0",
"tap": "^12.6.0",
"tile-stats-runner": "^1.0.0",
"uglify-js": "^3.6.1"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"space-before-function-paren": [
2,
"never"
],
"key-spacing": 0,
"no-empty": 0,
"global-require": 0,
"no-cond-assign": 0,
"indent": [
2,
4,
{
"flatTernaryExpressions": true
}
]
}
}
}