UNPKG

ts-stream

Version:

Type-safe object streams with seamless support for backpressure, ending, and error handling

57 lines (56 loc) 1.83 kB
{ "name": "ts-stream", "version": "3.0.0", "description": "Type-safe object streams with seamless support for backpressure, ending, and error handling", "main": "./dist/lib/index.js", "scripts": { "test": "npm run -s lint && npm run -s build && npm run -s mocha", "onlytest": "npm run -s build && npm run -s mocha", "mocha": "mocha", "cover": "npm run -s build && nyc npm -s run mocha", "lint": "tslint --format verbose -p src/lib && tslint --format verbose -p src/test/ && tslint --format verbose -p src/examples/ && prettier --check 'src/{lib,test,examples}/*.ts' '*.json' '*.yml' '.vscode/*.json'", "format": "prettier --write 'src/{lib,test,examples}/*.ts' '*.json' '*.yml' '.vscode/*.json'", "prepare": "npm run -s test", "prepublishOnly": "npm run -s prepare", "build": "tsc -p src/lib/ && tsc -p src/test/ && tsc -p src/examples", "preversion": "npm install", "version": "git add package-lock.json" }, "repository": { "type": "git", "url": "git+https://github.com/poelstra/ts-stream.git" }, "keywords": [ "stream", "promise", "backpressure", "transform" ], "author": "Martin Poelstra <martin@beryllium.net>", "license": "MIT", "bugs": { "url": "https://github.com/poelstra/ts-stream/issues" }, "homepage": "https://github.com/poelstra/ts-stream#readme", "dependencies": { "@types/node": "*" }, "typings": "./dist/lib/index.d.ts", "devDependencies": { "@types/chai": "^4.2.11", "@types/chai-as-promised": "^7.1.3", "@types/mocha": "^8.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "coveralls": "^3.1.0", "mocha": "^8.3.0", "nyc": "^15.1.0", "prettier": "^2.0.5", "sinon": "^9.0.2", "source-map-support": "^0.5.19", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "typescript": "^3.9.6" } }