-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "async-await-retry",
"version": "2.1.0",
"description": "Simple module to retry a function with async/await syntax !",
"main": "index.js",
"bin": "./index.js",
"types": "./index.d.ts",
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"files": [
"src/**",
"index.d.ts"
],
"engines": {
"node": ">=7.6.0"
},
"keywords": [
"retry",
"backoff",
"repeat",
"replay",
"async",
"await",
"promises",
"retries",
"error"
],
"homepage": "https://github.com/VoodooTeam/async-await-retry",
"repository": {
"type": "git",
"url": "git+https://github.com/VoodooTeam/async-await-retry.git"
},
"scripts": {
"types": "tsc -p tsconfig.json",
"test": "./node_modules/.bin/jest",
"linter": "./node_modules/.bin/eslint -c ./.eslintrc ./",
"all": "npm run lint && npm run test"
},
"author": {
"name": "Vincent Vallet",
"email": "wallet77@gmail.com",
"url": "https://github.com/wallet77"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint": "^8.54.0",
"jest": "^29.7.0",
"typescript": "^5.3.2"
}
}