deps: upgrade npm to 3.3.12
PR-URL: https://github.com/nodejs/node/pull/3685 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
02a44e0bfd
commit
df9c4a6a1f
102
deps/npm/CHANGELOG.md
vendored
102
deps/npm/CHANGELOG.md
vendored
@ -1,3 +1,105 @@
|
||||
### v3.3.12 (2015-11-02):
|
||||
|
||||
Hi, a little hot-fix release for a bug introduced in 3.3.11. The ENOENT fix
|
||||
last week ([`f0e2088`](https://github.com/npm/npm/commit/f0e2088)) broke
|
||||
upgrades of modules that have bundled dependencies (like `npm`, augh!)
|
||||
|
||||
* [`aedf7cf`](https://github.com/npm/npm/commit/aedf7cf)
|
||||
[#10192](//github.com/npm/npm/pull/10192)
|
||||
If a bundled module is going to be replacing a module that's currently on
|
||||
disk (for instance, when you upgrade a module that includes bundled
|
||||
dependencies) we want to select the version from the bundle in preference
|
||||
over the one that was there previously.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
### v3.3.11 (2015-10-29):
|
||||
|
||||
This is a dependency update week, so that means no PRs from our lovely
|
||||
users. Look for those next week. As it happens, the dependencies updated
|
||||
were just devdeps, so nothing for you all to worry about.
|
||||
|
||||
But the bug fixes, oh geez, I tracked down some really long standing stuff
|
||||
this week!! The headliner is those intermittent `ENOENT` errors that no one
|
||||
could reproduce consistently? I think they're nailed! But also pretty
|
||||
important, the bug where `hapi` would install w/ a dep missing? Squashed!
|
||||
|
||||
#### EEEEEEENOENT
|
||||
|
||||
* [`f0e2088`](https://github.com/npm/npm/commit/f0e2088)
|
||||
[#10026](https://github.com/npm/npm/issues/10026)
|
||||
Eliminate some, if not many, of the EONENT errors `npm@3` has seen over
|
||||
the past few months. This was happening when npm would, in its own mind,
|
||||
correct a bundled dependency, due to a `package.json` specifying an
|
||||
incompatible version. Then, when npm extracted the bundled version, what
|
||||
was on disk didn't match its mind and… well, when it tried to act on what
|
||||
was in its mind, we got an `ENOENT` because it didn't actually exist on
|
||||
disk.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
#### PARTIAL SHRINKWRAPS, NO LONGER A BAD DAY
|
||||
|
||||
* [`712fd9c`](https://github.com/npm/npm/commit/712fd9c)
|
||||
[#10153](https://github.com/npm/npm/pull/10153)
|
||||
Imagine that you have a module, let's call it `fun-time`, and it depends
|
||||
on two dependencies, `need-fun@1` and `need-time`. Further, `need-time`
|
||||
requires `need-fun@2`. So after install the logical tree will look like
|
||||
this:
|
||||
|
||||
```
|
||||
fun-time
|
||||
├── need-fun@1
|
||||
└── need-time
|
||||
└── need-fun@2
|
||||
```
|
||||
|
||||
Now, the `fun-time` author also distributes a shrinkwrap, but it only includes
|
||||
the `need-fun@1` in it.
|
||||
|
||||
Resolving dependencies would look something like this:
|
||||
|
||||
1. Require `need-fun@1`: Use version from shrinkwrap (ignoring version)
|
||||
2. Require `need-time`: User version in package.json
|
||||
1. Require `need-fun@2`: Use version from shrinkwrap, which oh hey, is
|
||||
already installed at the top level, so no further action is needed.
|
||||
|
||||
Which results in this tree:
|
||||
|
||||
```
|
||||
fun-time
|
||||
├── need-fun@1
|
||||
└── need-time
|
||||
```
|
||||
|
||||
We're ignoring the version check on things specified in the shrinkwrap
|
||||
so that you can override the version that will be installed. This is
|
||||
because you may want to use a different version than is specified
|
||||
by your dependencies' dependencies' `package.json` files.
|
||||
|
||||
To fix this, we now only allow overrides of a dependency version when
|
||||
that dependency is a child (in the tree) of the thing that requires it.
|
||||
This means that when we're looking for `need-fun@2` we'll see `need-fun@1`
|
||||
and reject it because, although it's from a shrinkwrap, it's parent is
|
||||
`fun-time` and the package doing the requiring is `need-time`.
|
||||
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
#### STRING `package.bin` AND NON-NPMJS REGISTRIES
|
||||
|
||||
* [`3de1463`](https://github.com/npm/npm/commit/3de1463)
|
||||
[#9187](https://github.com/npm/npm/issues/9187)
|
||||
If you were using a module with the `bin` field in your `package.json` set
|
||||
to a string on a non-npmjs registry then npm would crash, due to the our
|
||||
expectation that the `bin` field would be an object. We now pass all
|
||||
`package.json` data through a routine that normalizes the format,
|
||||
including the `bin` field. (This is the same routine that your
|
||||
`package.json` is passed through when read off of disk or sent to the
|
||||
registry for publication.) Doing this also ensures that older modules on
|
||||
npm's own registry will be treated exactly the same as new ones. (In the
|
||||
past we weren't always super careful about scrubbing `package.json` data
|
||||
on publish. And even when we were, those rules have subtly changed over
|
||||
time.)
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
### v3.3.10 (2015-10-22):
|
||||
|
||||
Hey you all! Welcome to a busy bug fix and PR week. We've got changes
|
||||
|
4
deps/npm/html/doc/README.html
vendored
4
deps/npm/html/doc/README.html
vendored
@ -140,7 +140,7 @@ specific purpose, or lack of malice in any given npm package.</p>
|
||||
<p>If you have a complaint about a package in the public npm registry,
|
||||
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
|
||||
owner</a>, please email
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p>
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p>
|
||||
<p>Any data published to The npm Registry (including user account
|
||||
information) may be removed or modified at the sole discretion of the
|
||||
npm server administrators.</p>
|
||||
@ -183,5 +183,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.3.10</p>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-access.html
vendored
2
deps/npm/html/doc/cli/npm-access.html
vendored
@ -84,5 +84,5 @@ with an HTTP 402 status code (logically enough), unless you use
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-access — npm@3.3.10</p>
|
||||
<p id="footer">npm-access — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
@ -68,5 +68,5 @@ precedence over any global configuration.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-adduser — npm@3.3.10</p>
|
||||
<p id="footer">npm-adduser — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-bin.html
vendored
2
deps/npm/html/doc/cli/npm-bin.html
vendored
@ -35,5 +35,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-bin — npm@3.3.10</p>
|
||||
<p id="footer">npm-bin — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
@ -53,5 +53,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-bugs — npm@3.3.10</p>
|
||||
<p id="footer">npm-bugs — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-build.html
vendored
2
deps/npm/html/doc/cli/npm-build.html
vendored
@ -40,5 +40,5 @@ directly, run:</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-build — npm@3.3.10</p>
|
||||
<p id="footer">npm-build — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
@ -31,5 +31,5 @@ install packages into the local space.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-bundle — npm@3.3.10</p>
|
||||
<p id="footer">npm-bundle — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-cache.html
vendored
2
deps/npm/html/doc/cli/npm-cache.html
vendored
@ -81,5 +81,5 @@ they do not make an HTTP request to the registry.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-cache — npm@3.3.10</p>
|
||||
<p id="footer">npm-cache — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-completion.html
vendored
2
deps/npm/html/doc/cli/npm-completion.html
vendored
@ -44,5 +44,5 @@ completions based on the arguments.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-completion — npm@3.3.10</p>
|
||||
<p id="footer">npm-completion — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-config.html
vendored
2
deps/npm/html/doc/cli/npm-config.html
vendored
@ -65,5 +65,5 @@ global config.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-config — npm@3.3.10</p>
|
||||
<p id="footer">npm-config — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
@ -59,5 +59,5 @@ result in new modules being installed.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-dedupe — npm@3.3.10</p>
|
||||
<p id="footer">npm-dedupe — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
@ -38,5 +38,5 @@ something like this:</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-deprecate — npm@3.3.10</p>
|
||||
<p id="footer">npm-deprecate — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
@ -77,5 +77,5 @@ begin with a number or the letter <code>v</code>.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-dist-tag — npm@3.3.10</p>
|
||||
<p id="footer">npm-dist-tag — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-docs.html
vendored
2
deps/npm/html/doc/cli/npm-docs.html
vendored
@ -56,5 +56,5 @@ the current folder and use the <code>name</code> property.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-docs — npm@3.3.10</p>
|
||||
<p id="footer">npm-docs — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-edit.html
vendored
2
deps/npm/html/doc/cli/npm-edit.html
vendored
@ -49,5 +49,5 @@ or <code>"notepad"</code> on Windows.</li>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-edit — npm@3.3.10</p>
|
||||
<p id="footer">npm-edit — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-explore.html
vendored
2
deps/npm/html/doc/cli/npm-explore.html
vendored
@ -49,5 +49,5 @@ Windows</li>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-explore — npm@3.3.10</p>
|
||||
<p id="footer">npm-explore — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
@ -46,5 +46,5 @@ where the terms were found in the documentation.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-help-search — npm@3.3.10</p>
|
||||
<p id="footer">npm-help-search — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-help.html
vendored
2
deps/npm/html/doc/cli/npm-help.html
vendored
@ -51,5 +51,5 @@ matches are equivalent to specifying a topic name.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-help — npm@3.3.10</p>
|
||||
<p id="footer">npm-help — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-init.html
vendored
2
deps/npm/html/doc/cli/npm-init.html
vendored
@ -48,5 +48,5 @@ defaults and not prompt you for any options.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-init — npm@3.3.10</p>
|
||||
<p id="footer">npm-init — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-install.html
vendored
2
deps/npm/html/doc/cli/npm-install.html
vendored
@ -295,5 +295,5 @@ affects a real use-case, it will be investigated.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-install — npm@3.3.10</p>
|
||||
<p id="footer">npm-install — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-link.html
vendored
2
deps/npm/html/doc/cli/npm-link.html
vendored
@ -73,5 +73,5 @@ include that scope, e.g.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-link — npm@3.3.10</p>
|
||||
<p id="footer">npm-link — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-logout.html
vendored
2
deps/npm/html/doc/cli/npm-logout.html
vendored
@ -55,5 +55,5 @@ that registry at the same time.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-logout — npm@3.3.10</p>
|
||||
<p id="footer">npm-logout — npm@3.3.12</p>
|
||||
|
||||
|
4
deps/npm/html/doc/cli/npm-ls.html
vendored
4
deps/npm/html/doc/cli/npm-ls.html
vendored
@ -21,7 +21,7 @@ installed, as well as their dependencies, in a tree-structure.</p>
|
||||
limit the results to only the paths to the packages named. Note that
|
||||
nested packages will <em>also</em> show the paths to the specified packages.
|
||||
For example, running <code>npm ls promzard</code> in npm's source tree will show:</p>
|
||||
<pre><code>npm@3.3.10 /path/to/npm
|
||||
<pre><code>npm@3.3.12 /path/to/npm
|
||||
└─┬ init-package-json@0.0.4
|
||||
└── promzard@0.1.5
|
||||
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
||||
@ -104,5 +104,5 @@ project.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-ls — npm@3.3.10</p>
|
||||
<p id="footer">npm-ls — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
@ -67,5 +67,5 @@ project.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-outdated — npm@3.3.10</p>
|
||||
<p id="footer">npm-outdated — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-owner.html
vendored
2
deps/npm/html/doc/cli/npm-owner.html
vendored
@ -49,5 +49,5 @@ that is not implemented at this time.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-owner — npm@3.3.10</p>
|
||||
<p id="footer">npm-owner — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-pack.html
vendored
2
deps/npm/html/doc/cli/npm-pack.html
vendored
@ -41,5 +41,5 @@ overwritten the second time.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-pack — npm@3.3.10</p>
|
||||
<p id="footer">npm-pack — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-ping.html
vendored
2
deps/npm/html/doc/cli/npm-ping.html
vendored
@ -32,4 +32,4 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-ping — npm@3.3.10</p>
|
||||
<p id="footer">npm-ping — npm@3.3.12</p>
|
||||
|
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
@ -38,5 +38,5 @@ to contain a package.json file unless <code>-g</code> is also specified.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-prefix — npm@3.3.10</p>
|
||||
<p id="footer">npm-prefix — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-prune.html
vendored
2
deps/npm/html/doc/cli/npm-prune.html
vendored
@ -40,5 +40,5 @@ negate <code>NODE_ENV</code> being set to <code>production</code>.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-prune — npm@3.3.10</p>
|
||||
<p id="footer">npm-prune — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-publish.html
vendored
2
deps/npm/html/doc/cli/npm-publish.html
vendored
@ -68,5 +68,5 @@ it is removed with <a href="../cli/npm-unpublish.html">npm-unpublish(1)</a>.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-publish — npm@3.3.10</p>
|
||||
<p id="footer">npm-publish — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
@ -35,5 +35,5 @@ the new binary.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-rebuild — npm@3.3.10</p>
|
||||
<p id="footer">npm-rebuild — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-repo.html
vendored
2
deps/npm/html/doc/cli/npm-repo.html
vendored
@ -41,5 +41,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-repo — npm@3.3.10</p>
|
||||
<p id="footer">npm-repo — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-restart.html
vendored
2
deps/npm/html/doc/cli/npm-restart.html
vendored
@ -53,5 +53,5 @@ behavior will be accompanied by an increase in major version number</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-restart — npm@3.3.10</p>
|
||||
<p id="footer">npm-restart — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-root.html
vendored
2
deps/npm/html/doc/cli/npm-root.html
vendored
@ -35,5 +35,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-root — npm@3.3.10</p>
|
||||
<p id="footer">npm-root — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
@ -58,5 +58,5 @@ you should write:</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-run-script — npm@3.3.10</p>
|
||||
<p id="footer">npm-run-script — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-search.html
vendored
2
deps/npm/html/doc/cli/npm-search.html
vendored
@ -49,5 +49,5 @@ fall on multiple lines.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-search — npm@3.3.10</p>
|
||||
<p id="footer">npm-search — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
@ -169,5 +169,5 @@ contents rather than versions.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-shrinkwrap — npm@3.3.10</p>
|
||||
<p id="footer">npm-shrinkwrap — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-star.html
vendored
2
deps/npm/html/doc/cli/npm-star.html
vendored
@ -36,5 +36,5 @@ a vaguely positive way to show that you care.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-star — npm@3.3.10</p>
|
||||
<p id="footer">npm-star — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-stars.html
vendored
2
deps/npm/html/doc/cli/npm-stars.html
vendored
@ -36,5 +36,5 @@ you will most certainly enjoy this command.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-stars — npm@3.3.10</p>
|
||||
<p id="footer">npm-stars — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-start.html
vendored
2
deps/npm/html/doc/cli/npm-start.html
vendored
@ -34,5 +34,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-start — npm@3.3.10</p>
|
||||
<p id="footer">npm-start — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-stop.html
vendored
2
deps/npm/html/doc/cli/npm-stop.html
vendored
@ -34,5 +34,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-stop — npm@3.3.10</p>
|
||||
<p id="footer">npm-stop — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-tag.html
vendored
2
deps/npm/html/doc/cli/npm-tag.html
vendored
@ -63,5 +63,5 @@ that do not begin with a number or the letter <code>v</code>.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-tag — npm@3.3.10</p>
|
||||
<p id="footer">npm-tag — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-team.html
vendored
2
deps/npm/html/doc/cli/npm-team.html
vendored
@ -67,4 +67,4 @@ use the <code>npm access</code> command to grant or revoke the appropriate permi
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-team — npm@3.3.10</p>
|
||||
<p id="footer">npm-team — npm@3.3.12</p>
|
||||
|
2
deps/npm/html/doc/cli/npm-test.html
vendored
2
deps/npm/html/doc/cli/npm-test.html
vendored
@ -37,5 +37,5 @@ true.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-test — npm@3.3.10</p>
|
||||
<p id="footer">npm-test — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
@ -60,5 +60,5 @@ npm uninstall dtrace-provider --save-optional
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-uninstall — npm@3.3.10</p>
|
||||
<p id="footer">npm-uninstall — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
@ -47,5 +47,5 @@ package again, a new version number must be used.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-unpublish — npm@3.3.10</p>
|
||||
<p id="footer">npm-unpublish — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-update.html
vendored
2
deps/npm/html/doc/cli/npm-update.html
vendored
@ -120,5 +120,5 @@ be <em>downgraded</em>.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-update — npm@3.3.10</p>
|
||||
<p id="footer">npm-update — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-version.html
vendored
2
deps/npm/html/doc/cli/npm-version.html
vendored
@ -99,5 +99,5 @@ and tag up to the server, and deletes the <code>build/temp</code> directory.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-version — npm@3.3.10</p>
|
||||
<p id="footer">npm-version — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-view.html
vendored
2
deps/npm/html/doc/cli/npm-view.html
vendored
@ -83,5 +83,5 @@ the field name.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-view — npm@3.3.10</p>
|
||||
<p id="footer">npm-view — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
@ -33,5 +33,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-whoami — npm@3.3.10</p>
|
||||
<p id="footer">npm-whoami — npm@3.3.12</p>
|
||||
|
||||
|
10
deps/npm/html/doc/cli/npm.html
vendored
10
deps/npm/html/doc/cli/npm.html
vendored
@ -13,7 +13,7 @@
|
||||
<h2 id="synopsis">SYNOPSIS</h2>
|
||||
<pre><code>npm <command> [args]
|
||||
</code></pre><h2 id="version">VERSION</h2>
|
||||
<p>3.3.10</p>
|
||||
<p>3.3.12</p>
|
||||
<h2 id="description">DESCRIPTION</h2>
|
||||
<p>npm is the package manager for the Node JavaScript platform. It puts
|
||||
modules in place so that node can find them, and manages dependency
|
||||
@ -110,7 +110,7 @@ easily by doing <code>npm view npm contributors</code>.</p>
|
||||
the issues list or ask on the mailing list.</p>
|
||||
<ul>
|
||||
<li><a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
||||
<li><a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||
<li><a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||
</ul>
|
||||
<h2 id="bugs">BUGS</h2>
|
||||
<p>When you find issues, please report them:</p>
|
||||
@ -118,7 +118,7 @@ the issues list or ask on the mailing list.</p>
|
||||
<li>web:
|
||||
<a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
||||
<li>email:
|
||||
<a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||
<a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||
</ul>
|
||||
<p>Be sure to include <em>all</em> of the output from the npm command that didn't work
|
||||
as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p>
|
||||
@ -128,7 +128,7 @@ will no doubt tell you to put the output in a gist or email.</p>
|
||||
<p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> ::
|
||||
<a href="https://github.com/isaacs/">isaacs</a> ::
|
||||
<a href="http://twitter.com/izs">@izs</a> ::
|
||||
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
||||
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||
@ -154,5 +154,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm — npm@3.3.10</p>
|
||||
<p id="footer">npm — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npm-folders.html
vendored
2
deps/npm/html/doc/files/npm-folders.html
vendored
@ -184,5 +184,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-folders — npm@3.3.10</p>
|
||||
<p id="footer">npm-folders — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npm-global.html
vendored
2
deps/npm/html/doc/files/npm-global.html
vendored
@ -184,5 +184,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-folders — npm@3.3.10</p>
|
||||
<p id="footer">npm-folders — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npm-json.html
vendored
2
deps/npm/html/doc/files/npm-json.html
vendored
@ -559,5 +559,5 @@ ignored.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">package.json — npm@3.3.10</p>
|
||||
<p id="footer">package.json — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npmrc.html
vendored
2
deps/npm/html/doc/files/npmrc.html
vendored
@ -83,5 +83,5 @@ manner.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npmrc — npm@3.3.10</p>
|
||||
<p id="footer">npmrc — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/package.json.html
vendored
2
deps/npm/html/doc/files/package.json.html
vendored
@ -559,5 +559,5 @@ ignored.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">package.json — npm@3.3.10</p>
|
||||
<p id="footer">package.json — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/index.html
vendored
2
deps/npm/html/doc/index.html
vendored
@ -162,5 +162,5 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-index — npm@3.3.10</p>
|
||||
<p id="footer">npm-index — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
@ -154,5 +154,5 @@ set to anything."</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-coding-style — npm@3.3.10</p>
|
||||
<p id="footer">npm-coding-style — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-config.html
vendored
2
deps/npm/html/doc/misc/npm-config.html
vendored
@ -829,5 +829,5 @@ exit successfully.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-config — npm@3.3.10</p>
|
||||
<p id="footer">npm-config — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-developers.html
vendored
2
deps/npm/html/doc/misc/npm-developers.html
vendored
@ -195,5 +195,5 @@ from a fresh checkout.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-developers — npm@3.3.10</p>
|
||||
<p id="footer">npm-developers — npm@3.3.12</p>
|
||||
|
||||
|
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
@ -13,7 +13,7 @@
|
||||
<h2 id="synopsis">SYNOPSIS</h2>
|
||||
<ol>
|
||||
<li>Get the author email with <code>npm owner ls <pkgname></code></li>
|
||||
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
||||
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
||||
<li>After a few weeks, if there's no resolution, we'll sort it out.</li>
|
||||
</ol>
|
||||
<p>Don't squat on package names. Publish code or move out of the way.</p>
|
||||
@ -51,12 +51,12 @@ Joe's appropriate course of action in each case is the same.</p>
|
||||
owner (Bob).</li>
|
||||
<li>Joe emails Bob, explaining the situation <strong>as respectfully as
|
||||
possible</strong>, and what he would like to do with the module name. He
|
||||
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
||||
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
||||
the email. Mention in the email that Bob can run <code>npm owner add
|
||||
joe foo</code> to add Joe as an owner of the <code>foo</code> package.</li>
|
||||
<li>After a reasonable amount of time, if Bob has not responded, or if
|
||||
Bob and Joe can't come to any sort of resolution, email support
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
||||
usually at least 4 weeks, but extra time is allowed around common
|
||||
holidays.)</li>
|
||||
</ol>
|
||||
@ -112,5 +112,5 @@ things into it.</li>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-disputes — npm@3.3.10</p>
|
||||
<p id="footer">npm-disputes — npm@3.3.12</p>
|
||||
|
||||
|
4
deps/npm/html/doc/misc/npm-faq.html
vendored
4
deps/npm/html/doc/misc/npm-faq.html
vendored
@ -237,7 +237,7 @@ that has a package.json in its root, or a git url.
|
||||
<p>To check if the registry is down, open up
|
||||
<a href="https://registry.npmjs.org/">https://registry.npmjs.org/</a> in a web browser. This will also tell
|
||||
you if you are just unable to access the internet for some reason.</p>
|
||||
<p>If the registry IS down, let us know by emailing <a href="mailto:support@npmjs.com">support@npmjs.com</a>
|
||||
<p>If the registry IS down, let us know by emailing <a href="mailto:support@npmjs.com">support@npmjs.com</a>
|
||||
or posting an issue at <a href="https://github.com/npm/npm/issues">https://github.com/npm/npm/issues</a>. If it's
|
||||
down for the world (and not just on your local network) then we're
|
||||
probably already being pinged about it.</p>
|
||||
@ -308,5 +308,5 @@ good folks at <a href="http://www.npmjs.com">npm, Inc.</a></p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-faq — npm@3.3.10</p>
|
||||
<p id="footer">npm-faq — npm@3.3.12</p>
|
||||
|
||||
|
165
deps/npm/html/doc/misc/npm-index.html
vendored
Normal file
165
deps/npm/html/doc/misc/npm-index.html
vendored
Normal file
@ -0,0 +1,165 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<title>npm-index</title>
|
||||
<meta http-equiv="content-type" value="text/html;utf-8">
|
||||
<link rel="stylesheet" type="text/css" href="../../static/style.css">
|
||||
<link rel="canonical" href="https://www.npmjs.org/doc/misc/npm-index.html">
|
||||
<script async=true src="../../static/toc.js"></script>
|
||||
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
|
||||
<h1><a href="../misc/npm-index.html">npm-index</a></h1> <p>Index of all npm documentation</p>
|
||||
<h3 id="readme-1-"><a href="../../doc/README.html">README</a></h3>
|
||||
<p>a JavaScript package manager</p>
|
||||
<h2 id="command-line-documentation">Command Line Documentation</h2>
|
||||
<p>Using npm on the command line</p>
|
||||
<h3 id="npm-1-"><a href="../cli/npm.html">npm(1)</a></h3>
|
||||
<p>javascript package manager</p>
|
||||
<h3 id="npm-access-1-"><a href="../cli/npm-access.html">npm-access(1)</a></h3>
|
||||
<p>Set access level on published packages</p>
|
||||
<h3 id="npm-adduser-1-"><a href="../cli/npm-adduser.html">npm-adduser(1)</a></h3>
|
||||
<p>Add a registry user account</p>
|
||||
<h3 id="npm-bin-1-"><a href="../cli/npm-bin.html">npm-bin(1)</a></h3>
|
||||
<p>Display npm bin folder</p>
|
||||
<h3 id="npm-bugs-1-"><a href="../cli/npm-bugs.html">npm-bugs(1)</a></h3>
|
||||
<p>Bugs for a package in a web browser maybe</p>
|
||||
<h3 id="npm-build-1-"><a href="../cli/npm-build.html">npm-build(1)</a></h3>
|
||||
<p>Build a package</p>
|
||||
<h3 id="npm-bundle-1-"><a href="../cli/npm-bundle.html">npm-bundle(1)</a></h3>
|
||||
<p>REMOVED</p>
|
||||
<h3 id="npm-cache-1-"><a href="../cli/npm-cache.html">npm-cache(1)</a></h3>
|
||||
<p>Manipulates packages cache</p>
|
||||
<h3 id="npm-completion-1-"><a href="../cli/npm-completion.html">npm-completion(1)</a></h3>
|
||||
<p>Tab Completion for npm</p>
|
||||
<h3 id="npm-config-1-"><a href="../cli/npm-config.html">npm-config(1)</a></h3>
|
||||
<p>Manage the npm configuration files</p>
|
||||
<h3 id="npm-dedupe-1-"><a href="../cli/npm-dedupe.html">npm-dedupe(1)</a></h3>
|
||||
<p>Reduce duplication</p>
|
||||
<h3 id="npm-deprecate-1-"><a href="../cli/npm-deprecate.html">npm-deprecate(1)</a></h3>
|
||||
<p>Deprecate a version of a package</p>
|
||||
<h3 id="npm-dist-tag-1-"><a href="../cli/npm-dist-tag.html">npm-dist-tag(1)</a></h3>
|
||||
<p>Modify package distribution tags</p>
|
||||
<h3 id="npm-docs-1-"><a href="../cli/npm-docs.html">npm-docs(1)</a></h3>
|
||||
<p>Docs for a package in a web browser maybe</p>
|
||||
<h3 id="npm-edit-1-"><a href="../cli/npm-edit.html">npm-edit(1)</a></h3>
|
||||
<p>Edit an installed package</p>
|
||||
<h3 id="npm-explore-1-"><a href="../cli/npm-explore.html">npm-explore(1)</a></h3>
|
||||
<p>Browse an installed package</p>
|
||||
<h3 id="npm-help-search-1-"><a href="../cli/npm-help-search.html">npm-help-search(1)</a></h3>
|
||||
<p>Search npm help documentation</p>
|
||||
<h3 id="npm-help-1-"><a href="../cli/npm-help.html">npm-help(1)</a></h3>
|
||||
<p>Get help on npm</p>
|
||||
<h3 id="npm-init-1-"><a href="../cli/npm-init.html">npm-init(1)</a></h3>
|
||||
<p>Interactively create a package.json file</p>
|
||||
<h3 id="npm-install-1-"><a href="../cli/npm-install.html">npm-install(1)</a></h3>
|
||||
<p>Install a package</p>
|
||||
<h3 id="npm-link-1-"><a href="../cli/npm-link.html">npm-link(1)</a></h3>
|
||||
<p>Symlink a package folder</p>
|
||||
<h3 id="npm-logout-1-"><a href="../cli/npm-logout.html">npm-logout(1)</a></h3>
|
||||
<p>Log out of the registry</p>
|
||||
<h3 id="npm-ls-1-"><a href="../cli/npm-ls.html">npm-ls(1)</a></h3>
|
||||
<p>List installed packages</p>
|
||||
<h3 id="npm-outdated-1-"><a href="../cli/npm-outdated.html">npm-outdated(1)</a></h3>
|
||||
<p>Check for outdated packages</p>
|
||||
<h3 id="npm-owner-1-"><a href="../cli/npm-owner.html">npm-owner(1)</a></h3>
|
||||
<p>Manage package owners</p>
|
||||
<h3 id="npm-pack-1-"><a href="../cli/npm-pack.html">npm-pack(1)</a></h3>
|
||||
<p>Create a tarball from a package</p>
|
||||
<h3 id="npm-ping-1-"><a href="../cli/npm-ping.html">npm-ping(1)</a></h3>
|
||||
<p>Ping npm registry</p>
|
||||
<h3 id="npm-prefix-1-"><a href="../cli/npm-prefix.html">npm-prefix(1)</a></h3>
|
||||
<p>Display prefix</p>
|
||||
<h3 id="npm-prune-1-"><a href="../cli/npm-prune.html">npm-prune(1)</a></h3>
|
||||
<p>Remove extraneous packages</p>
|
||||
<h3 id="npm-publish-1-"><a href="../cli/npm-publish.html">npm-publish(1)</a></h3>
|
||||
<p>Publish a package</p>
|
||||
<h3 id="npm-rebuild-1-"><a href="../cli/npm-rebuild.html">npm-rebuild(1)</a></h3>
|
||||
<p>Rebuild a package</p>
|
||||
<h3 id="npm-repo-1-"><a href="../cli/npm-repo.html">npm-repo(1)</a></h3>
|
||||
<p>Open package repository page in the browser</p>
|
||||
<h3 id="npm-restart-1-"><a href="../cli/npm-restart.html">npm-restart(1)</a></h3>
|
||||
<p>Restart a package</p>
|
||||
<h3 id="npm-root-1-"><a href="../cli/npm-root.html">npm-root(1)</a></h3>
|
||||
<p>Display npm root</p>
|
||||
<h3 id="npm-run-script-1-"><a href="../cli/npm-run-script.html">npm-run-script(1)</a></h3>
|
||||
<p>Run arbitrary package scripts</p>
|
||||
<h3 id="npm-search-1-"><a href="../cli/npm-search.html">npm-search(1)</a></h3>
|
||||
<p>Search for packages</p>
|
||||
<h3 id="npm-shrinkwrap-1-"><a href="../cli/npm-shrinkwrap.html">npm-shrinkwrap(1)</a></h3>
|
||||
<p>Lock down dependency versions</p>
|
||||
<h3 id="npm-star-1-"><a href="../cli/npm-star.html">npm-star(1)</a></h3>
|
||||
<p>Mark your favorite packages</p>
|
||||
<h3 id="npm-stars-1-"><a href="../cli/npm-stars.html">npm-stars(1)</a></h3>
|
||||
<p>View packages marked as favorites</p>
|
||||
<h3 id="npm-start-1-"><a href="../cli/npm-start.html">npm-start(1)</a></h3>
|
||||
<p>Start a package</p>
|
||||
<h3 id="npm-stop-1-"><a href="../cli/npm-stop.html">npm-stop(1)</a></h3>
|
||||
<p>Stop a package</p>
|
||||
<h3 id="npm-tag-1-"><a href="../cli/npm-tag.html">npm-tag(1)</a></h3>
|
||||
<p>Tag a published version</p>
|
||||
<h3 id="npm-team-1-"><a href="../cli/npm-team.html">npm-team(1)</a></h3>
|
||||
<p>Manage organization teams and team memberships</p>
|
||||
<h3 id="npm-test-1-"><a href="../cli/npm-test.html">npm-test(1)</a></h3>
|
||||
<p>Test a package</p>
|
||||
<h3 id="npm-uninstall-1-"><a href="../cli/npm-uninstall.html">npm-uninstall(1)</a></h3>
|
||||
<p>Remove a package</p>
|
||||
<h3 id="npm-unpublish-1-"><a href="../cli/npm-unpublish.html">npm-unpublish(1)</a></h3>
|
||||
<p>Remove a package from the registry</p>
|
||||
<h3 id="npm-update-1-"><a href="../cli/npm-update.html">npm-update(1)</a></h3>
|
||||
<p>Update a package</p>
|
||||
<h3 id="npm-version-1-"><a href="../cli/npm-version.html">npm-version(1)</a></h3>
|
||||
<p>Bump a package version</p>
|
||||
<h3 id="npm-view-1-"><a href="../cli/npm-view.html">npm-view(1)</a></h3>
|
||||
<p>View registry info</p>
|
||||
<h3 id="npm-whoami-1-"><a href="../cli/npm-whoami.html">npm-whoami(1)</a></h3>
|
||||
<p>Display npm username</p>
|
||||
<h2 id="api-documentation">API Documentation</h2>
|
||||
<p>Using npm in your Node programs</p>
|
||||
<h2 id="files">Files</h2>
|
||||
<p>File system structures npm uses</p>
|
||||
<h3 id="npm-folders-5-"><a href="../files/npm-folders.html">npm-folders(5)</a></h3>
|
||||
<p>Folder Structures Used by npm</p>
|
||||
<h3 id="npmrc-5-"><a href="../files/npmrc.html">npmrc(5)</a></h3>
|
||||
<p>The npm config files</p>
|
||||
<h3 id="package-json-5-"><a href="../files/package.json.html">package.json(5)</a></h3>
|
||||
<p>Specifics of npm's package.json handling</p>
|
||||
<h2 id="misc">Misc</h2>
|
||||
<p>Various other bits and bobs</p>
|
||||
<h3 id="npm-coding-style-7-"><a href="../misc/npm-coding-style.html">npm-coding-style(7)</a></h3>
|
||||
<p>npm's "funny" coding style</p>
|
||||
<h3 id="npm-config-7-"><a href="../misc/npm-config.html">npm-config(7)</a></h3>
|
||||
<p>More than you probably want to know about npm configuration</p>
|
||||
<h3 id="npm-developers-7-"><a href="../misc/npm-developers.html">npm-developers(7)</a></h3>
|
||||
<p>Developer Guide</p>
|
||||
<h3 id="npm-disputes-7-"><a href="../misc/npm-disputes.html">npm-disputes(7)</a></h3>
|
||||
<p>Handling Module Name Disputes</p>
|
||||
<h3 id="npm-faq-7-"><a href="../misc/npm-faq.html">npm-faq(7)</a></h3>
|
||||
<p>Frequently Asked Questions</p>
|
||||
<h3 id="npm-index-7-"><a href="../misc/npm-index.html">npm-index(7)</a></h3>
|
||||
<p>Index of all npm documentation</p>
|
||||
<h3 id="npm-orgs-7-"><a href="../misc/npm-orgs.html">npm-orgs(7)</a></h3>
|
||||
<p>Working with Teams & Orgs</p>
|
||||
<h3 id="npm-registry-7-"><a href="../misc/npm-registry.html">npm-registry(7)</a></h3>
|
||||
<p>The JavaScript Package Registry</p>
|
||||
<h3 id="npm-scope-7-"><a href="../misc/npm-scope.html">npm-scope(7)</a></h3>
|
||||
<p>Scoped packages</p>
|
||||
<h3 id="npm-scripts-7-"><a href="../misc/npm-scripts.html">npm-scripts(7)</a></h3>
|
||||
<p>How npm handles the "scripts" field</p>
|
||||
<h3 id="removing-npm-7-"><a href="../misc/removing-npm.html">removing-npm(7)</a></h3>
|
||||
<p>Cleaning the Slate</p>
|
||||
<h3 id="semver-7-"><a href="../misc/semver.html">semver(7)</a></h3>
|
||||
<p>The semantic versioner for npm</p>
|
||||
|
||||
</div>
|
||||
|
||||
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
|
||||
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
|
||||
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
|
||||
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
|
||||
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
|
||||
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-index — npm@3.3.12</p>
|
2
deps/npm/html/doc/misc/npm-orgs.html
vendored
2
deps/npm/html/doc/misc/npm-orgs.html
vendored
@ -86,4 +86,4 @@
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-orgs — npm@3.3.10</p>
|
||||
<p id="footer">npm-orgs — npm@3.3.12</p>
|
||||
|
2
deps/npm/html/doc/misc/npm-registry.html
vendored
2
deps/npm/html/doc/misc/npm-registry.html
vendored
@ -70,5 +70,5 @@ effectively implement the entire CouchDB API anyway.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-registry — npm@3.3.10</p>
|
||||
<p id="footer">npm-registry — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-scope.html
vendored
2
deps/npm/html/doc/misc/npm-scope.html
vendored
@ -91,5 +91,5 @@ that registry instead.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-scope — npm@3.3.10</p>
|
||||
<p id="footer">npm-scope — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
@ -207,5 +207,5 @@ scripts is for compilation which must be done on the target architecture.</li>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">npm-scripts — npm@3.3.10</p>
|
||||
<p id="footer">npm-scripts — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/removing-npm.html
vendored
2
deps/npm/html/doc/misc/removing-npm.html
vendored
@ -57,5 +57,5 @@ modules. To track those down, you can do the following:</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">removing-npm — npm@3.3.10</p>
|
||||
<p id="footer">removing-npm — npm@3.3.12</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/semver.html
vendored
2
deps/npm/html/doc/misc/semver.html
vendored
@ -282,5 +282,5 @@ range, use the <code>satisfies(version, range)</code> function.</p>
|
||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||
</table>
|
||||
<p id="footer">semver — npm@3.3.10</p>
|
||||
<p id="footer">semver — npm@3.3.12</p>
|
||||
|
||||
|
10
deps/npm/lib/fetch-package-metadata.js
vendored
10
deps/npm/lib/fetch-package-metadata.js
vendored
@ -15,6 +15,7 @@ var rimraf = require('rimraf')
|
||||
var clone = require('lodash.clonedeep')
|
||||
var validate = require('aproba')
|
||||
var unpipe = require('unpipe')
|
||||
var normalizePackageData = require('normalize-package-data')
|
||||
|
||||
var npm = require('./npm.js')
|
||||
var mapToRegistry = require('./utils/map-to-registry.js')
|
||||
@ -68,6 +69,15 @@ module.exports = function fetchPackageMetadata (spec, where, tracker, done) {
|
||||
pkg._where = where
|
||||
if (!pkg._args) pkg._args = []
|
||||
pkg._args.push([pkg._spec, pkg._where])
|
||||
// non-npm registries can and will return unnormalized data, plus
|
||||
// even the npm registry may have package data normalized with older
|
||||
// normalization rules. This ensures we get package data in a consistent,
|
||||
// stable format.
|
||||
try {
|
||||
normalizePackageData(pkg)
|
||||
} catch (ex) {
|
||||
// don't care
|
||||
}
|
||||
}
|
||||
logAndFinish(er, pkg)
|
||||
}
|
||||
|
37
deps/npm/lib/install/action/finalize.js
vendored
37
deps/npm/lib/install/action/finalize.js
vendored
@ -4,7 +4,23 @@ var rimraf = require('rimraf')
|
||||
var fs = require('graceful-fs')
|
||||
var mkdirp = require('mkdirp')
|
||||
var asyncMap = require('slide').asyncMap
|
||||
var andIgnoreErrors = require('../and-ignore-errors.js')
|
||||
var iferr = require('iferr')
|
||||
|
||||
function getTree (pkg) {
|
||||
while (pkg.parent) pkg = pkg.parent
|
||||
return pkg
|
||||
}
|
||||
|
||||
function warn (pkg, code, msg) {
|
||||
var tree = getTree(pkg)
|
||||
var err = new Error(msg)
|
||||
err.code = code
|
||||
tree.warnings.push(err)
|
||||
}
|
||||
|
||||
function pathToShortname (modpath) {
|
||||
return modpath.replace(/node_modules[/]/g, '').replace(/[/]/g, ' > ')
|
||||
}
|
||||
|
||||
module.exports = function (top, buildpath, pkg, log, next) {
|
||||
log.silly('finalize', pkg.path)
|
||||
@ -59,15 +75,26 @@ module.exports = function (top, buildpath, pkg, log, next) {
|
||||
function moveModules (mkdirEr, files) {
|
||||
if (mkdirEr) return next(mkdirEr)
|
||||
asyncMap(files, function (file, done) {
|
||||
// `from` wins over `to`, because if `from` was there it's because the
|
||||
// module installer wanted it to be there. By contrast, `to` is just
|
||||
// whatever was bundled in this module. And the intentions of npm's
|
||||
// installer should always beat out random module contents.
|
||||
var from = path.join(delpath, 'node_modules', file)
|
||||
var to = path.join(pkg.path, 'node_modules', file)
|
||||
// we ignore errors here, because they can legitimately happen, for instance,
|
||||
// bundled modules will be in both node_modules folders
|
||||
fs.rename(from, to, andIgnoreErrors(done))
|
||||
fs.stat(to, function (er, info) {
|
||||
if (er) return fs.rename(from, to, done)
|
||||
|
||||
var shortname = pathToShortname(path.relative(getTree(pkg).path, to))
|
||||
warn(pkg, 'EBUNDLEOVERRIDE', 'Replacing bundled ' + shortname + ' with new installed version')
|
||||
rimraf(to, iferr(done, function () {
|
||||
fs.rename(from, to, done)
|
||||
}))
|
||||
})
|
||||
}, cleanup)
|
||||
}
|
||||
|
||||
function cleanup () {
|
||||
function cleanup (moveEr) {
|
||||
if (moveEr) return next(moveEr)
|
||||
rimraf(delpath, afterCleanup)
|
||||
}
|
||||
|
||||
|
24
deps/npm/lib/install/deps.js
vendored
24
deps/npm/lib/install/deps.js
vendored
@ -38,11 +38,11 @@ function isDep (tree, child) {
|
||||
var name = moduleName(child)
|
||||
var requested = isProdDep(tree, name)
|
||||
var matches
|
||||
if (requested) matches = doesChildVersionMatch(child, requested)
|
||||
if (requested) matches = doesChildVersionMatch(child, requested, tree)
|
||||
if (matches) return matches
|
||||
requested = isDevDep(tree, name)
|
||||
if (!requested) return
|
||||
return doesChildVersionMatch(child, requested)
|
||||
return doesChildVersionMatch(child, requested, tree)
|
||||
}
|
||||
|
||||
function isDevDep (tree, name) {
|
||||
@ -61,10 +61,10 @@ function isProdDep (tree, name) {
|
||||
|
||||
var registryTypes = { range: true, version: true }
|
||||
|
||||
function doesChildVersionMatch (child, requested) {
|
||||
function doesChildVersionMatch (child, requested, requestor) {
|
||||
// we always consider deps provided by a shrinkwrap as "correct" or else
|
||||
// we'll subvert them if they're intentionally "invalid"
|
||||
if (child.fromShrinkwrap) return true
|
||||
if (child.parent === requestor && child.fromShrinkwrap) return true
|
||||
// ranges of * ALWAYS count as a match, because when downloading we allow
|
||||
// prereleases to match * if there are ONLY prereleases
|
||||
if (requested.spec === '*') return true
|
||||
@ -515,13 +515,14 @@ function validateAllPeerDeps (tree, onInvalid, seen) {
|
||||
|
||||
// Determine if a module requirement is already met by the tree at or above
|
||||
// our current location in the tree.
|
||||
var findRequirement = exports.findRequirement = function (tree, name, requested) {
|
||||
validate('OSO', arguments)
|
||||
var findRequirement = exports.findRequirement = function (tree, name, requested, requestor) {
|
||||
validate('OSO', [tree, name, requested])
|
||||
if (!requestor) requestor = tree
|
||||
var nameMatch = function (child) {
|
||||
return moduleName(child) === name && child.parent && !child.removed
|
||||
}
|
||||
var versionMatch = function (child) {
|
||||
return doesChildVersionMatch(child, requested)
|
||||
return doesChildVersionMatch(child, requested, requestor)
|
||||
}
|
||||
if (nameMatch(tree)) {
|
||||
// this *is* the module, but it doesn't match the version, so a
|
||||
@ -538,7 +539,7 @@ var findRequirement = exports.findRequirement = function (tree, name, requested)
|
||||
return null
|
||||
}
|
||||
if (!tree.parent) return null
|
||||
return findRequirement(tree.parent, name, requested)
|
||||
return findRequirement(tree.parent, name, requested, requestor)
|
||||
}
|
||||
|
||||
// Find the highest level in the tree that we can install this module in.
|
||||
@ -554,10 +555,11 @@ var earliestInstallable = exports.earliestInstallable = function (requiredBy, tr
|
||||
|
||||
// If any of the children of this tree have conflicting
|
||||
// binaries then we need to decline to install this package here.
|
||||
var binaryMatches = tree.children.some(function (child) {
|
||||
var binaryMatches = typeof pkg.bin === 'object' && tree.children.some(function (child) {
|
||||
if (child.removed) return false
|
||||
return Object.keys(child.package.bin || {}).some(function (bin) {
|
||||
return pkg.bin && pkg.bin[bin]
|
||||
if (typeof child.package.bin !== 'object') return false
|
||||
return Object.keys(child.package.bin).some(function (bin) {
|
||||
return pkg.bin[bin]
|
||||
})
|
||||
})
|
||||
if (binaryMatches) return null
|
||||
|
1
deps/npm/lib/install/diff-trees.js
vendored
1
deps/npm/lib/install/diff-trees.js
vendored
@ -132,6 +132,7 @@ function diffTrees (oldTree, newTree) {
|
||||
requiredByAllLinked(pkg)
|
||||
if (pkg.fromBundle) {
|
||||
if (npm.config.get('rebuild-bundle')) differences.push(['rebuild', pkg])
|
||||
if (pkg.oldPkg) differences.push(['remove', pkg])
|
||||
} else if (pkg.oldPkg) {
|
||||
if (!pkg.directlyRequested && pkgAreEquiv(pkg.oldPkg.package, pkg.package)) return
|
||||
if (!pkg.isInLink && (isLink(pkg.oldPkg) || isLink(pkg))) {
|
||||
|
2
deps/npm/man/man1/npm-README.1
vendored
2
deps/npm/man/man1/npm-README.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM" "1" "October 2015" "" ""
|
||||
.TH "NPM" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm\fR \- a JavaScript package manager
|
||||
.P
|
||||
|
2
deps/npm/man/man1/npm-access.1
vendored
2
deps/npm/man/man1/npm-access.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-ACCESS" "1" "October 2015" "" ""
|
||||
.TH "NPM\-ACCESS" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-access\fR \- Set access level on published packages
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-adduser.1
vendored
2
deps/npm/man/man1/npm-adduser.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-ADDUSER" "1" "October 2015" "" ""
|
||||
.TH "NPM\-ADDUSER" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-adduser\fR \- Add a registry user account
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bin.1
vendored
2
deps/npm/man/man1/npm-bin.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BIN" "1" "October 2015" "" ""
|
||||
.TH "NPM\-BIN" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bin\fR \- Display npm bin folder
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bugs.1
vendored
2
deps/npm/man/man1/npm-bugs.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUGS" "1" "October 2015" "" ""
|
||||
.TH "NPM\-BUGS" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bugs\fR \- Bugs for a package in a web browser maybe
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-build.1
vendored
2
deps/npm/man/man1/npm-build.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUILD" "1" "October 2015" "" ""
|
||||
.TH "NPM\-BUILD" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-build\fR \- Build a package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bundle.1
vendored
2
deps/npm/man/man1/npm-bundle.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUNDLE" "1" "October 2015" "" ""
|
||||
.TH "NPM\-BUNDLE" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bundle\fR \- REMOVED
|
||||
.SH DESCRIPTION
|
||||
|
2
deps/npm/man/man1/npm-cache.1
vendored
2
deps/npm/man/man1/npm-cache.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-CACHE" "1" "October 2015" "" ""
|
||||
.TH "NPM\-CACHE" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-cache\fR \- Manipulates packages cache
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-completion.1
vendored
2
deps/npm/man/man1/npm-completion.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-COMPLETION" "1" "October 2015" "" ""
|
||||
.TH "NPM\-COMPLETION" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-completion\fR \- Tab Completion for npm
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-config.1
vendored
2
deps/npm/man/man1/npm-config.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-CONFIG" "1" "October 2015" "" ""
|
||||
.TH "NPM\-CONFIG" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-config\fR \- Manage the npm configuration files
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-dedupe.1
vendored
2
deps/npm/man/man1/npm-dedupe.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-DEDUPE" "1" "October 2015" "" ""
|
||||
.TH "NPM\-DEDUPE" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-dedupe\fR \- Reduce duplication
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-deprecate.1
vendored
2
deps/npm/man/man1/npm-deprecate.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-DEPRECATE" "1" "October 2015" "" ""
|
||||
.TH "NPM\-DEPRECATE" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-deprecate\fR \- Deprecate a version of a package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-dist-tag.1
vendored
2
deps/npm/man/man1/npm-dist-tag.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-DIST\-TAG" "1" "October 2015" "" ""
|
||||
.TH "NPM\-DIST\-TAG" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-dist-tag\fR \- Modify package distribution tags
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-docs.1
vendored
2
deps/npm/man/man1/npm-docs.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-DOCS" "1" "October 2015" "" ""
|
||||
.TH "NPM\-DOCS" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-docs\fR \- Docs for a package in a web browser maybe
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-edit.1
vendored
2
deps/npm/man/man1/npm-edit.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-EDIT" "1" "October 2015" "" ""
|
||||
.TH "NPM\-EDIT" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-edit\fR \- Edit an installed package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-explore.1
vendored
2
deps/npm/man/man1/npm-explore.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-EXPLORE" "1" "October 2015" "" ""
|
||||
.TH "NPM\-EXPLORE" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-explore\fR \- Browse an installed package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-help-search.1
vendored
2
deps/npm/man/man1/npm-help-search.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-HELP\-SEARCH" "1" "October 2015" "" ""
|
||||
.TH "NPM\-HELP\-SEARCH" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-help-search\fR \- Search npm help documentation
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-help.1
vendored
2
deps/npm/man/man1/npm-help.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-HELP" "1" "October 2015" "" ""
|
||||
.TH "NPM\-HELP" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-help\fR \- Get help on npm
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-init.1
vendored
2
deps/npm/man/man1/npm-init.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-INIT" "1" "October 2015" "" ""
|
||||
.TH "NPM\-INIT" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-init\fR \- Interactively create a package\.json file
|
||||
.SH SYNOPSIS
|
||||
|
32
deps/npm/man/man1/npm-install-test.1
vendored
Normal file
32
deps/npm/man/man1/npm-install-test.1
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
.TH "NPM" "" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm\fR
|
||||
.SH SYNOPSIS
|
||||
.P
|
||||
.RS 2
|
||||
.nf
|
||||
npm install\-test (with no args, in package dir)
|
||||
npm install\-test [<@scope>/]<name>
|
||||
npm install\-test [<@scope>/]<name>@<tag>
|
||||
npm install\-test [<@scope>/]<name>@<version>
|
||||
npm install\-test [<@scope>/]<name>@<version range>
|
||||
npm install\-test <tarball file>
|
||||
npm install\-test <tarball url>
|
||||
npm install\-test <folder>
|
||||
|
||||
alias: npm it
|
||||
common options: [\-\-save|\-\-save\-dev|\-\-save\-optional] [\-\-save\-exact] [\-\-dry\-run]
|
||||
.fi
|
||||
.RE
|
||||
.SH DESCRIPTION
|
||||
.P
|
||||
This command runs an \fBnpm install\fP followed immediately by an \fBnpm test\fP\|\. It
|
||||
takes exactly the same arguments as \fBnpm install\fP\|\.
|
||||
.SH SEE ALSO
|
||||
.RS 0
|
||||
.IP \(bu 2
|
||||
npm help install
|
||||
.IP \(bu 2
|
||||
npm help test
|
||||
|
||||
.RE
|
2
deps/npm/man/man1/npm-install.1
vendored
2
deps/npm/man/man1/npm-install.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-INSTALL" "1" "October 2015" "" ""
|
||||
.TH "NPM\-INSTALL" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-install\fR \- Install a package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-link.1
vendored
2
deps/npm/man/man1/npm-link.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-LINK" "1" "October 2015" "" ""
|
||||
.TH "NPM\-LINK" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-link\fR \- Symlink a package folder
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-logout.1
vendored
2
deps/npm/man/man1/npm-logout.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-LOGOUT" "1" "October 2015" "" ""
|
||||
.TH "NPM\-LOGOUT" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-logout\fR \- Log out of the registry
|
||||
.SH SYNOPSIS
|
||||
|
4
deps/npm/man/man1/npm-ls.1
vendored
4
deps/npm/man/man1/npm-ls.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-LS" "1" "October 2015" "" ""
|
||||
.TH "NPM\-LS" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-ls\fR \- List installed packages
|
||||
.SH SYNOPSIS
|
||||
@ -22,7 +22,7 @@ For example, running \fBnpm ls promzard\fP in npm's source tree will show:
|
||||
.P
|
||||
.RS 2
|
||||
.nf
|
||||
npm@3.3.10 /path/to/npm
|
||||
npm@3.3.12 /path/to/npm
|
||||
└─┬ init\-package\-json@0\.0\.4
|
||||
└── promzard@0\.1\.5
|
||||
.fi
|
||||
|
2
deps/npm/man/man1/npm-outdated.1
vendored
2
deps/npm/man/man1/npm-outdated.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-OUTDATED" "1" "October 2015" "" ""
|
||||
.TH "NPM\-OUTDATED" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-outdated\fR \- Check for outdated packages
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-owner.1
vendored
2
deps/npm/man/man1/npm-owner.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-OWNER" "1" "October 2015" "" ""
|
||||
.TH "NPM\-OWNER" "1" "November 2015" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-owner\fR \- Manage package owners
|
||||
.SH SYNOPSIS
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user