byte-rw
Version:
Byte reader/writer for buffers and streams in typescript/javascript
42 lines (41 loc) • 1.13 kB
JSON
{
"name": "byte-rw",
"version": "1.2.2",
"description": "Byte reader/writer for buffers and streams in typescript/javascript",
"types": "dist/types/index.d.ts",
"main": "dist/index.js",
"type": "module",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"build": "npm run build:release",
"build:release": "npm run build:clean && npm run build:tsc:release",
"build:debug": "npm run build:clean && npm run build:tsc:debug",
"build:clean": "rm -rf dist",
"build:tsc:release": "tsc -p tsconfig.json",
"build:tsc:debug": "tsc -p tsconfig.dbg.json",
"pretest": "npm run build:debug",
"test": "mocha -p src/tsconfig.json src/**/*.spec.ts"
},
"keywords": [
"byte",
"bytes",
"ArrayBuffer",
"DataView",
"streams"
],
"author": "Isaac Valdez",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}