deps: upgrade npm to 3.8.9
Contains the following three npm releases: https://github.com/npm/npm/releases/tag/v3.8.7 https://github.com/npm/npm/releases/tag/v3.8.8 https://github.com/npm/npm/releases/tag/v3.8.9 PR-URL: https://github.com/nodejs/node/pull/6664 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
101dd1ed78
commit
5c36cfc843
4
deps/npm/.travis.yml
vendored
4
deps/npm/.travis.yml
vendored
@ -1,8 +1,8 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "5"
|
||||
- "6"
|
||||
- "4"
|
||||
- iojs
|
||||
- "5"
|
||||
- "0.12"
|
||||
- "0.10"
|
||||
- "0.8"
|
||||
|
7
deps/npm/AUTHORS
vendored
7
deps/npm/AUTHORS
vendored
@ -389,3 +389,10 @@ Thomas Hallock <thomas@1stdibs.com>
|
||||
Paul Irish <paul.irish@gmail.com>
|
||||
Paul O'Leary McCann <polm@dampfkraft.com>
|
||||
Francis Gulotta <wizard@roborooter.com>
|
||||
Felix Rieseberg <felix@felixrieseberg.com>
|
||||
Glen Mailer <glenjamin@gmail.com>
|
||||
Federico Brigante <bfred-it@users.noreply.github.com>
|
||||
Steve Mao <maochenyan@gmail.com>
|
||||
Anna Henningsen <anna@addaleax.net>
|
||||
Rachel Evans <git@rve.org.uk>
|
||||
Sam Minnee <sam@silverstripe.com>
|
||||
|
187
deps/npm/CHANGELOG.md
vendored
187
deps/npm/CHANGELOG.md
vendored
@ -1,3 +1,190 @@
|
||||
### v3.8.9 (2016-04-28)
|
||||
|
||||
Our biggest news this week is that we got the
|
||||
[Windows test suite passing](https://github.com/npm/npm/pull/11444)!
|
||||
It'll take a little longer to get it passing in our
|
||||
[Windows CI](https://ci.appveyor.com/project/npm/npm/) but that's coming
|
||||
soon too.
|
||||
|
||||
That means we'll be shifting gears away from tests to fixing
|
||||
[Big Bugs™](https://github.com/npm/npm/issues?q=is%3Aopen+is%3Aissue+label%3Abig-bug) again.
|
||||
Join us at our [team meeting](https://github.com/npm/npm/issues/12517) next
|
||||
Tuesday to learn more about that.
|
||||
|
||||
#### BUG FIXES AND REFACTORING
|
||||
|
||||
* [`60da618`](https://github.com/npm/npm/commit/60da61862885fa904afba7d121860b4282a5b0df)
|
||||
[#12347](https://github.com/npm/npm/issues/12347)
|
||||
Fix a bug that could result in shrinkwraps missing the `resolved` field, which is
|
||||
necessary in producing a fully reproducible build.
|
||||
([@sminnee](https://github.com/sminnee))
|
||||
* [`8597ba4`](https://github.com/npm/npm/commit/8597ba432e91245a1000953b612eb01308178bad)
|
||||
[#12009](https://github.com/npm/npm/issues/12009)
|
||||
Fix a bug in `npm view <packagename> versions` that resulted in bad output if you
|
||||
didn't also pass in `--json`.
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`20125f1`](https://github.com/npm/npm/commit/20125f19b96fd05af63f8c0bd243ffb25780279a)
|
||||
[`a53feac`](https://github.com/npm/npm/commit/a53feac2647f7dc4245f1700dfbdd1aba8745672)
|
||||
[`6cfbae4`](https://github.com/npm/npm/commit/6cfbae403abc3cf690565b09569f71cdd41a8372)
|
||||
[#12485](https://github.com/npm/npm/pull/12485)
|
||||
Refactor how the help summaries for commands are produced, such that we only have
|
||||
one list of command aliases.
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`2ae210c`](https://github.com/npm/npm/commit/2ae210c76ab6fd15fcf15dc1808b01ca0b94fc9e)
|
||||
`read-package-json@2.0.4`:
|
||||
Fix a crash we discovered while fixing up the Windows test suite where if
|
||||
you had a file in your `node_modules` it would cause a crash on Windows
|
||||
(but not MacOS/Linux).
|
||||
|
||||
This makes the error code you get on Windows match that from MacOS/Linux
|
||||
if you try to read a `package.json` from a path that includes a file, not
|
||||
a folder.
|
||||
([@zkat](https://github.com/zkat))
|
||||
|
||||
### v3.8.8 (2016-04-21)
|
||||
|
||||
Hi all! Long time no see! We've been heads-down working through getting
|
||||
[our test suite passing on Windows](https://github.com/npm/npm/pull/11444).
|
||||
Did you know that we have
|
||||
[Windows CI](https://ci.appveyor.com/project/npm/npm) now running over at
|
||||
Appveyor? In the meantime, we've got a bunch of dependency updates, some
|
||||
nice documentation improvements and error messages when your `package.json`
|
||||
contains invalid JSON. (Yeah, I thought we did that last one before too!)
|
||||
|
||||
#### BAD JSON IS BAD
|
||||
|
||||
* [`769e620`](https://github.com/npm/npm/commit/769e6200722d8060b6769e47354032c51cfa85a1)
|
||||
[#12406](https://github.com/npm/npm/pull/12406)
|
||||
Failing to parse the top level `package.json` should be an error.
|
||||
([@watilde](https://github.com/watilde))
|
||||
|
||||
#### DOCUMENTATION
|
||||
|
||||
* [`7d64301`](https://github.com/npm/npm/commit/7d643018af5051c920cc73f17bfe32b7ff86e108)
|
||||
[#12415](https://github.com/npm/npm/pull/12415)
|
||||
Clarify that when configuring client-side certificates for authenticating
|
||||
to non-npm registries that `cert` and `key` are not filesystem paths and should
|
||||
actually include the certificate and key data.
|
||||
([@rvedotrc](https://github.com/rvedotrc))
|
||||
* [`f8539b8`](https://github.com/npm/npm/commit/f8539b8c986e81771ccc8ced7e716718423d3187)
|
||||
[#12324](https://github.com/npm/npm/pull/12324)
|
||||
Describe how `npm run` sets `NODE` and `PATH` in more detail.
|
||||
Note that `npm run` changes `PATH` to include the current node
|
||||
interpreter’s directory.
|
||||
([@addaleax](https://github.com/addaleax))
|
||||
* [`2b57606`](https://github.com/npm/npm/commit/2b57606852a2c2a03e4c4b7dcda85b807619c2cf)
|
||||
[#11461](https://github.com/npm/npm/pull/11461)
|
||||
Clarify the documentation for the package.json homepage field.
|
||||
([@stevemao](https://github.com/stevemao))
|
||||
|
||||
#### TESTS
|
||||
|
||||
* [`b5a0fbb`](https://github.com/npm/npm/commit/b5a0fbb9e1a2c4fb003dd748264571aa6e3c9e70)
|
||||
[#12329](https://github.com/npm/npm/pull/12329)
|
||||
Fix progress config testing to ignore local user configs.
|
||||
Previously, _any_ local setting would cause the tests to fail as
|
||||
they were trying to test what the default values for the progress
|
||||
bar would be in different environments and any explicit setting
|
||||
overrides those defaults.
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`3d195bc`](https://github.com/npm/npm/commit/3d195bc0a72b40df02a5c56e4f3be44152e8222b)
|
||||
The lifecycle-signal test could crash on v0.8 due to its use of `Number.parseInt`, which
|
||||
isn't available in that version of node. Fortunately `global.parseInt` _is_, so
|
||||
we just use that instead.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
#### DEPENDENCY UPDATES
|
||||
|
||||
* [`05a28e3`](https://github.com/npm/npm/commit/05a28e38586082ac4bbf26ee6f863cc8d07054d6)
|
||||
`npm-package-arg@4.1.1`:
|
||||
Under some circumstances `file://` URLs on Windows were not handled correctly.
|
||||
|
||||
Also, stop converting local module/tarballs into full paths in this
|
||||
module. We do already do that in `realize-package-specifier`, which is
|
||||
more appropriate as it knows what package we're installing relative to.
|
||||
([@zkat](https://github.com/zkat))
|
||||
* [`ada2e93`](https://github.com/npm/npm/commit/ada2e93e8b276000150a9aa93fff69ec366e03d6)
|
||||
`realize-package-specifier@3.0.3`:
|
||||
Require the new `npm-package-arg`, plus fix a case where specifiers that were
|
||||
maybe a tag, maybe a local filename were resolved differently than those that were
|
||||
definitely a local filename.
|
||||
([@zkat](https://github.com/zkat)) ([@iarna](https://github.com/iarna))
|
||||
* [`adc515b`](https://github.com/npm/npm/commit/adc515b22775871386cd62390079fb4bf8e1714a)
|
||||
`fs-vacuum@1.2.9`:
|
||||
A fix for AIX where a non-empty directory can cause `fs.rmDir` to fail with `EEXIST` instead of `ENOTEMPTY`
|
||||
and three new tests
|
||||
([@richardlau](https://github.com/richardlau))
|
||||
|
||||
Code cleanup, CI & dependency updates.
|
||||
([@othiym23](https://github.com/othiym23))
|
||||
* [`ef53a46`](https://github.com/npm/npm/commit/ef53a46906ce872a4541b605dd42a563cc26e614)
|
||||
`tap@5.7.1`
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
* [`df1f2e4`](https://github.com/npm/npm/commit/df1f2e4838b4d7ea2ea2321a95ae868c0ec0a520)
|
||||
`request@2.72.0`:
|
||||
Fix crashes when response headers indicate gzipped content but the body is
|
||||
empty.
|
||||
Add support for the deflate content encoding.
|
||||
([@simov](https://github.com/simov))
|
||||
* [`776c599`](https://github.com/npm/npm/commit/776c599b204632aca9d29fd92ea5c4f099fdea9f)
|
||||
`readable-stream@2.1.0`:
|
||||
Adds READABLE_STREAM env var that, if set to `disable`, will make
|
||||
`readable-stream` use the local native node streams instead.
|
||||
([@calvinmetcalf](https://github.com/calvinmetcalf))
|
||||
* [`10d6d55`](https://github.com/npm/npm/commit/10d6d5547354fcf50e930c7932ba4d63c0b6009c)
|
||||
`normalize-git-url@3.0.2`:
|
||||
Add support `git+file://` type URLs.
|
||||
([@zkat](https://github.com/zkat))
|
||||
* [`75017ae`](https://github.com/npm/npm/commit/75017aeecec69a1efd546df908aa5befc4467f36)
|
||||
`lodash.union@4.3.0`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
|
||||
### v3.8.7 (2016-04-07)
|
||||
|
||||
#### IMPROVED DIAGNOSTICS
|
||||
|
||||
* [`38cf79f`](https://github.com/npm/npm/commit/38cf79ffa564ef5cb6677b476e06d0e45351592a)
|
||||
[#12083](https://github.com/npm/npm/pull/12083)
|
||||
If you `ignore-scripts` to disable lifecycles, this makes npm report when it skips running
|
||||
a script.
|
||||
([@bfred-it](https://github.com/bfred-it))
|
||||
|
||||
#### IMPROVE AUTO-INCLUDES
|
||||
|
||||
* [`c615182`](https://github.com/npm/npm/commit/c615182c8b47e418338eb1317b99bb66987cda54)
|
||||
[#11995](https://github.com/npm/npm/pull/11995)
|
||||
There were bugs where modules whose names matched the special files that npm always
|
||||
includes would be included, for example, the `history` package was always included.
|
||||
|
||||
With `npm@3` such extraneously bundled modules would not be ordinarily
|
||||
used, as things in `node_modules` in packages are ignored entirely if the
|
||||
package isn't marked as bundling modules.
|
||||
|
||||
Because of this `npm@3` behavior, the `files-and-ignores` test failed to catch this as
|
||||
it was testing _install output_ not what got packed. That has also been fixed.
|
||||
([@glenjamin](https://github.com/glenjamin))
|
||||
|
||||
#### DOCUMENTATION UPDATES
|
||||
|
||||
* [`823d9df`](https://github.com/npm/npm/commit/823d9dfa91d7086a26620f007aee4e3cd77b6153)
|
||||
[#12107](https://github.com/npm/npm/pull/12107)
|
||||
In the command summary for `adduser` mention that `login` is an alias.
|
||||
([@gnerkus](https://github.com/gnerkus))
|
||||
* [`7aaf47e`](https://github.com/npm/npm/commit/7aaf47e124c45dde72c961638b770ee535fb2776)
|
||||
[#12244](https://github.com/npm/npm/pull/12244)
|
||||
Update the README to suggest npm@3 for Windows users. Also add a reference to
|
||||
[Microsoft's npm upgrade tool](https://github.com/felixrieseberg/npm-windows-upgrade).
|
||||
([@felixrieseberg](https://github.com/felixrieseberg))
|
||||
|
||||
#### DEPENDENCY UPDATES
|
||||
|
||||
* [`486bbc0`](https://github.com/npm/npm/commit/486bbc0e1b101f847e890e6f1925dc8cb253cf3e)
|
||||
`request@2.70.0`
|
||||
([@simov](https://github.com/simov))
|
||||
* [`b1aff34`](https://github.com/npm/npm/commit/b1aff346fc41f13e3306b437e1831942aacf2f54)
|
||||
`lodash.keys@4.0.6`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
|
||||
### v3.8.6 (2016-03-31)
|
||||
|
||||
Heeeeeey y'all.
|
||||
|
13
deps/npm/README.md
vendored
13
deps/npm/README.md
vendored
@ -81,13 +81,12 @@ for testing, or running stuff without actually installing npm itself.)
|
||||
|
||||
## Windows Install or Upgrade
|
||||
|
||||
You can download a zip file from <https://github.com/npm/npm/releases>, and
|
||||
unpack it in the `node_modules\npm\` folder inside node's installation folder.
|
||||
|
||||
To upgrade to npm 2, follow the Windows upgrade instructions in
|
||||
the npm Troubleshooting Guide:
|
||||
|
||||
<https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows>
|
||||
Many improvements for Windows users have been made in npm 3 - you will have a better
|
||||
experience if you run a recent version of npm. To upgrade, either use [Microsoft's
|
||||
upgrade tool](https://github.com/felixrieseberg/npm-windows-upgrade),
|
||||
[download a new version of Node](http://nodejs.org/download/),
|
||||
or follow the Windows upgrade instructions in the
|
||||
[npm Troubleshooting Guide](https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows).
|
||||
|
||||
If that's not fancy enough for you, then you can fetch the code with
|
||||
git, and mess with it directly.
|
||||
|
4
deps/npm/doc/cli/npm-run-script.md
vendored
4
deps/npm/doc/cli/npm-run-script.md
vendored
@ -40,6 +40,10 @@ you should write:
|
||||
|
||||
instead of `"scripts": {"test": "node_modules/.bin/tap test/\*.js"}` to run your tests.
|
||||
|
||||
`npm run` sets the `NODE` environment variable to the `node` executable with
|
||||
which `npm` is executed, and adds the directory within which it resides to the
|
||||
`PATH`, too.
|
||||
|
||||
If you try to run a script without having a `node_modules` directory and it fails,
|
||||
you will be given a warning to run `npm install`, just in case you've forgotten.
|
||||
|
||||
|
6
deps/npm/doc/files/package.json.md
vendored
6
deps/npm/doc/files/package.json.md
vendored
@ -70,12 +70,6 @@ discover your package as it's listed in `npm search`.
|
||||
|
||||
The url to the project homepage.
|
||||
|
||||
**NOTE**: This is *not* the same as "url". If you put a "url" field,
|
||||
then the registry will think it's a redirection to your package that has
|
||||
been published somewhere else, and spit at you.
|
||||
|
||||
Literally. Spit. I'm so not kidding.
|
||||
|
||||
## bugs
|
||||
|
||||
The url to your project's issue tracker and / or the email address to which
|
||||
|
14
deps/npm/doc/misc/npm-config.md
vendored
14
deps/npm/doc/misc/npm-config.md
vendored
@ -236,7 +236,12 @@ explicitly used, and that only GET requests use the cache.
|
||||
* Default: `null`
|
||||
* Type: String
|
||||
|
||||
A client certificate to pass when accessing the registry.
|
||||
A client certificate to pass when accessing the registry. Values should be in
|
||||
PEM format with newlines replaced by the string "\n". For example:
|
||||
|
||||
cert="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
|
||||
|
||||
It is _not_ the path to a certificate file (and there is no "certfile" option).
|
||||
|
||||
### color
|
||||
|
||||
@ -501,7 +506,12 @@ change. Only the output from `npm ls --json` is currently valid.
|
||||
* Default: `null`
|
||||
* Type: String
|
||||
|
||||
A client key to pass when accessing the registry.
|
||||
A client key to pass when accessing the registry. Values should be in PEM
|
||||
format with newlines replaced by the string "\n". For example:
|
||||
|
||||
key="-----BEGIN PRIVATE KEY-----\nXXXX\nXXXX\n-----END PRIVATE KEY-----"
|
||||
|
||||
It is _not_ the path to a key file (and there is no "keyfile" option).
|
||||
|
||||
### legacy-bundling
|
||||
|
||||
|
13
deps/npm/html/doc/README.html
vendored
13
deps/npm/html/doc/README.html
vendored
@ -57,11 +57,12 @@ arbitrary config keys using the <code>./configure --key=val ...</code>, and then
|
||||
run npm commands by doing <code>node cli.js <cmd> <args></code>. (This is helpful
|
||||
for testing, or running stuff without actually installing npm itself.)</p>
|
||||
<h2 id="windows-install-or-upgrade">Windows Install or Upgrade</h2>
|
||||
<p>You can download a zip file from <a href="https://github.com/npm/npm/releases">https://github.com/npm/npm/releases</a>, and
|
||||
unpack it in the <code>node_modules\npm\</code> folder inside node's installation folder.</p>
|
||||
<p>To upgrade to npm 2, follow the Windows upgrade instructions in
|
||||
the npm Troubleshooting Guide:</p>
|
||||
<p><a href="https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows">https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows</a></p>
|
||||
<p>Many improvements for Windows users have been made in npm 3 - you will have a better
|
||||
experience if you run a recent version of npm. To upgrade, either use <a href="https://github.com/felixrieseberg/npm-windows-upgrade">Microsoft's
|
||||
upgrade tool</a>,
|
||||
<a href="http://nodejs.org/download/">download a new version of Node</a>,
|
||||
or follow the Windows upgrade instructions in the
|
||||
<a href="https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows">npm Troubleshooting Guide</a>.</p>
|
||||
<p>If that's not fancy enough for you, then you can fetch the code with
|
||||
git, and mess with it directly.</p>
|
||||
<h2 id="installing-on-cygwin">Installing on Cygwin</h2>
|
||||
@ -125,5 +126,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.8.6</p>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-access — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
@ -72,5 +72,5 @@ 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.8.6</p>
|
||||
<p id="footer">npm-adduser — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-bin — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
@ -55,5 +55,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.8.6</p>
|
||||
<p id="footer">npm-bugs — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-build — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-bundle — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-cache — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-completion.html
vendored
2
deps/npm/html/doc/cli/npm-completion.html
vendored
@ -43,5 +43,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.8.6</p>
|
||||
<p id="footer">npm-completion — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-config.html
vendored
2
deps/npm/html/doc/cli/npm-config.html
vendored
@ -67,5 +67,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.8.6</p>
|
||||
<p id="footer">npm-config — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
@ -61,5 +61,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.8.6</p>
|
||||
<p id="footer">npm-dedupe — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-deprecate — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
@ -87,5 +87,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.8.6</p>
|
||||
<p id="footer">npm-dist-tag — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-docs — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-edit — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-explore — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
@ -45,5 +45,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.8.6</p>
|
||||
<p id="footer">npm-help-search — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-help.html
vendored
2
deps/npm/html/doc/cli/npm-help.html
vendored
@ -50,5 +50,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.8.6</p>
|
||||
<p id="footer">npm-help — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-init — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
@ -42,4 +42,4 @@ takes exactly the same arguments as <code>npm install</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-install-test — npm@3.8.6</p>
|
||||
<p id="footer">npm-install-test — npm@3.8.9</p>
|
||||
|
2
deps/npm/html/doc/cli/npm-install.html
vendored
2
deps/npm/html/doc/cli/npm-install.html
vendored
@ -312,5 +312,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.8.6</p>
|
||||
<p id="footer">npm-install — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-link — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-logout.html
vendored
2
deps/npm/html/doc/cli/npm-logout.html
vendored
@ -51,5 +51,5 @@ it takes precedence.</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.8.6</p>
|
||||
<p id="footer">npm-logout — npm@3.8.9</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.8.6 /path/to/npm
|
||||
<pre><code>npm@3.8.9 /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.8.6</p>
|
||||
<p id="footer">npm-ls — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
@ -116,5 +116,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.8.6</p>
|
||||
<p id="footer">npm-outdated — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-owner.html
vendored
2
deps/npm/html/doc/cli/npm-owner.html
vendored
@ -51,5 +51,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.8.6</p>
|
||||
<p id="footer">npm-owner — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-pack — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-ping — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-prefix — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-prune — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-publish.html
vendored
2
deps/npm/html/doc/cli/npm-publish.html
vendored
@ -72,5 +72,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.8.6</p>
|
||||
<p id="footer">npm-publish — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-rebuild — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-repo — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-restart — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-root — npm@3.8.9</p>
|
||||
|
||||
|
5
deps/npm/html/doc/cli/npm-run-script.html
vendored
5
deps/npm/html/doc/cli/npm-run-script.html
vendored
@ -38,6 +38,9 @@ prefix. For example, if there is a <code>devDependency</code> on <code>tap</code
|
||||
you should write:</p>
|
||||
<pre><code>"scripts": {"test": "tap test/\*.js"}
|
||||
</code></pre><p>instead of <code>"scripts": {"test": "node_modules/.bin/tap test/\*.js"}</code> to run your tests.</p>
|
||||
<p><code>npm run</code> sets the <code>NODE</code> environment variable to the <code>node</code> executable with
|
||||
which <code>npm</code> is executed, and adds the directory within which it resides to the
|
||||
<code>PATH</code>, too.</p>
|
||||
<p>If you try to run a script without having a <code>node_modules</code> directory and it fails,
|
||||
you will be given a warning to run <code>npm install</code>, just in case you've forgotten.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
@ -60,5 +63,5 @@ you will be given a warning to run <code>npm install</code>, just in case you
|
||||
<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.8.6</p>
|
||||
<p id="footer">npm-run-script — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-search.html
vendored
2
deps/npm/html/doc/cli/npm-search.html
vendored
@ -57,5 +57,5 @@ Pass a different registry url such as the default above in order to override thi
|
||||
<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.8.6</p>
|
||||
<p id="footer">npm-search — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-shrinkwrap — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-star — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-stars — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-start.html
vendored
2
deps/npm/html/doc/cli/npm-start.html
vendored
@ -39,5 +39,5 @@ more details.</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-start — npm@3.8.6</p>
|
||||
<p id="footer">npm-start — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-stop — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-tag — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-team — npm@3.8.9</p>
|
||||
|
2
deps/npm/html/doc/cli/npm-test.html
vendored
2
deps/npm/html/doc/cli/npm-test.html
vendored
@ -38,5 +38,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.8.6</p>
|
||||
<p id="footer">npm-test — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-uninstall — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-unpublish — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-update.html
vendored
2
deps/npm/html/doc/cli/npm-update.html
vendored
@ -118,5 +118,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.8.6</p>
|
||||
<p id="footer">npm-update — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-version.html
vendored
2
deps/npm/html/doc/cli/npm-version.html
vendored
@ -100,5 +100,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.8.6</p>
|
||||
<p id="footer">npm-version — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-view.html
vendored
2
deps/npm/html/doc/cli/npm-view.html
vendored
@ -86,5 +86,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.8.6</p>
|
||||
<p id="footer">npm-view — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-whoami — npm@3.8.9</p>
|
||||
|
||||
|
6
deps/npm/html/doc/cli/npm.html
vendored
6
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.8.6</p>
|
||||
<p>3.8.9</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
|
||||
@ -126,7 +126,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>
|
||||
@ -150,5 +150,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.8.6</p>
|
||||
<p id="footer">npm — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npm-folders.html
vendored
2
deps/npm/html/doc/files/npm-folders.html
vendored
@ -182,5 +182,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.8.6</p>
|
||||
<p id="footer">npm-folders — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npm-global.html
vendored
2
deps/npm/html/doc/files/npm-global.html
vendored
@ -182,5 +182,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.8.6</p>
|
||||
<p id="footer">npm-folders — npm@3.8.9</p>
|
||||
|
||||
|
6
deps/npm/html/doc/files/npm-json.html
vendored
6
deps/npm/html/doc/files/npm-json.html
vendored
@ -62,10 +62,6 @@ package, as it's listed in <code>npm search</code>.</p>
|
||||
discover your package as it's listed in <code>npm search</code>.</p>
|
||||
<h2 id="homepage">homepage</h2>
|
||||
<p>The url to the project homepage.</p>
|
||||
<p><strong>NOTE</strong>: This is <em>not</em> the same as "url". If you put a "url" field,
|
||||
then the registry will think it's a redirection to your package that has
|
||||
been published somewhere else, and spit at you.</p>
|
||||
<p>Literally. Spit. I'm so not kidding.</p>
|
||||
<h2 id="bugs">bugs</h2>
|
||||
<p>The url to your project's issue tracker and / or the email address to which
|
||||
issues should be reported. These are helpful for people who encounter issues
|
||||
@ -583,5 +579,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.8.6</p>
|
||||
<p id="footer">package.json — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npmrc — npm@3.8.9</p>
|
||||
|
||||
|
6
deps/npm/html/doc/files/package.json.html
vendored
6
deps/npm/html/doc/files/package.json.html
vendored
@ -62,10 +62,6 @@ package, as it's listed in <code>npm search</code>.</p>
|
||||
discover your package as it's listed in <code>npm search</code>.</p>
|
||||
<h2 id="homepage">homepage</h2>
|
||||
<p>The url to the project homepage.</p>
|
||||
<p><strong>NOTE</strong>: This is <em>not</em> the same as "url". If you put a "url" field,
|
||||
then the registry will think it's a redirection to your package that has
|
||||
been published somewhere else, and spit at you.</p>
|
||||
<p>Literally. Spit. I'm so not kidding.</p>
|
||||
<h2 id="bugs">bugs</h2>
|
||||
<p>The url to your project's issue tracker and / or the email address to which
|
||||
issues should be reported. These are helpful for people who encounter issues
|
||||
@ -583,5 +579,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.8.6</p>
|
||||
<p id="footer">package.json — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-index — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
@ -153,5 +153,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.8.6</p>
|
||||
<p id="footer">npm-coding-style — npm@3.8.9</p>
|
||||
|
||||
|
12
deps/npm/html/doc/misc/npm-config.html
vendored
12
deps/npm/html/doc/misc/npm-config.html
vendored
@ -200,7 +200,10 @@ explicitly used, and that only GET requests use the cache.</p>
|
||||
<li>Default: <code>null</code></li>
|
||||
<li>Type: String</li>
|
||||
</ul>
|
||||
<p>A client certificate to pass when accessing the registry.</p>
|
||||
<p>A client certificate to pass when accessing the registry. Values should be in
|
||||
PEM format with newlines replaced by the string "\n". For example:</p>
|
||||
<pre><code>cert="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
|
||||
</code></pre><p>It is <em>not</em> the path to a certificate file (and there is no "certfile" option).</p>
|
||||
<h3 id="color">color</h3>
|
||||
<ul>
|
||||
<li>Default: true</li>
|
||||
@ -434,7 +437,10 @@ change. Only the output from <code>npm ls --json</code> is currently valid.</p>
|
||||
<li>Default: <code>null</code></li>
|
||||
<li>Type: String</li>
|
||||
</ul>
|
||||
<p>A client key to pass when accessing the registry.</p>
|
||||
<p>A client key to pass when accessing the registry. Values should be in PEM
|
||||
format with newlines replaced by the string "\n". For example:</p>
|
||||
<pre><code>key="-----BEGIN PRIVATE KEY-----\nXXXX\nXXXX\n-----END PRIVATE KEY-----"
|
||||
</code></pre><p>It is <em>not</em> the path to a key file (and there is no "keyfile" option).</p>
|
||||
<h3 id="legacy-bundling">legacy-bundling</h3>
|
||||
<ul>
|
||||
<li>Default: false</li>
|
||||
@ -856,5 +862,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.8.6</p>
|
||||
<p id="footer">npm-config — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-developers.html
vendored
2
deps/npm/html/doc/misc/npm-developers.html
vendored
@ -194,5 +194,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.8.6</p>
|
||||
<p id="footer">npm-developers — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-disputes — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-index.html
vendored
2
deps/npm/html/doc/misc/npm-index.html
vendored
@ -162,4 +162,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-index — npm@3.8.6</p>
|
||||
<p id="footer">npm-index — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-orgs — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-registry — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-scope — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">npm-scripts — npm@3.8.9</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.8.6</p>
|
||||
<p id="footer">removing-npm — npm@3.8.9</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/semver.html
vendored
2
deps/npm/html/doc/misc/semver.html
vendored
@ -302,5 +302,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.8.6</p>
|
||||
<p id="footer">semver — npm@3.8.9</p>
|
||||
|
||||
|
6
deps/npm/lib/adduser.js
vendored
6
deps/npm/lib/adduser.js
vendored
@ -4,13 +4,17 @@ var log = require('npmlog')
|
||||
var npm = require('./npm.js')
|
||||
var read = require('read')
|
||||
var userValidate = require('npm-user-validate')
|
||||
var usage = require('./utils/usage')
|
||||
var crypto
|
||||
|
||||
try {
|
||||
crypto = require('crypto')
|
||||
} catch (ex) {}
|
||||
|
||||
adduser.usage = 'npm adduser [--registry=url] [--scope=@orgname] [--always-auth]'
|
||||
adduser.usage = usage(
|
||||
'adduser',
|
||||
'npm adduser [--registry=url] [--scope=@orgname] [--always-auth]'
|
||||
)
|
||||
|
||||
function adduser (args, cb) {
|
||||
if (!crypto) {
|
||||
|
8
deps/npm/lib/bugs.js
vendored
8
deps/npm/lib/bugs.js
vendored
@ -1,11 +1,15 @@
|
||||
module.exports = bugs
|
||||
|
||||
bugs.usage = 'npm bugs [<pkgname>]'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
var log = require('npmlog')
|
||||
var opener = require('opener')
|
||||
var fetchPackageMetadata = require('./fetch-package-metadata.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
bugs.usage = usage(
|
||||
'bugs',
|
||||
'npm bugs [<pkgname>]'
|
||||
)
|
||||
|
||||
bugs.completion = function (opts, cb) {
|
||||
// FIXME: there used to be registry completion here, but it stopped making
|
||||
|
20
deps/npm/lib/config.js
vendored
20
deps/npm/lib/config.js
vendored
@ -1,14 +1,5 @@
|
||||
|
||||
module.exports = config
|
||||
|
||||
config.usage = 'npm config set <key> <value>' +
|
||||
'\nnpm config get [<key>]' +
|
||||
'\nnpm config delete <key>' +
|
||||
'\nnpm config list' +
|
||||
'\nnpm config edit' +
|
||||
'\nnpm set <key> <value>' +
|
||||
'\nnpm get [<key>]'
|
||||
|
||||
var log = require('npmlog')
|
||||
var npm = require('./npm.js')
|
||||
var npmconf = require('./config/core.js')
|
||||
@ -19,7 +10,18 @@ var ini = require('ini')
|
||||
var editor = require('editor')
|
||||
var os = require('os')
|
||||
var umask = require('./utils/umask')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
config.usage = usage(
|
||||
'config',
|
||||
'npm config set <key> <value>' +
|
||||
'\nnpm config get [<key>]' +
|
||||
'\nnpm config delete <key>' +
|
||||
'\nnpm config list' +
|
||||
'\nnpm config edit' +
|
||||
'\nnpm set <key> <value>' +
|
||||
'\nnpm get [<key>]'
|
||||
)
|
||||
config.completion = function (opts, cb) {
|
||||
var argv = opts.conf.argv.remain
|
||||
if (argv[1] !== 'config') argv.unshift('config')
|
||||
|
3
deps/npm/lib/config/cmd-list.js
vendored
3
deps/npm/lib/config/cmd-list.js
vendored
@ -16,7 +16,8 @@ var shorthands = {
|
||||
'tst': 'test',
|
||||
't': 'test',
|
||||
'ddp': 'dedupe',
|
||||
'v': 'view'
|
||||
'v': 'view',
|
||||
'run': 'run-script'
|
||||
}
|
||||
|
||||
var affordances = {
|
||||
|
6
deps/npm/lib/dedupe.js
vendored
6
deps/npm/lib/dedupe.js
vendored
@ -19,11 +19,15 @@ var sortActions = require('./install/diff-trees.js').sortActions
|
||||
var moduleName = require('./utils/module-name.js')
|
||||
var packageId = require('./utils/package-id.js')
|
||||
var childPath = require('./utils/child-path.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
module.exports = dedupe
|
||||
module.exports.Deduper = Deduper
|
||||
|
||||
dedupe.usage = 'npm dedupe'
|
||||
dedupe.usage = usage(
|
||||
'dedupe',
|
||||
'npm dedupe'
|
||||
)
|
||||
|
||||
function dedupe (args, cb) {
|
||||
validate('AF', arguments)
|
||||
|
10
deps/npm/lib/dist-tag.js
vendored
10
deps/npm/lib/dist-tag.js
vendored
@ -7,10 +7,14 @@ var semver = require('semver')
|
||||
var npm = require('./npm.js')
|
||||
var mapToRegistry = require('./utils/map-to-registry.js')
|
||||
var readLocalPkg = require('./utils/read-local-package.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
distTag.usage = 'npm dist-tag add <pkg>@<version> [<tag>]' +
|
||||
'\nnpm dist-tag rm <pkg> <tag>' +
|
||||
'\nnpm dist-tag ls [<pkg>]'
|
||||
distTag.usage = usage(
|
||||
'dist-tag',
|
||||
'npm dist-tag add <pkg>@<version> [<tag>]' +
|
||||
'\nnpm dist-tag rm <pkg> <tag>' +
|
||||
'\nnpm dist-tag ls [<pkg>]'
|
||||
)
|
||||
|
||||
distTag.completion = function (opts, cb) {
|
||||
var argv = opts.conf.argv.remain
|
||||
|
9
deps/npm/lib/docs.js
vendored
9
deps/npm/lib/docs.js
vendored
@ -1,13 +1,16 @@
|
||||
module.exports = docs
|
||||
|
||||
docs.usage = 'npm docs <pkgname>' +
|
||||
'\nnpm docs .'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
var opener = require('opener')
|
||||
var log = require('npmlog')
|
||||
var fetchPackageMetadata = require('./fetch-package-metadata.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
docs.usage = usage(
|
||||
'docs',
|
||||
'npm docs <pkgname>' +
|
||||
'\nnpm docs .'
|
||||
)
|
||||
docs.completion = function (opts, cb) {
|
||||
// FIXME: there used to be registry completion here, but it stopped making
|
||||
// sense somewhere around 50,000 packages on the registry
|
||||
|
7
deps/npm/lib/fetch-package-metadata.js
vendored
7
deps/npm/lib/fetch-package-metadata.js
vendored
@ -111,9 +111,10 @@ function fetchNamedPackageData (dep, next) {
|
||||
npm.registry.get(url, {auth: auth}, pulseTillDone('fetchMetadata', iferr(next, pickVersionFromRegistryDocument)))
|
||||
}
|
||||
function returnAndAddMetadata (pkg) {
|
||||
delete pkg._from
|
||||
delete pkg._resolved
|
||||
delete pkg._shasum
|
||||
pkg._from = dep.raw
|
||||
pkg._resolved = pkg.dist.tarball
|
||||
pkg._shasum = pkg.dist.shasum
|
||||
|
||||
next(null, pkg)
|
||||
}
|
||||
function pickVersionFromRegistryDocument (pkg) {
|
||||
|
9
deps/npm/lib/install-test.js
vendored
9
deps/npm/lib/install-test.js
vendored
@ -6,10 +6,13 @@
|
||||
module.exports = installTest
|
||||
var install = require('./install.js')
|
||||
var test = require('./test.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
installTest.usage = '\nnpm install-test [args]' +
|
||||
'\nSame args as `npm install`' +
|
||||
'\n\nalias: npm it'
|
||||
installTest.usage = usage(
|
||||
'install-test',
|
||||
'\nnpm install-test [args]' +
|
||||
'\nSame args as `npm install`'
|
||||
)
|
||||
|
||||
installTest.completion = install.completion
|
||||
|
||||
|
31
deps/npm/lib/install.js
vendored
31
deps/npm/lib/install.js
vendored
@ -15,18 +15,22 @@
|
||||
module.exports = install
|
||||
module.exports.Installer = Installer
|
||||
|
||||
install.usage = '\nnpm install (with no args, in package dir)' +
|
||||
'\nnpm install [<@scope>/]<pkg>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<tag>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<version>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<version range>' +
|
||||
'\nnpm install <folder>' +
|
||||
'\nnpm install <tarball file>' +
|
||||
'\nnpm install <tarball url>' +
|
||||
'\nnpm install <git:// url>' +
|
||||
'\nnpm install <github username>/<github project>' +
|
||||
'\n\nalias: npm i' +
|
||||
'\ncommon options: [--save|--save-dev|--save-optional] [--save-exact]'
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
install.usage = usage(
|
||||
'install',
|
||||
'\nnpm install (with no args, in package dir)' +
|
||||
'\nnpm install [<@scope>/]<pkg>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<tag>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<version>' +
|
||||
'\nnpm install [<@scope>/]<pkg>@<version range>' +
|
||||
'\nnpm install <folder>' +
|
||||
'\nnpm install <tarball file>' +
|
||||
'\nnpm install <tarball url>' +
|
||||
'\nnpm install <git:// url>' +
|
||||
'\nnpm install <github username>/<github project>',
|
||||
'[--save|--save-dev|--save-optional] [--save-exact]'
|
||||
)
|
||||
|
||||
install.completion = function (opts, cb) {
|
||||
validate('OF', arguments)
|
||||
@ -578,6 +582,9 @@ Installer.prototype.readLocalPackageData = function (cb) {
|
||||
readPackageTree(self.where, iferr(cb, function (currentTree) {
|
||||
self.currentTree = currentTree
|
||||
self.currentTree.warnings = []
|
||||
if (currentTree.error && currentTree.error.code === 'EJSONPARSE') {
|
||||
return cb(currentTree.error)
|
||||
}
|
||||
if (!self.noPackageJsonOk && !currentTree.package) {
|
||||
log.error('install', "Couldn't read dependencies")
|
||||
var er = new Error("ENOENT, open '" + path.join(self.where, 'package.json') + "'")
|
||||
|
9
deps/npm/lib/link.js
vendored
9
deps/npm/lib/link.js
vendored
@ -10,12 +10,15 @@ var chain = require('slide').chain
|
||||
var path = require('path')
|
||||
var build = require('./build.js')
|
||||
var npa = require('npm-package-arg')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
module.exports = link
|
||||
|
||||
link.usage = 'npm link (in package dir)' +
|
||||
'\nnpm link [<@scope>/]<pkg>[@<version>]' +
|
||||
'\n\nalias: npm ln'
|
||||
link.usage = usage(
|
||||
'link',
|
||||
'npm link (in package dir)' +
|
||||
'\nnpm link [<@scope>/]<pkg>[@<version>]'
|
||||
)
|
||||
|
||||
link.completion = function (opts, cb) {
|
||||
var dir = npm.globalDir
|
||||
|
7
deps/npm/lib/ls.js
vendored
7
deps/npm/lib/ls.js
vendored
@ -19,9 +19,12 @@ var npm = require('./npm.js')
|
||||
var mutateIntoLogicalTree = require('./install/mutate-into-logical-tree.js')
|
||||
var recalculateMetadata = require('./install/deps.js').recalculateMetadata
|
||||
var packageId = require('./utils/package-id.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
ls.usage = 'npm ls [[<@scope>/]<pkg> ...]' +
|
||||
'\n\naliases: list, la, ll'
|
||||
ls.usage = usage(
|
||||
'ls',
|
||||
'npm ls [[<@scope>/]<pkg> ...]'
|
||||
)
|
||||
|
||||
ls.completion = require('./utils/completion/installed-deep.js')
|
||||
|
||||
|
11
deps/npm/lib/owner.js
vendored
11
deps/npm/lib/owner.js
vendored
@ -1,14 +1,17 @@
|
||||
module.exports = owner
|
||||
|
||||
owner.usage = 'npm owner add <user> [<@scope>/]<pkg>' +
|
||||
'\nnpm owner rm <user> [<@scope>/]<pkg>' +
|
||||
'\nnpm owner ls [<@scope>/]<pkg>'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
var log = require('npmlog')
|
||||
var mapToRegistry = require('./utils/map-to-registry.js')
|
||||
var readLocalPkg = require('./utils/read-local-package.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
owner.usage = usage(
|
||||
'owner',
|
||||
'npm owner add <user> [<@scope>/]<pkg>' +
|
||||
'\nnpm owner rm <user> [<@scope>/]<pkg>' +
|
||||
'\nnpm owner ls [<@scope>/]<pkg>'
|
||||
)
|
||||
owner.completion = function (opts, cb) {
|
||||
var argv = opts.conf.argv.remain
|
||||
if (argv.length > 4) return cb()
|
||||
|
6
deps/npm/lib/rebuild.js
vendored
6
deps/npm/lib/rebuild.js
vendored
@ -6,8 +6,12 @@ var semver = require('semver')
|
||||
var log = require('npmlog')
|
||||
var npm = require('./npm.js')
|
||||
var npa = require('npm-package-arg')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
rebuild.usage = 'npm rebuild [[<@scope>/<name>]...]'
|
||||
rebuild.usage = usage(
|
||||
'rebuild',
|
||||
'npm rebuild [[<@scope>/<name>]...]'
|
||||
)
|
||||
|
||||
rebuild.completion = require('./utils/completion/installed-deep.js')
|
||||
|
||||
|
7
deps/npm/lib/run-script.js
vendored
7
deps/npm/lib/run-script.js
vendored
@ -6,9 +6,12 @@ var path = require('path')
|
||||
var readJson = require('read-package-json')
|
||||
var log = require('npmlog')
|
||||
var chain = require('slide').chain
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
runScript.usage = 'npm run-script <command> [-- <args>...]' +
|
||||
'\n\nalias: npm run'
|
||||
runScript.usage = usage(
|
||||
'run-script',
|
||||
'npm run-script <command> [-- <args>...]'
|
||||
)
|
||||
|
||||
runScript.completion = function (opts, cb) {
|
||||
// see if there's already a package specified.
|
||||
|
7
deps/npm/lib/search.js
vendored
7
deps/npm/lib/search.js
vendored
@ -4,9 +4,12 @@ module.exports = exports = search
|
||||
var npm = require('./npm.js')
|
||||
var columnify = require('columnify')
|
||||
var updateIndex = require('./cache/update-index.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
search.usage = 'npm search [--long] [search terms ...]' +
|
||||
'\n\naliases: s, se'
|
||||
search.usage = usage(
|
||||
'search',
|
||||
'npm search [--long] [search terms ...]'
|
||||
)
|
||||
|
||||
search.completion = function (opts, cb) {
|
||||
var compl = {}
|
||||
|
8
deps/npm/lib/star.js
vendored
8
deps/npm/lib/star.js
vendored
@ -4,9 +4,13 @@ var npm = require('./npm.js')
|
||||
var log = require('npmlog')
|
||||
var asyncMap = require('slide').asyncMap
|
||||
var mapToRegistry = require('./utils/map-to-registry.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
star.usage = 'npm star [<pkg>...]\n' +
|
||||
'npm unstar [<pkg>...]'
|
||||
star.usage = usage(
|
||||
'star',
|
||||
'npm star [<pkg>...]\n' +
|
||||
'npm unstar [<pkg>...]'
|
||||
)
|
||||
|
||||
star.completion = function (opts, cb) {
|
||||
// FIXME: there used to be registry completion here, but it stopped making
|
||||
|
9
deps/npm/lib/uninstall.js
vendored
9
deps/npm/lib/uninstall.js
vendored
@ -4,9 +4,6 @@
|
||||
module.exports = uninstall
|
||||
module.exports.Uninstaller = Uninstaller
|
||||
|
||||
uninstall.usage = 'npm uninstall [<@scope>/]<pkg>[@<version>]... [--save|--save-dev|--save-optional]' +
|
||||
'\n\naliases: remove, rm, r, un, unlink'
|
||||
|
||||
var util = require('util')
|
||||
var path = require('path')
|
||||
var validate = require('aproba')
|
||||
@ -18,6 +15,12 @@ var getSaveType = require('./install/save.js').getSaveType
|
||||
var removeDeps = require('./install/deps.js').removeDeps
|
||||
var loadExtraneous = require('./install/deps.js').loadExtraneous
|
||||
var log = require('npmlog')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
uninstall.usage = usage(
|
||||
'uninstall',
|
||||
'npm uninstall [<@scope>/]<pkg>[@<version>]... [--save|--save-dev|--save-optional]'
|
||||
)
|
||||
|
||||
uninstall.completion = require('./utils/completion/installed-shallow.js')
|
||||
|
||||
|
8
deps/npm/lib/update.js
vendored
8
deps/npm/lib/update.js
vendored
@ -1,12 +1,16 @@
|
||||
module.exports = update
|
||||
|
||||
update.usage = 'npm update [-g] [<pkg>...]'
|
||||
|
||||
var url = require('url')
|
||||
var log = require('npmlog')
|
||||
var chain = require('slide').chain
|
||||
var npm = require('./npm.js')
|
||||
var Installer = require('./install.js').Installer
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
update.usage = usage(
|
||||
'update',
|
||||
'npm update [-g] [<pkg>...]'
|
||||
)
|
||||
|
||||
update.completion = npm.commands.outdated.completion
|
||||
|
||||
|
10
deps/npm/lib/utils/lifecycle.js
vendored
10
deps/npm/lib/utils/lifecycle.js
vendored
@ -13,6 +13,7 @@ var Stream = require('stream').Stream
|
||||
var PATH = 'PATH'
|
||||
var uidNumber = require('uid-number')
|
||||
var umask = require('./umask')
|
||||
var usage = require('./usage')
|
||||
|
||||
// windows calls it's path 'Path' usually, but this is not guaranteed.
|
||||
if (process.platform === 'win32') {
|
||||
@ -46,7 +47,12 @@ function lifecycle (pkg, stage, wd, unsafe, failOk, cb) {
|
||||
if (!pkg) return cb(new Error('Invalid package data'))
|
||||
|
||||
log.info('lifecycle', logid(pkg, stage), pkg._id)
|
||||
if (!pkg.scripts || npm.config.get('ignore-scripts')) pkg.scripts = {}
|
||||
if (!pkg.scripts) pkg.scripts = {}
|
||||
|
||||
if (npm.config.get('ignore-scripts')) {
|
||||
log.info('lifecycle', logid(pkg, stage), 'ignored because ignore-scripts is set to true', pkg._id)
|
||||
pkg.scripts = {}
|
||||
}
|
||||
|
||||
validWd(wd || path.resolve(npm.dir, pkg.name), function (er, wd) {
|
||||
if (er) return cb(er)
|
||||
@ -386,7 +392,7 @@ function cmd (stage) {
|
||||
function CMD (args, cb) {
|
||||
npm.commands['run-script']([stage].concat(args), cb)
|
||||
}
|
||||
CMD.usage = 'npm ' + stage + ' [-- <args>]'
|
||||
CMD.usage = usage(stage, 'npm ' + stage + ' [-- <args>]')
|
||||
var installedShallow = require('./completion/installed-shallow.js')
|
||||
CMD.completion = function (opts, cb) {
|
||||
installedShallow(opts, function (d) {
|
||||
|
74
deps/npm/lib/utils/tar.js
vendored
74
deps/npm/lib/utils/tar.js
vendored
@ -61,80 +61,6 @@ function BundledPacker (props) {
|
||||
}
|
||||
inherits(BundledPacker, Packer)
|
||||
|
||||
BundledPacker.prototype.applyIgnores = function (entry, partial, entryObj) {
|
||||
// package.json files can never be ignored.
|
||||
if (entry === 'package.json') return true
|
||||
|
||||
// readme files should never be ignored.
|
||||
if (entry.match(/^readme(\.[^\.]*)$/i)) return true
|
||||
|
||||
// license files should never be ignored.
|
||||
if (entry.match(/^(license|licence)(\.[^\.]*)?$/i)) return true
|
||||
|
||||
// changelogs should never be ignored.
|
||||
if (entry.match(/^(changes|changelog|history)(\.[^\.]*)?$/i)) return true
|
||||
|
||||
// special rules. see below.
|
||||
if (entry === 'node_modules' && this.packageRoot) return true
|
||||
|
||||
// some files are *never* allowed under any circumstances
|
||||
if (entry === '.git' ||
|
||||
entry === '.lock-wscript' ||
|
||||
entry.match(/^\.wafpickle-[0-9]+$/) ||
|
||||
entry === 'CVS' ||
|
||||
entry === '.svn' ||
|
||||
entry === '.hg' ||
|
||||
entry.match(/^\..*\.swp$/) ||
|
||||
entry === '.DS_Store' ||
|
||||
entry.match(/^\._/) ||
|
||||
entry === 'npm-debug.log'
|
||||
) {
|
||||
return false
|
||||
}
|
||||
|
||||
// in a node_modules folder, we only include bundled dependencies
|
||||
// also, prevent packages in node_modules from being affected
|
||||
// by rules set in the containing package, so that
|
||||
// bundles don't get busted.
|
||||
// Also, once in a bundle, everything is installed as-is
|
||||
// To prevent infinite cycles in the case of cyclic deps that are
|
||||
// linked with npm link, even in a bundle, deps are only bundled
|
||||
// if they're not already present at a higher level.
|
||||
if (this.bundleMagic) {
|
||||
// bubbling up. stop here and allow anything the bundled pkg allows
|
||||
if (entry.indexOf('/') !== -1) return true
|
||||
|
||||
// never include the .bin. It's typically full of platform-specific
|
||||
// stuff like symlinks and .cmd files anyway.
|
||||
if (entry === '.bin') return false
|
||||
|
||||
// the package root.
|
||||
var p = this.parent
|
||||
// the package before this one.
|
||||
var pp = p && p.parent
|
||||
|
||||
// if this entry has already been bundled, and is a symlink,
|
||||
// and it is the *same* symlink as this one, then exclude it.
|
||||
if (pp && pp.bundleLinks && this.bundleLinks &&
|
||||
pp.bundleLinks[entry] &&
|
||||
pp.bundleLinks[entry] === this.bundleLinks[entry]) {
|
||||
return false
|
||||
}
|
||||
|
||||
// since it's *not* a symbolic link, if we're *already* in a bundle,
|
||||
// then we should include everything.
|
||||
if (pp && pp.package && pp.basename === 'node_modules') {
|
||||
return true
|
||||
}
|
||||
|
||||
// only include it at this point if it's a bundleDependency
|
||||
return this.isBundled(entry)
|
||||
}
|
||||
// if (this.bundled) return true
|
||||
|
||||
return Packer.prototype.applyIgnores.call(this, entry, partial, entryObj)
|
||||
}
|
||||
|
||||
function nameMatch (name) { return function (other) { return name === moduleName(other) } }
|
||||
|
||||
function pack_ (tarball, folder, tree, flatTree, pkg, cb) {
|
||||
|
27
deps/npm/lib/utils/usage.js
vendored
Normal file
27
deps/npm/lib/utils/usage.js
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
'use strict'
|
||||
var aliases = require('../config/cmd-list').aliases
|
||||
|
||||
module.exports = function usage (cmd, txt, opt) {
|
||||
var post = Object.keys(aliases).reduce(function (p, c) {
|
||||
var val = aliases[c]
|
||||
if (val !== cmd) return p
|
||||
return p.concat(c)
|
||||
}, [])
|
||||
|
||||
if (opt || post.length > 0) txt += '\n\n'
|
||||
|
||||
if (post.length === 1) {
|
||||
txt += 'aliase: '
|
||||
txt += post.join(', ')
|
||||
} else if (post.length > 1) {
|
||||
txt += 'aliases: '
|
||||
txt += post.join(', ')
|
||||
}
|
||||
|
||||
if (opt) {
|
||||
if (post.length > 0) txt += '\n'
|
||||
txt += 'common options: ' + opt
|
||||
}
|
||||
|
||||
return txt
|
||||
}
|
11
deps/npm/lib/view.js
vendored
11
deps/npm/lib/view.js
vendored
@ -1,8 +1,5 @@
|
||||
// npm view [pkg [pkg ...]]
|
||||
|
||||
module.exports = view
|
||||
view.usage = 'npm view [<@scope>/]<pkg>[@<version>] [<field>[.subfield]...]' +
|
||||
'\n\naliases: info, show, v'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
var readJson = require('read-package-json')
|
||||
@ -12,6 +9,12 @@ var semver = require('semver')
|
||||
var mapToRegistry = require('./utils/map-to-registry.js')
|
||||
var npa = require('npm-package-arg')
|
||||
var path = require('path')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
view.usage = usage(
|
||||
'view',
|
||||
'npm view [<@scope>/]<pkg>[@<version>] [<field>[.subfield]...]'
|
||||
)
|
||||
|
||||
view.completion = function (opts, cb) {
|
||||
if (opts.conf.argv.remain.length <= 2) {
|
||||
@ -246,7 +249,7 @@ function printData (data, name, cb) {
|
||||
versions.forEach(function (v) {
|
||||
var fields = Object.keys(data[v])
|
||||
includeFields = includeFields || (fields.length > 1)
|
||||
msgJson.push({})
|
||||
if (npm.config.get('json')) msgJson.push({})
|
||||
fields.forEach(function (f) {
|
||||
var d = cleanup(data[v][f])
|
||||
if (fields.length === 1 && npm.config.get('json')) {
|
||||
|
15
deps/npm/man/man1/npm-README.1
vendored
15
deps/npm/man/man1/npm-README.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM" "1" "April 2016" "" ""
|
||||
.TH "NPM" "1" "May 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm\fR \- a JavaScript package manager
|
||||
.P
|
||||
@ -80,13 +80,12 @@ run npm commands by doing \fBnode cli\.js <cmd> <args>\fP\|\. (This is helpful
|
||||
for testing, or running stuff without actually installing npm itself\.)
|
||||
.SH Windows Install or Upgrade
|
||||
.P
|
||||
You can download a zip file from https://github\.com/npm/npm/releases, and
|
||||
unpack it in the \fBnode_modules\\npm\\\fP folder inside node's installation folder\.
|
||||
.P
|
||||
To upgrade to npm 2, follow the Windows upgrade instructions in
|
||||
the npm Troubleshooting Guide:
|
||||
.P
|
||||
https://github\.com/npm/npm/wiki/Troubleshooting#upgrading\-on\-windows
|
||||
Many improvements for Windows users have been made in npm 3 \- you will have a better
|
||||
experience if you run a recent version of npm\. To upgrade, either use Microsoft's
|
||||
upgrade tool \fIhttps://github\.com/felixrieseberg/npm\-windows\-upgrade\fR,
|
||||
download a new version of Node \fIhttp://nodejs\.org/download/\fR,
|
||||
or follow the Windows upgrade instructions in the
|
||||
npm Troubleshooting Guide \fIhttps://github\.com/npm/npm/wiki/Troubleshooting#upgrading\-on\-windows\fR\|\.
|
||||
.P
|
||||
If that's not fancy enough for you, then you can fetch the code with
|
||||
git, and mess with it directly\.
|
||||
|
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