forked from protobufjs/bytebuffer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 1.38 KB
/
package.json
File metadata and controls
37 lines (36 loc) · 1.38 KB
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
{
"name": "bytebuffer",
"version": "2.3.1",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "A full-featured ByteBuffer implementation using typed arrays.",
"main": "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": "latest"
},
"devDependencies": {
"testjs": "latest",
"preprocessor": "latest",
"closurecompiler": "latest"
},
"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 noexpose && npm test && npm run-script jsdoc",
"build": "node build.js",
"compile": "ccjs ByteBuffer.js --create_source_map=ByteBuffer.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=externs/minimal-env.js --externs=externs/Long.js > ByteBuffer.min.js",
"noexpose": "cat ByteBuffer.js | grep -v @expose > ByteBuffer.noexpose.js",
"jsdoc": "jsdoc -c jsdoc.json"
}
}