help-uninstall.json 747 B

123456789101112131415161718192021222324
  1. {
  2. "command": "uninstall",
  3. "description": "Uninstalls a package locally from your bower_components directory",
  4. "usage": [
  5. "uninstall <name> [<name> ..] [<options>]"
  6. ],
  7. "options": [
  8. {
  9. "shorthand": "-h",
  10. "flag": "--help",
  11. "description": "Show this help message"
  12. },
  13. {
  14. "shorthand": "-S",
  15. "flag": "--save",
  16. "description": "Remove uninstalled packages from the project's bower.json dependencies"
  17. },
  18. {
  19. "shorthand": "-D",
  20. "flag": "--save-dev",
  21. "description": "Remove uninstalled packages from the project's bower.json devDependencies"
  22. }
  23. ]
  24. }