rs-channel-node
Version:
Something like a rust channel but in node
40 lines (39 loc) • 1.07 kB
JSON
{
"dependencies": {
"readable-stream": "^3.4.0"
},
"devDependencies": {
"@types/readable-stream": "^2.3.4",
"ava": "^2.4.0",
"ava-ts": "^0.25.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"name": "rs-channel-node",
"description": "Something like a rust channel but in node",
"version": "0.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "ava-ts",
"build": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.json",
"doc": "typedoc --mode file --out doc/ --tsconfig tsconfig.json --exclude src/**/*.test.ts src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petereast/rs-channel-node.git"
},
"keywords": [
"mpsc"
],
"author": "Peter East <petereast+github@pm.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petereast/rs-channel-node/issues"
},
"homepage": "https://github.com/petereast/rs-channel-node#readme"
}