-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "retryify",
"version": "0.0.0-semantic-relase",
"description": "Wrap a function to retry on specific errors",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Smartcar",
"email": "hello@smartcar.com",
"url": "https://smartcar.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartcar/retryify.git"
},
"bugs": {
"url": "https://github.com/smartcar/retryify/issues"
},
"homepage": "https://github.com/smartcar/retryify#readme",
"keywords": [
"retryify",
"retry",
"promise",
"decorator",
"wrapper",
"timeout",
"repeat"
],
"files": [
"index.js"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "ava",
"posttest": "npm run lint -s",
"lint": "eslint . --cache",
"cover": "nyc npm test -s",
"readme": "jsdoc2md --template readme.hbs index.js | sed 's/[\\t ]\\+$//g;s/**\\(Returns\\|Throws\\|Params\\|Properties\\)/<br>**\\1/g' > readme.md"
},
"devDependencies": {
"ava": "^4.2.0",
"eslint": "^8.15.0",
"eslint-config-smartcar": "^3.0.0",
"jsdoc-to-markdown": "^7.1.1",
"nyc": "^15.0.0",
"semantic-release": "^19.0.2"
}
}