-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 973 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
{
"name": "cmdln",
"version": "7.0.0",
"description": "helper lib for creating CLI tools with subcommands; think `git`, `svn`, `zfs`",
"author": "Trent Mick (http://trentm.com)",
"main": "./lib/cmdln.js",
"repository": {
"type": "git",
"url": "git://github.com/trentm/node-cmdln.git"
},
"engines": {
"node": ">=12.x"
},
"keywords": [
"cmdln",
"cli",
"tool",
"bash",
"completion"
],
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"assert-plus": "^1.0.0",
"dashdash": "^2.0.0",
"extsprintf": "^1.2.0",
"verror": "^1.6.0"
},
"optionalDependencies": {
"fuzzyset.js": "^0.0.1"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"tap": "^15.0.9"
}
}