npm: Upgrade to 1.3.19
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-stop.html
1 <!doctype html>
2 <html>
3   <title>npm-stop</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-stop.html">npm-stop</a></h1> <p>Stop a package</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm stop &lt;name&gt;</code></pre>
14
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
16
17 <p>This runs a package&#39;s &quot;stop&quot; script, if one was provided.</p>
18
19 <h2 id="SEE-ALSO">SEE ALSO</h2>
20
21 <ul><li><a href="../cli/npm-run-script.html">npm-run-script(1)</a></li><li><a href="../misc/npm-scripts.html">npm-scripts(7)</a></li><li><a href="../cli/npm-test.html">npm-test(1)</a></li><li><a href="../cli/npm-start.html">npm-start(1)</a></li><li><a href="../cli/npm-restart.html">npm-restart(1)</a></li></ul>
22 </div>
23 <p id="footer">npm-stop &mdash; npm@1.3.19</p>
24 <script>
25 ;(function () {
26 var wrapper = document.getElementById("wrapper")
27 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
28   .filter(function (el) {
29     return el.parentNode === wrapper
30         && el.tagName.match(/H[1-6]/)
31         && el.id
32   })
33 var l = 2
34   , toc = document.createElement("ul")
35 toc.innerHTML = els.map(function (el) {
36   var i = el.tagName.charAt(1)
37     , out = ""
38   while (i > l) {
39     out += "<ul>"
40     l ++
41   }
42   while (i < l) {
43     out += "</ul>"
44     l --
45   }
46   out += "<li><a href='#" + el.id + "'>" +
47     ( el.innerText || el.text || el.innerHTML)
48     + "</a>"
49   return out
50 }).join("\n")
51 toc.id = "toc"
52 document.body.appendChild(toc)
53 })()
54 </script>