help.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "usage": [
  3. "<command> [<args>] [<options>]"
  4. ],
  5. "commands": {
  6. "cache": "Manage bower cache",
  7. "help": "Display help information about Bower",
  8. "home": "Opens a package homepage into your favorite browser",
  9. "info": "Info of a particular package",
  10. "init": "Interactively create a bower.json file",
  11. "install": "Install a package locally",
  12. "link": "Symlink a package folder",
  13. "list": "List local packages - and possible updates",
  14. "lookup": "Look up a package URL by name",
  15. "prune": "Removes local extraneous packages",
  16. "register": "Register a package",
  17. "search": "Search for a package by name",
  18. "update": "Update a local package",
  19. "uninstall": "Remove a local package",
  20. "version": "Bump a package version"
  21. },
  22. "options": [
  23. {
  24. "shorthand": "-f",
  25. "flag": "--force",
  26. "description": "Makes various commands more forceful"
  27. },
  28. {
  29. "shorthand": "-j",
  30. "flag": "--json",
  31. "description": "Output consumable JSON"
  32. },
  33. {
  34. "shorthand": "-l",
  35. "flag": "--log-level",
  36. "description": "What level of logs to report"
  37. },
  38. {
  39. "shorthand": "-o",
  40. "flag": "--offline",
  41. "description": "Do not hit the network"
  42. },
  43. {
  44. "shorthand": "-q",
  45. "flag": "--quiet",
  46. "description": "Only output important information"
  47. },
  48. {
  49. "shorthand": "-s",
  50. "flag": "--silent",
  51. "description": "Do not output anything, besides errors"
  52. },
  53. {
  54. "shorthand": "-V",
  55. "flag": "--verbose",
  56. "description": "Makes output more verbose"
  57. },
  58. {
  59. "flag": "--allow-root",
  60. "description": "Allows running commands as root"
  61. },
  62. {
  63. "flag": "--version",
  64. "description": "Output Bower version"
  65. }
  66. ]
  67. }