-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "pson",
"description": "A super efficient binary serialization format for JSON.",
"version": "2.0.0",
"author": "Daniel Wirtz <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/PSON.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/PSON/issues"
},
"keywords": ["net", "buffer", "serialization", "bytebuffer", "websocket", "webrtc", "json", "protobuf", "thrift"],
"license": "Apache-2.0",
"engines": {
"node": ">=0.6"
},
"dependencies": {
"bytebuffer": "~3"
},
"devDependencies": {
"metascript": "~0",
"closurecompiler": "~1",
"testjs": "~1"
},
"scripts": {
"test": "testjs",
"build": "metascript src/PSON.js src/ > dist/PSON.js",
"compile": "ccjs dist/PSON.js > dist/PSON.min.js",
"jsdoc": "jsdoc -c jsdoc.json",
"make": "npm run-script build && npm run-script compile && npm test && npm run-script jsdoc"
}
}