@oclif/plugin-commands
Version:
plugin to show the list of all the commands
116 lines • 3.02 kB
JSON
{
"version": "2.2.15",
"commands": {
"commands": {
"id": "commands",
"description": "list all the commands",
"strict": true,
"pluginName": "@oclif/plugin-commands",
"pluginAlias": "@oclif/plugin-commands",
"pluginType": "core",
"aliases": [],
"flags": {
"json": {
"name": "json",
"type": "boolean",
"description": "Format output as json.",
"helpGroup": "GLOBAL",
"allowNo": false
},
"help": {
"name": "help",
"type": "boolean",
"char": "h",
"description": "Show CLI help.",
"allowNo": false
},
"hidden": {
"name": "hidden",
"type": "boolean",
"description": "show hidden commands",
"allowNo": false
},
"tree": {
"name": "tree",
"type": "boolean",
"description": "show tree of commands",
"allowNo": false
},
"columns": {
"name": "columns",
"type": "option",
"description": "only show provided columns (comma-separated)",
"multiple": false,
"exclusive": [
"extended"
]
},
"sort": {
"name": "sort",
"type": "option",
"description": "property to sort by (prepend '-' for descending)",
"multiple": false
},
"filter": {
"name": "filter",
"type": "option",
"description": "filter property by partial string matching, ex: name=foo",
"multiple": false
},
"csv": {
"name": "csv",
"type": "boolean",
"description": "output is csv format [alias: --output=csv]",
"allowNo": false,
"exclusive": [
"no-truncate"
]
},
"output": {
"name": "output",
"type": "option",
"description": "output in a more machine friendly format",
"multiple": false,
"options": [
"csv",
"json",
"yaml"
],
"exclusive": [
"no-truncate",
"csv"
]
},
"extended": {
"name": "extended",
"type": "boolean",
"char": "x",
"description": "show extra columns",
"allowNo": false,
"exclusive": [
"columns"
]
},
"no-truncate": {
"name": "no-truncate",
"type": "boolean",
"description": "do not truncate output to fit screen",
"allowNo": false,
"exclusive": [
"csv"
]
},
"no-header": {
"name": "no-header",
"type": "boolean",
"description": "hide table header from output",
"allowNo": false,
"exclusive": [
"csv"
]
}
},
"args": {}
}
}
}