forked from protobufjs/bytebuffer.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1022 Bytes
/
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
{
"name": "@exodus/bytebuffer",
"version": "6.0.0-exodus.2",
"author": "Daniel Wirtz <[email protected]>",
"description": "The swiss army knife for binary data in JavaScript.",
"main": "dist/bytebuffer-node.js",
"files": [],
"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": {
"lxiv": "~0.2",
"metascript": "~0",
"pretty-hrtime": "^1.0.0",
"testjs": "~1",
"utfx": "^1.0.1"
},
"license": "Apache-2.0",
"engines": {
"node": ">=6"
},
"scripts": {
"prepublish": "npm test",
"test": "node node_modules/testjs/bin/testjs tests/suite.js",
"make": "npm run-script build && npm test",
"build": "node scripts/build.js"
}
}