forked from protobufjs/protobuf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "protobufjs",
"version": "6.0.0",
"description": "Protocol Buffers for JavaScript.",
"author": "Daniel Wirtz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"bugs": "https://github.com/dcodeIO/protobuf.js/issues",
"homepage": "http://dcode.io/protobuf.js",
"keywords": [
"protobuf",
"protocol",
"buffers",
"protocol buffers",
"serialization",
"encoding"
],
"main": "src/index",
"bin": {
"pbjs": "bin/pbjs"
},
"types": "types/protobuf.js.d.ts",
"scripts": {
"build": "gulp",
"docs": "jsdoc -c jsdoc.docs.json -R README.md",
"pages": "node scripts/pages",
"types": "jsdoc -c jsdoc.types.json && node scripts/types.js",
"lint": "eslint src",
"test": "tape tests/*.js | tap-spec",
"zuul": "zuul --ui tape --no-coverage --concurrency 1 -- tests/*.js",
"zuul-local": "zuul --ui tape --no-coverage --concurrency 1 --local 8080 --disable-tunnel -- tests/*.js",
"bench": "node bench",
"all": "npm run lint && npm run test && npm run build && npm run docs && npm run types && npm run bench"
},
"optionalDependencies": {
"long": "^3.2.0"
},
"devDependencies": {
"benchmark": "^2.1.2",
"browserify": "^13.1.1",
"bundle-collapser": "^1.2.1",
"chalk": "^1.1.3",
"eslint": "^3.10.0",
"gh-pages": "^0.12.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-gzip": "^1.4.0",
"gulp-header": "^1.8.8",
"gulp-if": "^2.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"jaguarjs-jsdoc": "dcodeIO/jaguarjs-jsdoc",
"jsdoc": "^3.4.2",
"long": "^3.2.0",
"minimist": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tsd-jsdoc": "dcodeIO/tsd-jsdoc",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^2.4.4",
"vinyl-source-stream": "^1.1.0",
"zuul": "^3.11.1",
"zuul-ngrok": "^4.0.0"
},
"browser": {
"process": false,
"_process": false,
"buffer": false,
"fs": false
}
}