UNPKG

bytebuffer

Version:

The swiss army knife for binary data in JavaScript.

40 lines (39 loc) 1.52 kB
{ "name": "bytebuffer", "version": "3.5.4", "author": "Daniel Wirtz <dcode@dcode.io>", "description": "The swiss army knife for binary data in JavaScript.", "main": "index.js", "browser": "dist/ByteBufferAB.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": "~2 >=2.2.3", "bufferview": "~1" }, "devDependencies": { "utfx": "~1", "lxiv": "~0.2", "testjs": "~1", "metascript": "~0", "closurecompiler": "~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": "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", "compress": "gzip -c -9 dist/ByteBufferAB.min.js > dist/ByteBufferAB.min.js.gz" } }