-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "retry-request",
"version": "7.0.2",
"description": "Retry a request.",
"main": "index.js",
"repository": "stephenplusplus/retry-request",
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"fix": "gts fix",
"lint": "gts check",
"test": "mocha --timeout 30000",
"system-test": ""
},
"files": [
"index.js",
"index.d.ts",
"license"
],
"types": "index.d.ts",
"keywords": [
"request",
"retry",
"stream"
],
"author": "Stephen Sawchuk <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"@types/request": "^2.48.8",
"extend": "^3.0.2",
"teeny-request": "^9.0.0"
},
"devDependencies": {
"async": "^3.0.1",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^4.0.0",
"lodash.range": "^3.2.0",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
}
}