forked from tiaanduplessis/tenacious-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "tenacious-fetch",
"version": "2.2.2",
"description": "Tiny fetch API wrapper to add support for retries, retry delay & timeouts",
"main": "dist/tenacious-fetch.js",
"module": "dist/tenacious-fetch.m.js",
"source": "src/index.js",
"repository": "https://github.com/tiaanduplessis/tenacious-fetch",
"author": "Tiaan du Plessis",
"license": "MIT",
"scripts": {
"build": "microbundle",
"lint": "standard --fix ./**/*.js",
"test": "jest",
"coverage": "jest --coverage",
"prepublish": "yarn run build"
},
"files": [
"dist"
],
"devDependencies": {
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"jest": "^22.4.3",
"kill-port": "^1.2.0",
"microbundle": "^0.4.4",
"node-fetch": "^2.1.2",
"standard": "^11.0.1"
},
"keywords": [
"fetch",
"fetch-wrapper",
"timeout",
"retries",
"retry",
"fetch-retry"
],
"standard": {
"ignore": [
"dist"
],
"env": {
"jest": true
}
},
"jest": {
"setupFiles": [
"./test/setup.js"
]
}
}