Files
bower/templates/json/help-install.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

35 lines
1.1 KiB
JSON

{
"command": "install",
"description": "Installs the project dependencies or a specific set of endpoints",
"usage": [
"install",
"install <endpoint> [<endpoint> ..]"
],
"options": [
{
"shorthand": "-h",
"flag": "--help",
"description": "Show this help message"
},
{
"shorthand": "-p",
"flag": "--production",
"description": "Do not install project devDependencies"
},
{
"shorthand": "-s",
"flag": "--save",
"description": "Save installed packages into the project's bower.json dependencies"
},
{
"shorthand": "-D",
"flag": "--save-dev",
"description": "Save installed packages into the project's bower.json devDependencies"
},
{
"shorthand": "-r",
"flag": "--save-resolutions",
"description": "Save resolutions chosen to resolve conflicts"
}
]
}