-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "fetch-retry",
"version": "6.0.0",
"description": "Extend any fetch library with retry functionality",
"repository": "https://github.com/jonbern/fetch-retry.git",
"main": "index.js",
"browser": "dist/fetch-retry.umd.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint index.js ./test/**/*.js",
"test": "nyc mocha test/**/**.js && npm run lint",
"integration-test": "mocha test/integration/",
"build": "rollup -c",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
},
"keywords": [
"fetch",
"retry",
"http",
"retry",
"Fetch API"
],
"author": "Jon K. Bernhardsen",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"expectations": "^0.7.1",
"express": "^4.17.1",
"husky": "^7.0.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.9",
"nyc": "^14.1.1",
"rollup": "^2.52.3",
"@rollup/plugin-commonjs": "^19.0.0",
"sinon": "^6.3.5"
}
}