-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
51 lines (51 loc) · 1.74 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
{
"name": "bytebuffer",
"version": "5.0.1",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "The swiss army knife for binary data in JavaScript.",
"main": "dist/bytebuffer-node.js",
"browser": "dist/bytebuffer.js",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/bytebuffer.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/bytebuffer.js/issues"
},
"keywords": [
"net",
"array",
"buffer",
"arraybuffer",
"typed array",
"bytebuffer",
"json",
"websocket",
"webrtc"
],
"dependencies": {
"long": "~3"
},
"devDependencies": {
"closurecompiler": "~1",
"lxiv": "~0.2",
"metascript": "~0",
"pretty-hrtime": "^1.0.0",
"testjs": "~1",
"utfx": "^1.0.1"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8"
},
"scripts": {
"prepublish": "npm test",
"test": "node node_modules/testjs/bin/testjs tests/suite.js",
"make": "npm run-script build && npm run-script compile && npm run-script compress && npm test",
"build": "node scripts/build.js",
"compile": "npm run-script compile-default && npm run-script compile-dataview",
"compile-default": "ccjs dist/bytebuffer.js --create_source_map=dist/bytebuffer.min.map --externs=externs/minimal-env.js --externs=node_modules/long/externs/long.js > dist/bytebuffer.min.js",
"compile-dataview": "ccjs dist/bytebuffer-dataview.js --create_source_map=dist/bytebuffer-dataview.min.map --externs=externs/minimal-env.js --externs=node_modules/long/externs/long.js > dist/bytebuffer-dataview.min.js",
"compress": "gzip -c -9 dist/bytebuffer.min.js > dist/bytebuffer.min.js.gz && gzip -c -9 dist/bytebuffer-dataview.min.js > dist/bytebuffer-dataview.min.js.gz"
}
}