Files
bower/templates/json/help.json
André Cruz 6d3b3e6de2 Add cache clean and list commands.
This was an huge commit.
- Allow nested commands
- Switch resolve cache in memory object cache to LRU
- Store non-semver packages in the cache
- Tweak help messages
- Various fixes and tweaks
2013-06-11 00:39:18 +01:00

56 lines
1.8 KiB
JSON

{
"usage": [
"<command> [<args>] [<options>]"
],
"commands": {
"cache": "Manage bower cache",
"help": "Display help information about Bower",
"info": "Version info and description of a particular package",
"init": "Interactively create a bower.json file",
"install": "Install a package locally",
"link": "Symlink a package folder",
"list": "List all installed packages",
"lookup": "Look up a package URL by name",
"register": "Register a package",
"search": "Search for a package by name",
"uninstall": "Remove a package",
"update": "Update a package"
},
"options": [
{
"shorthand": "-f",
"flag": "--force",
"description": "Makes various commands more forceful"
},
{
"shorthand": "-j",
"flag": "--json",
"description": "Output consumable JSON"
},
{
"shorthand": "-l",
"flag": "--log-level",
"description": "What level of logs to report"
},
{
"shorthand": "-o",
"flag": "--offline",
"description": "Do not hit the network"
},
{
"shorthand": "-q",
"flag": "--quiet",
"description": "Only output important information"
},
{
"shorthand": "-s",
"flag": "--silent",
"description": "Do not output anything, besides errors"
},
{
"shorthand": "-v",
"flag": "--verbose",
"description": "Makes output more verbose"
}
]
}