npm: Upgrade to 1.3.19
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-owner.html
1 <!doctype html>
2 <html>
3   <title>npm-owner</title>
4   <meta http-equiv="content-type" value="text/html;utf-8">
5   <link rel="stylesheet" type="text/css" href="../../static/style.css">
6
7   <body>
8     <div id="wrapper">
9 <h1><a href="../cli/npm-owner.html">npm-owner</a></h1> <p>Manage package owners</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm owner ls &lt;package name&gt;
14 npm owner add &lt;user&gt; &lt;package name&gt;
15 npm owner rm &lt;user&gt; &lt;package name&gt;</code></pre>
16
17 <h2 id="DESCRIPTION">DESCRIPTION</h2>
18
19 <p>Manage ownership of published packages.</p>
20
21 <ul><li>ls:
22 List all the users who have access to modify a package and push new versions.
23 Handy when you need to know who to bug for help.</li><li>add:
24 Add a new user as a maintainer of a package.  This user is enabled to modify
25 metadata, publish new versions, and add other owners.</li><li>rm:
26 Remove a user from the package owner list.  This immediately revokes their
27 privileges.</li></ul>
28
29 <p>Note that there is only one level of access.  Either you can modify a package,
30 or you can&#39;t.  Future versions may contain more fine-grained access levels, but
31 that is not implemented at this time.</p>
32
33 <h2 id="SEE-ALSO">SEE ALSO</h2>
34
35 <ul><li><a href="../cli/npm-publish.html">npm-publish(1)</a></li><li><a href="../misc/npm-registry.html">npm-registry(7)</a></li><li><a href="../cli/npm-adduser.html">npm-adduser(1)</a></li><li><a href="../misc/npm-disputes.html">npm-disputes(7)</a></li></ul>
36 </div>
37 <p id="footer">npm-owner &mdash; npm@1.3.19</p>
38 <script>
39 ;(function () {
40 var wrapper = document.getElementById("wrapper")
41 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
42   .filter(function (el) {
43     return el.parentNode === wrapper
44         && el.tagName.match(/H[1-6]/)
45         && el.id
46   })
47 var l = 2
48   , toc = document.createElement("ul")
49 toc.innerHTML = els.map(function (el) {
50   var i = el.tagName.charAt(1)
51     , out = ""
52   while (i > l) {
53     out += "<ul>"
54     l ++
55   }
56   while (i < l) {
57     out += "</ul>"
58     l --
59   }
60   out += "<li><a href='#" + el.id + "'>" +
61     ( el.innerText || el.text || el.innerHTML)
62     + "</a>"
63   return out
64 }).join("\n")
65 toc.id = "toc"
66 document.body.appendChild(toc)
67 })()
68 </script>