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.

73 lines
4.6 KiB

  1. <!doctype html>
  2. <html>
  3. <title>npm-team</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="../../static/style.css">
  6. <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-team.html">
  7. <script async=true src="../../static/toc.js"></script>
  8. <body>
  9. <div id="wrapper">
  10. <h1><a href="../cli/npm-team.html">npm-team</a></h1> <p>Manage organization teams and team memberships</p>
  11. <h2 id="synopsis">SYNOPSIS</h2>
  12. <pre><code>npm team create &lt;scope:team&gt;
  13. npm team destroy &lt;scope:team&gt;
  14. npm team add &lt;scope:team&gt; &lt;user&gt;
  15. npm team rm &lt;scope:team&gt; &lt;user&gt;
  16. npm team ls &lt;scope&gt;|&lt;scope:team&gt;
  17. npm team edit &lt;scope:team&gt;</code></pre><h2 id="description">DESCRIPTION</h2>
  18. <p>Used to manage teams in organizations, and change team memberships. Does not
  19. handle permissions for packages.</p>
  20. <p>Teams must always be fully qualified with the organization/scope they belong to
  21. when operating on them, separated by a colon (<code>:</code>). That is, if you have a
  22. <code>developers</code> team on a <code>foo</code> organization, you must always refer to that team as
  23. <code>foo:developers</code> in these commands.</p>
  24. <ul>
  25. <li><p>create / destroy:
  26. Create a new team, or destroy an existing one.</p>
  27. </li>
  28. <li><p>add / rm:
  29. Add a user to an existing team, or remove a user from a team they belong to.</p>
  30. </li>
  31. <li><p>ls:
  32. If performed on an organization name, will return a list of existing teams
  33. under that organization. If performed on a team, it will instead return a list
  34. of all users belonging to that particular team.</p>
  35. </li>
  36. <li><p>edit:
  37. Edit a current team.</p>
  38. </li>
  39. </ul>
  40. <h2 id="details">DETAILS</h2>
  41. <p><code>npm team</code> always operates directly on the current registry, configurable from
  42. the command line using <code>--registry=&lt;registry url&gt;</code>.</p>
  43. <p>In order to create teams and manage team membership, you must be a <em>team admin</em>
  44. under the given organization. Listing teams and team memberships may be done by
  45. any member of the organizations.</p>
  46. <p>Organization creation and management of team admins and <em>organization</em> members
  47. is done through the website, not the npm CLI.</p>
  48. <p>To use teams to manage permissions on packages belonging to your organization,
  49. use the <code>npm access</code> command to grant or revoke the appropriate permissions.</p>
  50. <h2 id="see-also">SEE ALSO</h2>
  51. <ul>
  52. <li><a href="../cli/npm-access.html">npm-access(1)</a></li>
  53. <li><a href="../misc/npm-registry.html">npm-registry(7)</a></li>
  54. </ul>
  55. </div>
  56. <table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
  57. <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr>
  58. <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr>
  59. <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr>
  60. <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr>
  61. <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr>
  62. <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
  63. <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
  64. </table>
  65. <p id="footer">npm-team &mdash; npm@6.4.1</p>