49c9c7f9b481ad91bec1621dd44b90474475f5d1
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-run-script.html
1 <!doctype html>
2 <html>
3   <title>npm-run-script</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-run-script.html">npm-run-script</a></h1> <p>Run arbitrary package scripts</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm run-script &lt;script&gt; &lt;name&gt;</code></pre>
14
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
16
17 <p>This runs an arbitrary command from a package&#39;s &quot;scripts&quot; object.</p>
18
19 <p>It is used by the test, start, restart, and stop commands, but can be
20 called directly, as well.</p>
21
22 <h2 id="SEE-ALSO">SEE ALSO</h2>
23
24 <ul><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><li><a href="../cli/npm-stop.html">npm-stop(1)</a></li></ul>
25 </div>
26 <p id="footer">npm-run-script &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>