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.

58 lines
1.8 KiB

  1. npm-team(1) -- Manage organization teams and team memberships
  2. =============================================================
  3. ## SYNOPSIS
  4. npm team create <scope:team>
  5. npm team destroy <scope:team>
  6. npm team add <scope:team> <user>
  7. npm team rm <scope:team> <user>
  8. npm team ls <scope>|<scope:team>
  9. npm team edit <scope:team>
  10. ## DESCRIPTION
  11. Used to manage teams in organizations, and change team memberships. Does not
  12. handle permissions for packages.
  13. Teams must always be fully qualified with the organization/scope they belong to
  14. when operating on them, separated by a colon (`:`). That is, if you have a
  15. `developers` team on a `foo` organization, you must always refer to that team as
  16. `foo:developers` in these commands.
  17. * create / destroy:
  18. Create a new team, or destroy an existing one.
  19. * add / rm:
  20. Add a user to an existing team, or remove a user from a team they belong to.
  21. * ls:
  22. If performed on an organization name, will return a list of existing teams
  23. under that organization. If performed on a team, it will instead return a list
  24. of all users belonging to that particular team.
  25. * edit:
  26. Edit a current team.
  27. ## DETAILS
  28. `npm team` always operates directly on the current registry, configurable from
  29. the command line using `--registry=<registry url>`.
  30. In order to create teams and manage team membership, you must be a *team admin*
  31. under the given organization. Listing teams and team memberships may be done by
  32. any member of the organizations.
  33. Organization creation and management of team admins and *organization* members
  34. is done through the website, not the npm CLI.
  35. To use teams to manage permissions on packages belonging to your organization,
  36. use the `npm access` command to grant or revoke the appropriate permissions.
  37. ## SEE ALSO
  38. * npm-access(1)
  39. * npm-registry(7)