forked from vercel/fetch-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "@geoffdutton/fetch-retry",
"version": "5.0.1",
"license": "MIT",
"main": "/dist/fetch-retry.js",
"devDependencies": {
"coveralls": "^3.1.0",
"jasmine-core": "^3.6.0",
"jest": "^26.4.2",
"karma": "^5.2.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"node-fetch": "^1.7.3",
"puppeteer": "^5.2.1",
"standard": "^14.3.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"node-fetch": "*"
},
"dependencies": {
"async-retry": "^1.3.1",
"debug": "^4.1.1"
},
"scripts": {
"build": "webpack -p",
"test": "standard . && jest --coverage && yarn test:browser",
"test:browser": "karma start --single-run",
"tdd:browser": "karma start --browsers Chrome",
"tdd": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"/dist",
"/yarn.lock"
]
}