forked from vercel/fetch-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"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.44.1",
"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"
],
"description": "Original Credit: [zeit/fetch-retry](https://github.com/zeit/fetch-retry) A layer on top of `fetch` with sensible defaults for retrying to prevent common errors.",
"repository": {
"type": "git",
"url": "git+https://github.com/geoffdutton/fetch-retry.git"
},
"author": "",
"bugs": {
"url": "https://github.com/geoffdutton/fetch-retry/issues"
},
"homepage": "https://github.com/geoffdutton/fetch-retry#readme"
}