UNPKG

biner

Version:

Declarative binary data encoder / decoder.

85 lines (84 loc) 1.83 kB
{ "name": "biner", "version": "0.8.10", "description": "Declarative binary data encoder / decoder.", "main": "./index.js", "typings": "./index.d.ts", "files": [ "lib", "src", "index.js", "index.d.ts", "README.md" ], "scripts": { "clean": "rimraf lib", "format": "prettier --write \"{src,test}/**/*.ts\" --single-quote --trailing-comma es5", "prepublishOnly": "npm run build", "prebuild": "npm run clean && echo Using TypeScript && tsc --version", "build": "tsc --pretty", "test": "npm run build && nyc mocha --require ts-node/register --recursive \"test/**/*.test.ts\"" }, "repository": { "type": "git", "url": "git+https://github.com/taoyuan/biner.git" }, "keywords": [ "binary", "data", "buffer", "stream", "decode", "encode", "bl", "bin-protocol", "restructure", "varstruct" ], "author": "Dmitry Tsvettsikh <me@reklatsmasters.com>", "contributors": [ { "name": "Yuan Tao", "email": "towyuan@outlook.com" } ], "license": "MIT", "bugs": { "url": "https://github.com/taoyuan/biner/issues" }, "homepage": "https://github.com/taoyuan/biner#readme", "engines": { "node": ">=10" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/chai-spies": "^1.0.0", "@types/mocha": "^5.2.7", "@types/node": "^12.6", "binary": "^0.3.0", "bl": "^3.0.0", "chai": "^4.2.0", "chai-spies": "^1.0.0", "mocha": "^6.2.0", "nyc": "^14.1.1", "prettier": "^1.18.2", "rimraf": "^2.6.3", "ts-node": "^8.3", "typescript": "^3.5" }, "nyc": { "extension": [ ".ts" ], "exclude": [ "**/*.d.ts", "**/*.js", "test" ], "reporter": [ "text", "html" ], "all": true } }