Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
890 B

  1. npm-bugs(1) -- Bugs for a package in a web browser maybe
  2. ========================================================
  3. ## SYNOPSIS
  4. npm bugs [<pkgname>]
  5. aliases: issues
  6. ## DESCRIPTION
  7. This command tries to guess at the likely location of a package's
  8. bug tracker URL, and then tries to open it using the `--browser`
  9. config param. If no package name is provided, it will search for
  10. a `package.json` in the current folder and use the `name` property.
  11. ## CONFIGURATION
  12. ### browser
  13. * Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
  14. * Type: String
  15. The browser that is called by the `npm bugs` command to open websites.
  16. ### registry
  17. * Default: https://registry.npmjs.org/
  18. * Type: url
  19. The base URL of the npm package registry.
  20. ## SEE ALSO
  21. * npm-docs(1)
  22. * npm-view(1)
  23. * npm-publish(1)
  24. * npm-registry(7)
  25. * npm-config(1)
  26. * npm-config(7)
  27. * npmrc(5)
  28. * package.json(5)