-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1015 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
{
"name": "helmsman",
"version": "2.0.1",
"description": "Easily make command line interfaces using git style subcommands",
"homepage": "https://github.com/mattmcmanus/node-helmsman",
"author": {
"name": "Matt McManus",
"email": "[email protected]"
},
"contributors": [
{
"name": "Beau Gunderson",
"email": "[email protected]",
"url": "https://beaugunderson.com/"
}
],
"main": "helmsman.js",
"scripts": {
"test": "cd test && tap *.js"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "[email protected]:mattmcmanus/node-helmsman.git"
},
"bugs": {
"url": "https://github.com/mattmcmanus/node-helmsman/issues"
},
"keywords": [
"cli",
"command",
"subcommand",
"sub-command"
],
"license": "MIT",
"devDependencies": {
"tap": "^14.6.1"
},
"dependencies": {
"glob": "~7.1.4",
"colors": "~1.3.3",
"underscore.string": "~3.3.5",
"lodash": "~4.17.15"
}
}