UNPKG

channel-ts

Version:

Channels implemented in Typescript using async/await

50 lines (49 loc) 1.1 kB
{ "name": "channel-ts", "version": "0.1.2", "description": "Channels implemented in Typescript using async/await", "repository": { "type": "git", "url": "https://github.com/arjsin/channels.git" }, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "scripts": { "build": "tsc -p tsconfig.build.json", "prepare": "tsc -p tsconfig.build.json", "check": "eslint --fix src/**/*.ts && tsc --noEmit", "test": "jest" }, "author": "Arjun Singh", "license": "MIT", "devDependencies": { "@types/jest": "^25.1.2", "@types/node": "^13.7.1", "@typescript-eslint/eslint-plugin": "^2.19.2", "@typescript-eslint/parser": "^2.19.2", "eslint": "^6.8.0", "jest": "^25.1.0", "reflect-metadata": "^0.1.13", "ts-jest": "^25.2.0", "typescript": "^3.9.7" }, "keywords": [ "channel", "csp", "typescript", "async", "await", "observer", "observable", "publisher", "subscriber", "mutex" ], "jest": { "preset": "ts-jest", "testEnvironment": "node" } }