forked from preethamvishy/try
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 859 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
34
35
36
37
{
"name": "try-cli",
"version": "1.1.2",
"description": "A command line utility to try executing a shell command and retry if it fails or repeat even if it succeeds.",
"main": "try.js",
"preferGlobal": true,
"bin": {
"try": "./try.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preethamvishy/try.git"
},
"keywords": [
"cli",
"command line",
"command line utility",
"command line tool",
"tool",
"utility",
"retry",
"repeat"
],
"author": "Preetham Viswanathan",
"license": "MIT",
"bugs": {
"url": "https://github.com/preethamvishy/try/issues"
},
"homepage": "https://github.com/preethamvishy/try#readme",
"dependencies": {
"commander": "^2.20.3",
"sleep": "^6.1.0"
}
}