-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 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
42
43
{
"name": "@adobe/node-fetch-retry",
"version": "2.2.0",
"main": "index.js",
"description": "Library for performing retries on HTTP requests",
"author": {
"name": "Adobe Inc."
},
"repository": "adobe/node-fetch-retry",
"license": "Apache-2.0",
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@adobe/eslint-config-asset-compute": "^1.3.3",
"@semantic-release/git": "^9.0.1",
"codecov": "^3.8.3",
"conventional-changelog-eslint": "^3.0.9",
"eslint": "^6.8.0",
"get-port": "^5.1.1",
"license-checker": "^25.0.1",
"mocha": "^8.4.0",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"semantic-release": "^17.4.7"
},
"keywords": [
"fetch",
"retry",
"adobe",
"http",
"node-fetch"
],
"scripts": {
"test": "nyc mocha --recursive --exit",
"posttest": "eslint . && license-checker --summary",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"beautify": "eslint . --fix",
"semantic-release": "semantic-release"
}
}