forked from protobufjs/protobuf.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (43 loc) · 1.59 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
{
"name": "protobufjs",
"version": "0.12.8",
"description": "ProtoBuf.js: protobuf for JavaScript. No compilation step required, works out of the box.",
"author": "Daniel Wirtz <[email protected]>",
"contributors": [
"Frank Xu <[email protected]>"
],
"main": "ProtoBuf.js",
"bin": {
"proto2js": "./bin/proto2js"
},
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/ProtoBuf.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/ProtoBuf.js/issues"
},
"keywords": ["net", "buffer", "protobuf", "serialization", "bytebuffer", "websocket", "webrtc"],
"dependencies": {
"bytebuffer": ">=1.3.0"
},
"devDependencies": {
"nodeunit": ">=0.7",
"preprocessor": ">=1.0.2",
"closurecompiler": ">=1.1"
},
"license": "Apache License, Version 2.0",
"engines": {
"node": ">=0.8"
},
"scripts": {
"prepublish": "npm test",
"test": "nodeunit tests/suite.js",
"make": "npm run-script build && npm run-script compile && npm test && npm run-script jsdoc",
"build": "node build.js",
"compile": "npm run-script compile-full && npm run-script compile-noparse",
"compile-full": "ccjs ProtoBuf.js --create_source_map=ProtoBuf.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > ProtoBuf.min.js",
"compile-noparse": "ccjs ProtoBuf.noparse.js --create_source_map=ProtoBuf.noparse.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > ProtoBuf.noparse.min.js",
"jsdoc": "jsdoc -c jsdoc.json"
}
}