forked from FGRibreau/node-request-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 858 Bytes
/
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
{
"name": "requestretry",
"description": "request-retry wrap nodejs request to retry http(s) requests in case of error",
"version": "1.6.0",
"author": {
"name": "Francois-Guillaume Ribreau",
"email": "[email protected]",
"url": "http://fgribreau.com"
},
"contributors": [
{
"name": "juliendangers",
"email": "[email protected]"
}
],
"repository": {
"url": "https://github.com/FGRibreau/node-request-retry"
},
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"license": "MIT",
"dependencies": {
"debug": "~2.2.0",
"fg-lodash": "0.0.2",
"request": "^2.62.x",
"when": "~3.7.5"
},
"devDependencies": {
"chai": "^3.2.0",
"kew": "~0.7.0",
"mocha": "^2.3.0",
"nock": "~3.1.0",
"q": "~1.4.1",
"rsvp": "~3.1.0",
"bluebird": "~3.0.5"
}
}