UNPKG

async-channel

Version:

Send asynchronous values across concurrent lines of execution

43 lines (42 loc) 1.01 kB
{ "name": "async-channel", "version": "0.2.0", "description": "Send asynchronous values across concurrent lines of execution", "license": "ISC", "repository": "kyle1320/async-channel", "author": "Kyle Cutler", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "/lib" ], "scripts": { "build": "tsc", "test": "jest --env=node --colors --coverage test", "lint": "eslint --ext .js,.ts .", "docs": "typedoc src/index.ts" }, "devDependencies": { "@types/jest": "^26.0.20", "@typescript-eslint/eslint-plugin": "^4.11.1", "@typescript-eslint/parser": "^4.11.1", "eslint": "^7.17.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^3.3.0", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.4.4", "typedoc": "^0.20.13", "typescript": "^4.1.3" }, "keywords": [ "channel", "coroutine", "concurrent", "async", "await", "promise", "communication", "parallel" ] }