UNPKG

backoff-rxjs

Version:

A collection of helpful RxJS operators to deal with backoff strategies (like exponential backoff)

66 lines (65 loc) 2.47 kB
{ "name": "backoff-rxjs", "version": "7.0.0", "description": "A collection of helpful RxJS operators to deal with backoff strategies (like exponential backoff)", "main": "dist/index.js", "types": "dist/index.d.ts", "es2015": "./dist/esm2015/index.js", "module": "./dist/esm5/index.js", "scripts": { "dist": "yarn run dist:build && yarn run dist:changelog && yarn run dist:copy", "dist:build": "yarn run dist:clean && yarn run dist:build:cjs && yarn run dist:build:esm2015 && yarn run dist:build:esm5 && yarn run dist:build:bundle", "dist:build:bundle": "webpack --config webpack.config.js && webpack --config webpack.config.js --env production", "dist:build:cjs": "tsc -p tsconfig-dist-cjs.json", "dist:build:esm2015": "tsc -p tsconfig-dist-esm2015.json", "dist:build:esm5": "tsc -p tsconfig-dist-esm5.json", "dist:changelog": "changelog generate", "dist:clean": "rimraf dist && rimraf bundles/backoff-rxjs.* && mkdirp bundles", "dist:copy": "node scripts/pack.js && cpy bundles/backoff-rxjs.* dist/bundles/ && cpy CHANGELOG.md LICENSE README.md dist/", "lint": "tslint --project tsconfig.json src/**/*.ts", "prettier": "prettier --write \"**/*.ts\"", "test": "yarn run test:build && yarn run test:jest", "test:build": "yarn run test:clean && tsc -p tsconfig.json", "test:clean": "rimraf build", "test:jest": "jest", "coverage": "jest --coverage --coverageDirectory=./coverage && open ./coverage/lcov-report/index.html" }, "repository": { "type": "git", "url": "git+https://github.com/alex-okrushko/backoff-rxjs.git" }, "keywords": [ "RxJS", "backoff", "exponential" ], "author": "Alex Okrushko", "license": "MIT", "bugs": { "url": "https://github.com/alex-okrushko/backoff-rxjs/issues" }, "homepage": "https://github.com/alex-okrushko/backoff-rxjs#readme", "peerDependencies": { "rxjs": "^7.0.0" }, "devDependencies": { "@types/jest": "^28.1.0", "@types/node": "^12.12.3", "cpy-cli": "^4.1.0", "generate-changelog": "^1.8.0", "install-peers": "^1.0.4", "jest": "^28.1.0", "mkdirp": "^1.0.4", "prettier": "^2.6.2", "rimraf": "^3.0.2", "ts-jest": "^28.0.4", "ts-loader": "^9.3.0", "ts-node": "^10.8.1", "tsconfig-paths": "^4.0.0", "tslint": "^6.1.3", "typescript": "^4.7.3", "webpack": "^5.73.0", "webpack-cli": "^4.9.2", "webpack-rxjs-externals": "^2.0.0" } }