-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 998 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "help-version",
"version": "1.1.1",
"description": "Handle --help and --version arguments in your CLI application",
"author": "Eugene Sharygin <[email protected]>",
"license": "MIT",
"scripts": {
"test": "tape test/*.js"
},
"files": [
"index.js",
"lib/"
],
"homepage": "https://github.com/eush77/help-version",
"repository": {
"type": "git",
"url": "https://github.com/eush77/help-version"
},
"bugs": {
"url": "https://github.com/eush77/help-version/issues"
},
"keywords": [
"cli",
"bin",
"argv",
"opts",
"help",
"version",
"argument",
"arguments",
"usage",
"option",
"options",
"flag",
"flags",
"application",
"program",
"testable"
],
"dependencies": {
"callsites": "^1.0.0",
"find-root": "^1.0.0",
"once": "^1.3.3"
},
"devDependencies": {
"concat-stream": "^1.4.8",
"minimist": "^1.1.1",
"tape": "^4.0.0",
"through2": "^2.0.0"
}
}