-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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
{
"name": "fetch-retry-ts",
"version": "1.3.1",
"description": "Adds retry functionality to fetch()",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"lint": "eslint -f gha .",
"build": "tsc",
"pretest": "npm run lint",
"test": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/node-fetch-retry-ts.git"
},
"keywords": [
"fetch",
"retry",
"http",
"https",
"fetch API"
],
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sjinks/node-fetch-retry-ts/issues"
},
"homepage": "https://github.com/sjinks/node-fetch-retry-ts#readme",
"files": [
"dist/index.d.ts",
"dist/index.js"
],
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.39",
"@types/jest": "^30.0.0",
"@types/node-fetch": "^2.6.7",
"cross-fetch": "^4.0.0",
"eslint-formatter-gha": "^2.0.0",
"jest": "^30.0.0",
"merge": "^2.1.1",
"node-fetch": "^2.6.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"provenance": true
},
"dependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.1"
}
}