-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 949 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 949 Bytes
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
{
"name": "retry-function",
"version": "3.0.0",
"description": "Wrapper to retry function calls with an exponential backoff strategy",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary mocha tests/*",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/petey/retry-function.git"
},
"author": "Pete Peterson <petey31@yahoo.com>",
"bugs": {
"url": "https://github.com/petey/retry-function/issues"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/petey/retry-function",
"dependencies": {
"joi": "^17.3.0",
"retry": "^0.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jenkins-mocha": "^8.0.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"sinon": "^9.2.1"
},
"license": "MIT"
}