-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.26 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
{
"name": "@nick-bull/rxjs-backoff",
"version": "0.1.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: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: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/nick-bull/backoff-rxjs.git"
},
"keywords": [
"RxJS",
"backoff",
"exponential"
],
"author": "Nick Bull",
"license": "MIT",
"bugs": {
"url": "https://github.com/nick-bull/backoff-rxjs/issues"
},
"homepage": "https://github.com/nick-bull/backoff-rxjs#readme",
"peerDependencies": {
"rxjs": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"cpy-cli": "^3.1.1",
"jest": "^27.0.6",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-rxjs-externals": "^2.0.0"
},
"dependencies": {
"babel-jest": "^27.0.6",
"jest-cli": "^27.0.6",
"rxjs": "^7.2.0"
}
}