-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 857 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
{
"name": "tiny-retry",
"version": "1.6.5",
"description": "Lightweight function to retry an async job until the job success or stop after a maximum number of tries",
"main": "dist/retry.js",
"scripts": {
"build": "webpack --mode production",
"prepublish": "npm run build",
"test": "node ./src/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hta218/tiny-retry.git"
},
"keywords": [
"retry",
"tiny-module",
"tiny-retry",
"pure-js"
],
"author": "Leo Huynh @ https://leohuynh.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/hta218/tiny-retry/issues"
},
"homepage": "https://github.com/hta218/tiny-retry#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"babel-loader": "^8.2.2",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
}
}