forked from googleapis/retry-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 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
44
45
46
47
48
{
"name": "retry-request",
"version": "4.2.1",
"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 0"
},
"files": [
"index.js",
"index.d.ts",
"license"
],
"types": "index.d.ts",
"keywords": [
"request",
"retry",
"stream"
],
"author": "Stephen Sawchuk <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"debug": "^4.1.1",
"extend": "^3.0.2"
},
"devDependencies": {
"@types/request": "^2.48.8",
"async": "^3.0.1",
"gts": "^3.1.0",
"jsdoc": "^3.6.3",
"jsdoc-fresh": "^1.0.2",
"jsdoc-region-tag": "^1.0.4",
"linkinator": "^3.0.0",
"lodash.range": "^3.2.0",
"mocha": "^9.0.0",
"request": "^2.87.0",
"typescript": "^4.6.2"
}
}