-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.27 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
53
54
55
56
57
58
59
{
"name": "tenacious-fetch",
"version": "2.3.1",
"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 ./src/*.js",
"test": "jest",
"coverage": "jest --coverage",
"prepublish": "yarn run build"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/preset-env": "^7.17.12",
"body-parser": "1.20.0",
"cors": "2.8.5",
"express": "4.18.1",
"jest": "28.1.0",
"jest-environment-jsdom": "^28.1.0",
"microbundle": "0.15.0",
"portfinder": "1.0.28",
"standard": "17.0.0",
"stoppable": "1.1.0"
},
"keywords": [
"fetch",
"fetch-wrapper",
"timeout",
"retries",
"retry",
"fetch-retry"
],
"standard": {
"ignore": [
"dist"
],
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"./test/setup.js"
]
},
"dependencies": {
"abortcontroller-polyfill": "^1.7.3",
"whatwg-fetch": "^3.6.2"
}
}