forked from jonbern/fetch-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 Bytes
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
{
"name": "fetch-retry",
"version": "2.1.0",
"description": "Adds retry functionality to the Fetch API",
"repository": "https://github.com/jonbern/fetch-retry.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"
],
"author": "Jon K. Bernhardsen",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.6",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"expectations": "^0.7.1",
"express": "^4.16.4",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"proxyquire": "^2.1.0",
"sinon": "^6.3.5"
}
}