forked from jonbern/fetch-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 879 Bytes
/
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
{
"name": "fetch-retry-body",
"version": "1.0.0",
"description": "Extend any fetch library with retry functionality",
"repository": "https://github.com/hoffination/fetch-retry-body.git",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc mocha test/**/**.js",
"integration-test": "mocha test/integration/"
},
"keywords": [
"fetch",
"retry",
"http",
"retry",
"Fetch API"
],
"contributors": [
"Jon K. Bernhardsen",
"Ben Hofferber"
],
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.8"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.2.2",
"expectations": "^0.7.1",
"express": "^4.17.1",
"isomorphic-fetch": "^2.2.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"sinon": "^6.3.5"
}
}