|
1 | 1 | {
|
2 |
| - "name": "bytebuffer", |
3 |
| - "version": "4.0.0-pre", |
4 |
| - "author": "Daniel Wirtz <dcode@dcode.io>", |
5 |
| - "description": "The swiss army knife for binary data in JavaScript.", |
6 |
| - "main": "index.js", |
7 |
| - "browser": "dist/ByteBufferAB.js", |
8 |
| - "repository": { |
9 |
| - "type": "git", |
10 |
| - "url": "https://github.com/dcodeIO/ByteBuffer.js.git" |
11 |
| - }, |
12 |
| - "bugs": { |
13 |
| - "url": "https://github.com/dcodeIO/ByteBuffer.js/issues" |
14 |
| - }, |
15 |
| - "keywords": ["net", "array", "buffer", "arraybuffer", "typed array", "bytebuffer", "json", "websocket", "webrtc"], |
16 |
| - "dependencies": { |
17 |
| - "long": "~2 >=2.2.3", |
18 |
| - "bufferview": "~1" |
19 |
| - }, |
20 |
| - "devDependencies": { |
21 |
| - "utfx": "~1", |
22 |
| - "lxiv": "~0.2", |
23 |
| - "testjs": "~1", |
24 |
| - "metascript": "~0", |
25 |
| - "closurecompiler": "~1" |
26 |
| - }, |
27 |
| - "license": "Apache-2.0", |
28 |
| - "engines": { |
29 |
| - "node": ">=0.8" |
30 |
| - }, |
31 |
| - "scripts": { |
32 |
| - "prepublish": "npm test", |
33 |
| - "test": "node node_modules/testjs/bin/testjs tests/suite.js", |
34 |
| - "make": "npm run-script build && npm run-script compile && npm run-script compress && npm test", |
35 |
| - "build": "node scripts/build.js", |
36 |
| - "compile": "npm run-script compileAB && npm run-script compileAB_DataView", |
37 |
| - "compileAB": "ccjs dist/ByteBufferAB.js --create_source_map=dist/ByteBufferAB.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=externs/minimal-env.js --externs=node_modules/long/externs/Long.js > dist/ByteBufferAB.min.js", |
38 |
| - "compileAB_DataView": "ccjs dist/ByteBufferAB_DataView.js --create_source_map=dist/ByteBufferAB_DataView.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=externs/minimal-env.js --externs=node_modules/long/externs/Long.js > dist/ByteBufferAB_DataView.min.js", |
39 |
| - "compress": "gzip -c -9 dist/ByteBufferAB.min.js > dist/ByteBufferAB.min.js.gz && gzip -c -9 dist/ByteBufferAB_DataView.min.js > dist/ByteBufferAB_DataView.min.js.gz" |
40 |
| - } |
| 2 | + "name": "bytebuffer", |
| 3 | + "version": "4.0.0-pre", |
| 4 | + "author": "Daniel Wirtz <dcode@dcode.io>", |
| 5 | + "description": "The swiss army knife for binary data in JavaScript.", |
| 6 | + "main": "index.js", |
| 7 | + "browser": "dist/ByteBufferAB.js", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/dcodeIO/ByteBuffer.js.git" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/dcodeIO/ByteBuffer.js/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "net", |
| 17 | + "array", |
| 18 | + "buffer", |
| 19 | + "arraybuffer", |
| 20 | + "typed array", |
| 21 | + "bytebuffer", |
| 22 | + "json", |
| 23 | + "websocket", |
| 24 | + "webrtc" |
| 25 | + ], |
| 26 | + "dependencies": { |
| 27 | + "long": "~2 >=2.2.3", |
| 28 | + "bufferview": "~1" |
| 29 | + }, |
| 30 | + "devDependencies": { |
| 31 | + "closurecompiler": "~1", |
| 32 | + "lxiv": "~0.2", |
| 33 | + "metascript": "~0", |
| 34 | + "pretty-hrtime": "^1.0.0", |
| 35 | + "testjs": "~1", |
| 36 | + "utfx": "~1" |
| 37 | + }, |
| 38 | + "license": "Apache-2.0", |
| 39 | + "engines": { |
| 40 | + "node": ">=0.8" |
| 41 | + }, |
| 42 | + "scripts": { |
| 43 | + "prepublish": "npm test", |
| 44 | + "test": "node node_modules/testjs/bin/testjs tests/suite.js", |
| 45 | + "make": "npm run-script build && npm run-script compile && npm run-script compress && npm test", |
| 46 | + "build": "node scripts/build.js", |
| 47 | + "compile": "npm run-script compileAB && npm run-script compileAB_DataView", |
| 48 | + "compileAB": "ccjs dist/ByteBufferAB.js --create_s
F438
ource_map=dist/ByteBufferAB.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=externs/minimal-env.js --externs=node_modules/long/externs/Long.js > dist/ByteBufferAB.min.js", |
| 49 | + "compileAB_DataView": "ccjs dist/ByteBufferAB_DataView.js --create_source_map=dist/ByteBufferAB_DataView.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=externs/minimal-env.js --externs=node_modules/long/externs/Long.js > dist/ByteBufferAB_DataView.min.js", |
| 50 | + "compress": "gzip -c -9 dist/ByteBufferAB.min.js > dist/ByteBufferAB.min.js.gz && gzip -c -9 dist/ByteBufferAB_DataView.min.js > dist/ByteBufferAB_DataView.min.js.gz" |
| 51 | + } |
41 | 52 | }
|
0 commit comments