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.

74 lines
2.8 KiB

  1. npm-profile(1) -- Change settings on your registry profile
  2. ==========================================================
  3. ## SYNOPSIS
  4. npm profile get [--json|--parseable] [<property>]
  5. npm profile set [--json|--parseable] <property> <value>
  6. npm profile set password
  7. npm profile enable-2fa [auth-and-writes|auth-only]
  8. npm profile disable-2fa
  9. ## DESCRIPTION
  10. Change your profile information on the registry. This not be available if
  11. you're using a non-npmjs registry.
  12. * `npm profile get [<property>]`:
  13. Display all of the properties of your profile, or one or more specific
  14. properties. It looks like:
  15. ```
  16. +-----------------+---------------------------+
  17. | name | example |
  18. +-----------------+---------------------------+
  19. | email | me@example.com (verified) |
  20. +-----------------+---------------------------+
  21. | two factor auth | auth-and-writes |
  22. +-----------------+---------------------------+
  23. | fullname | Example User |
  24. +-----------------+---------------------------+
  25. | homepage | |
  26. +-----------------+---------------------------+
  27. | freenode | |
  28. +-----------------+---------------------------+
  29. | twitter | |
  30. +-----------------+---------------------------+
  31. | github | |
  32. +-----------------+---------------------------+
  33. | created | 2015-02-26T01:38:35.892Z |
  34. +-----------------+---------------------------+
  35. | updated | 2017-10-02T21:29:45.922Z |
  36. +-----------------+---------------------------+
  37. ```
  38. * `npm profile set <property> <value>`:
  39. Set the value of a profile property. You can set the following properties this way:
  40. email, fullname, homepage, freenode, twitter, github
  41. * `npm profile set password`:
  42. Change your password. This is interactive, you'll be prompted for your
  43. current password and a new password. You'll also be prompted for an OTP
  44. if you have two-factor authentication enabled.
  45. * `npm profile enable-2fa [auth-and-writes|auth-only]`:
  46. Enables two-factor authentication. Defaults to `auth-and-writes` mode. Modes are:
  47. * `auth-only`: Require an OTP when logging in or making changes to your
  48. account's authentication. The OTP will be required on both the website
  49. and the command line.
  50. * `auth-and-writes`: Requires an OTP at all the times `auth-only` does, and also requires one when
  51. publishing a module, setting the `latest` dist-tag, or changing access
  52. via `npm access` and `npm owner`.
  53. * `npm profile disable-2fa`:
  54. Disables two-factor authentication.
  55. ## DETAILS
  56. All of the `npm profile` subcommands accept `--json` and `--parseable` and
  57. will tailor their output based on those. Some of these commands may not be
  58. available on non npmjs.com registries.
  59. ## SEE ALSO
  60. * npm-config(7)