UNPKG

redioactive

Version:

Reactive streams for chaining overlapping promises.

80 lines (79 loc) 2.03 kB
{ "name": "redioactive", "version": "0.0.20", "description": "Reactive streams for chaining overlapping promises.", "main": "dist/index.js", "types": "dist/redio.d.ts", "repository": "https://github.com/Streampunk/redioactive.git", "author": "Richard Cartwright <spark@streampunk.media>", "contributors": [ "Simon Rogers <scriptorian@streampunk.media" ], "license": "MIT", "private": false, "files": [ "/dist", "/CHANGELOG.md", "/README.md", "/LICENSE" ], "scripts": { "build": "trash dist && yarn build:main", "build:main": "tsc -p tsconfig.json", "lint": "eslint ./src --ext .js,.ts", "lint:fix": "yarn lint -- --fix", "unit": "jest --passWithNoTests", "test": "yarn lint && yarn unit", "test:coverage": "yarn test -- --coverage", "cov": "jest --coverage; open-cli coverage/lcov-report/index.html", "cov-open": "open-cli coverage/lcov-report/index.html", "send-coverage": "codecov", "reset": "git clean -dfx && git reset --hard && yarn", "docs": "yarn docs:html && open-cli docs/index.html", "docs:test": "yarn docs:html", "docs:html": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out docs" }, "devDependencies": { "@types/jest": "^27.0.1", "@types/node": "^14.14.31", "@typescript-eslint/eslint-plugin": "^4.30.0", "@typescript-eslint/parser": "^4.30.0", "codecov": "^3.8.3", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "got": "^11.8.2", "husky": "^4.3.5", "jest": "^27.1.0", "lint-staged": "^11.1.2", "open-cli": "^6.0.1", "prettier": "^2.3.2", "trash-cli": "^4.0.0", "ts-jest": "^27.0.5", "ts-node": "^10.2.1", "typedoc": "^0.21.9", "typescript": "^4.4.2" }, "keywords": [ "reactive", "streams", "multi-tool" ], "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,json,md}": [ "prettier --write" ], "*.ts": [ "eslint --fix" ] }, "dependencies": {}, "resolutions": { "dot-prop": "^6.0.1" } }