-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
65 lines (65 loc) · 2.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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"
}
}