help-install.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "command": "install",
  3. "description": "Installs the project dependencies or a specific set of endpoints.\nEndpoints can have multiple forms:\n- <source>\n- <source>#<target>\n- <name>=<source>#<target>\n\nWhere:\n- <source> is a package URL, physical location or registry name\n- <target> is a valid range, commit, branch, etc.\n- <name> is the name it should have locally.",
  4. "usage": [
  5. "install [<options>]",
  6. "install <endpoint> [<endpoint> ..] [<options>]"
  7. ],
  8. "options": [
  9. {
  10. "shorthand": "-F",
  11. "flag": "--force-latest",
  12. "description": "Force latest version on conflict"
  13. },
  14. {
  15. "shorthand": "-h",
  16. "flag": "--help",
  17. "description": "Show this help message"
  18. },
  19. {
  20. "shorthand": "-p",
  21. "flag": "--production",
  22. "description": "Do not install project devDependencies"
  23. },
  24. {
  25. "shorthand": "-S",
  26. "flag": "--save",
  27. "description": "Save installed packages into the project's bower.json dependencies"
  28. },
  29. {
  30. "shorthand": "-D",
  31. "flag": "--save-dev",
  32. "description": "Save installed packages into the project's bower.json devDependencies"
  33. }
  34. ]
  35. }