-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoclif.manifest.json
160 lines (160 loc) · 4.35 KB
/
oclif.manifest.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"commands": {
"Symbol(SINGLE_COMMAND_CLI)": {
"aliases": [],
"args": {
"dir": {
"default": ".",
"description": "path to create a hierarchy from",
"name": "dir",
"required": false
},
"output": {
"description": "output filename",
"name": "output",
"required": false
}
},
"description": "Create a hierarchy map of a filesystem using node's built-in *fs*.",
"flags": {
"empty": {
"char": "e",
"name": "empty",
"summary": "include child nodes that have no children",
"allowNo": false,
"type": "boolean"
},
"flat": {
"aliases": [
"flatten"
],
"description": "if true the full path will be included by default. using tree format the full path will be used instead of the filenames",
"name": "flat",
"summary": "flatten the output",
"allowNo": false,
"type": "boolean"
},
"format": {
"char": "f",
"name": "format",
"summary": "the used output format",
"default": "json",
"hasDynamicHelp": false,
"multiple": false,
"options": [
"tree",
"yaml",
"json"
],
"type": "option"
},
"help": {
"char": "h",
"name": "help",
"summary": "show this help",
"allowNo": false,
"type": "boolean"
},
"include": {
"char": "i",
"name": "include",
"relationships": [
{
"flags": [
{
"name": "format"
}
],
"type": "none"
}
],
"summary": "the included informations in return object",
"hasDynamicHelp": false,
"multiple": true,
"options": [
"ext",
"path",
"stats",
"type"
],
"type": "option"
},
"match": {
"char": "m",
"description": "use glob pattern for matching\n negate by leading '!'\n e.g. -m '**/*.ts' '!**/node_modules/**'",
"name": "match",
"summary": "filter matching paths",
"hasDynamicHelp": false,
"multiple": true,
"type": "option"
},
"match-rule": {
"char": "M",
"description": "when set to \"all\" all filters must resolve successfully,\n when set to \"some\" at least one filter must resolve successfully,\n when set to \"none\" no filter must resolve successfully",
"name": "match-rule",
"summary": "rule for matching paths",
"default": "some",
"hasDynamicHelp": false,
"multiple": false,
"options": [
"all",
"none",
"some"
],
"type": "option"
},
"minify": {
"aliases": [
"min"
],
"description": "only for json format",
"name": "minify",
"relationships": [
{
"flags": [
{
"name": "format"
}
],
"type": "all"
}
],
"summary": "minify the output",
"allowNo": false,
"type": "boolean"
},
"root": {
"char": "r",
"name": "root",
"summary": "the used name for the root-folder",
"hasDynamicHelp": false,
"multiple": false,
"type": "option"
},
"symlinks": {
"char": "s",
"name": "symlinks",
"summary": "follow symbolic links",
"allowNo": false,
"type": "boolean"
},
"version": {
"char": "v",
"name": "version",
"summary": "show the version",
"allowNo": false,
"type": "boolean"
}
},
"hasDynamicHelp": false,
"hiddenAliases": [],
"id": "Symbol(SINGLE_COMMAND_CLI)",
"pluginAlias": "fs-hierarchy",
"pluginName": "fs-hierarchy",
"pluginType": "core",
"strict": true,
"enableJsonFlag": false
}
},
"version": "2.0.4"
}