Files
bower/templates/json/help-install.json
André Cruz 92b7668067 Add list command, some other fixes and improvements.
- Fix cache clean command
- Lots of improvements and fixes of the Manager
- Only save json if the contents changed
- Add nom like tree to installed/updated packages
- Fix help usages.
2013-06-15 21:43:01 +01:00

30 lines
937 B
JSON

{
"command": "install",
"description": "Installs the project dependencies or a specific set of endpoints",
"usage": [
"install [<options>]",
"install <endpoint> [<endpoint> ..] [<options>]"
],
"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"
}
]
}