82517b5ad3d6728c2a39b6c6c386bc1372c9cf55
[platform/upstream/nodejs.git] / deps / npm / html / doc / api / npm-prune.html
1 <!doctype html>
2 <html>
3   <title>npm-prune</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="../api/npm-prune.html">npm-prune</a></h1> <p>Remove extraneous packages</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm.commands.prune([packages,] callback)</code></pre>
14
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
16
17 <p>This command removes &quot;extraneous&quot; packages.</p>
18
19 <p>The first parameter is optional, and it specifies packages to be removed.</p>
20
21 <p>No packages are specified, then all packages will be checked.</p>
22
23 <p>Extraneous packages are packages that are not listed on the parent
24 package&#39;s dependencies list.</p>
25 </div>
26 <p id="footer">npm-prune &mdash; npm@1.3.15</p>
27 <script>
28 ;(function () {
29 var wrapper = document.getElementById("wrapper")
30 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
31   .filter(function (el) {
32     return el.parentNode === wrapper
33         && el.tagName.match(/H[1-6]/)
34         && el.id
35   })
36 var l = 2
37   , toc = document.createElement("ul")
38 toc.innerHTML = els.map(function (el) {
39   var i = el.tagName.charAt(1)
40     , out = ""
41   while (i > l) {
42     out += "<ul>"
43     l ++
44   }
45   while (i < l) {
46     out += "</ul>"
47     l --
48   }
49   out += "<li><a href='#" + el.id + "'>" +
50     ( el.innerText || el.text || el.innerHTML)
51     + "</a>"
52   return out
53 }).join("\n")
54 toc.id = "toc"
55 document.body.appendChild(toc)
56 })()
57 </script>