67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"author": {
|
|
"email": "yury@strozhevsky.com",
|
|
"name": "Yury Strozhevsky"
|
|
},
|
|
"description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript",
|
|
"contributors": [
|
|
{
|
|
"email": "rmh@unmitigatedrisk.com",
|
|
"name": "Ryan Hurst"
|
|
}
|
|
],
|
|
"files": [
|
|
"build",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/PeculiarVentures/ByteStream.js.git"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^17.0.35",
|
|
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
"@typescript-eslint/parser": "^5.25.0",
|
|
"coveralls": "^3.1.1",
|
|
"eslint": "^8.15.0",
|
|
"mocha": "^10.0.0",
|
|
"nyc": "^15.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"clear": "rimraf build",
|
|
"build": "npm run build:cjs && npm run build:mjs && npm run build:types",
|
|
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
|
|
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
|
|
"prebuild:types": "rimraf build/types",
|
|
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
|
|
"rebuild": "npm run clear && npm run build",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"coverage": "nyc npm test",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"keywords": [
|
|
"ES6",
|
|
"ES2015",
|
|
"stream",
|
|
"bit",
|
|
"byte",
|
|
"access"
|
|
],
|
|
"name": "bytestreamjs",
|
|
"version": "2.0.1",
|
|
"module": "./build/mjs/index.js",
|
|
"main": "./build/cjs/index.js",
|
|
"types": "./build/types/index.d.ts",
|
|
"license": "BSD-3-Clause"
|
|
}
|