-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 947 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
40
41
42
43
44
{
"name": "recovery",
"version": "0.2.6",
"description": "Recover from a network failure using randomized exponential backoff",
"main": "index.js",
"scripts": {
"test": "c8 --reporter=lcov --reporter=text mocha test.js",
"watch": "mocha --watch test.js"
},
"keywords": [
"random",
"exponential",
"backoff",
"reconnect",
"retry",
"recovery",
"failure",
"network",
"recon",
"connection",
"connect",
"disconnect"
],
"author": "Arnout Kazemier",
"license": "MIT",
"devDependencies": {
"assume": "~2.3.0",
"c8": "~7.12.0",
"mocha": "~10.2.0",
"pre-commit": "~1.2.0"
},
"dependencies": {
"demolish": "~1.0.2",
"eventemitter3": "~5.0.0",
"inherits": "~2.0.3",
"millisecond": "~0.1.2",
"one-time": "~1.0.0",
"tick-tock": "~1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/unshiftio/recovery.git"
}
}