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.

39 lines
1.1 KiB

  1. npm-owner(1) -- Manage package owners
  2. =====================================
  3. ## SYNOPSIS
  4. npm owner add <user> [<@scope>/]<pkg>
  5. npm owner rm <user> [<@scope>/]<pkg>
  6. npm owner ls [<@scope>/]<pkg>
  7. aliases: author
  8. ## DESCRIPTION
  9. Manage ownership of published packages.
  10. * ls:
  11. List all the users who have access to modify a package and push new versions.
  12. Handy when you need to know who to bug for help.
  13. * add:
  14. Add a new user as a maintainer of a package. This user is enabled to modify
  15. metadata, publish new versions, and add other owners.
  16. * rm:
  17. Remove a user from the package owner list. This immediately revokes their
  18. privileges.
  19. Note that there is only one level of access. Either you can modify a package,
  20. or you can't. Future versions may contain more fine-grained access levels, but
  21. that is not implemented at this time.
  22. If you have two-factor authentication enabled with `auth-and-writes` then
  23. you'll need to include an otp on the command line when changing ownership
  24. with `--otp`.
  25. ## SEE ALSO
  26. * npm-publish(1)
  27. * npm-registry(7)
  28. * npm-adduser(1)
  29. * npm-disputes(7)