-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "retry-backoff",
"description": "Stream/callback retries with incremental backoff and timeout support.",
"homepage": "https://github.com/AudienseCo/retry-backoff",
"version": "1.0.4",
"main": "index.js",
"author": {
"email": "[email protected]",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudienseCo/retry-backoff.git"
},
"bugs": {
"url": "https://github.com/AudienseCo/retry-backoff/issues"
},
"keywords": [
"backoff",
"callback",
"retry",
"timeout"
],
"dependencies": {
"callback-timeout": "~4.0.0",
"debug": "~3.1.0",
"is-retry-allowed": "~1.1.0",
"mimic-fn": "~1.2.0"
},
"devDependencies": {
"coffee-script": "latest",
"coveralls": "latest",
"git-dirty": "latest",
"mocha": "latest",
"nyc": "latest",
"should": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 4"
},
"files": [
"index.js"
],
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard index.js && standard-markdown README.md",
"pretest": "npm run lint",
"test": "DEBUG=retry-backoff nyc mocha"
},
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
}
}