52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "streamx",
|
|
"version": "2.28.0",
|
|
"description": "An iteration of the Node.js core streams with a series of improvements",
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./package": "./package.json",
|
|
"./errors": {
|
|
"types": "./lib/errors.d.ts",
|
|
"default": "./lib/errors"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"events-universal": "^1.0.0",
|
|
"fast-fifo": "^1.3.2",
|
|
"text-decoder": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"b4a": "^1.6.6",
|
|
"brittle": "^3.1.1",
|
|
"end-of-stream": "^1.4.4",
|
|
"lunte": "^1.8.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-config-holepunch": "^2.0.0"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"runtime.d.ts",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"format": "prettier . --write",
|
|
"test": "brittle test/all.js && brittle-bare test/all.js",
|
|
"lint": "prettier . --check && lunte"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mafintosh/streamx.git"
|
|
},
|
|
"author": "Mathias Buus (@mafintosh)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mafintosh/streamx/issues"
|
|
},
|
|
"homepage": "https://github.com/mafintosh/streamx"
|
|
}
|