forked from andyburke/boxcutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.json
45 lines (42 loc) · 1.46 KB
/
help.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
{
"usage": [
"Usage: boxcutter <command>",
" available commands:",
" get : get a value from the package.json",
" set : set a value in the package.json",
" help <command> : get help for the specified command",
" options:",
" --indent <num> : will indent json output the specified number of spaces",
" --file <filename> : will use specified json as input / output file"
],
"commands": {
"get": [
"Usage: boxcutter get <key>",
" Gets the value for the specified key and prints it to stdout.",
" Eg:",
"",
" > boxcutter get version",
" 1.0.0",
" >",
""
],
"set": [
"Usage: boxcutter set <key> <value>",
" Sets the given key to value and saves the package.json.",
" Eg:",
"",
" > boxcutter set version 1.0.1",
" > boxcutter get version",
" 1.0.1",
" >",
""
],
"unknown command": [
"Usage: boxcutter <command>",
" available commands:",
" get : get a value from the package.json",
" set : set a value in the package.json",
" help <command> : get help for the specified command"
]
}
}