Skip to content

Commit ae17676

Browse files

File tree

413 files changed

+12141
-12362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

413 files changed

+12141
-12362
lines changed

deps/npm/.travis.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
language: node_js
22
node_js:
3-
- "6"
3+
# LTS is our most important target
44
- "4"
5+
# next LTS and master is next most important
6+
- "6"
7+
# still in LTS maintenance until fall 2016
8+
# (also still in wide use)
9+
- "0.10"
10+
# will be unsupported as soon as 6 becomes LTS and 7 released
511
- "5"
12+
# technically in LTS / distros, unbeloved
613
- "0.12"
7-
- "0.10"
8-
- "0.8"
914
env:
1015
- DEPLOY_VERSION=testing
1116
before_install:

deps/npm/AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -402,3 +402,7 @@ Gianluca Casati <[email protected]>
402402
André Herculano <[email protected]>
403403
Wyatt Preul <[email protected]>
404404
Myles Borins <[email protected]>
405+
Elliot Lee <[email protected]>
406+
Dmitry Kirilyuk <[email protected]>
407+
Aaron Tribou <[email protected]>
408+
Tapani Moilanen <[email protected]>

deps/npm/CHANGELOG.md

+435
Large diffs are not rendered by default.

deps/npm/appveyor.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ environment:
22
matrix:
33
# LTS is our most important target
44
- nodejs_version: "4"
5-
# latest
6-
- nodejs_version: "5"
7-
# I like 0.10 better than 0.12
5+
# next LTS and master is next most important
6+
- nodejs_version: "6"
7+
# still in LTS maintenance until fall 2016
8+
# (also still in wide use)
89
- nodejs_version: "0.10"
10+
# will be unsupported as soon as 6 becomes LTS and 7 released
11+
- nodejs_version: "5"
12+
# technically in LTS / distros, unbeloved
913
- nodejs_version: "0.12"
10-
# EOL summer 2016, most likely
11-
- nodejs_version: "0.8"
1214
COVERALLS_REPO_TOKEN:
1315
secure: XdC0aySefK0HLh1GNk6aKrzZPbCfPQLyA4mYtFGEp4DrTuZA/iuCUS0LDqFYO8JQ
1416
platform:

deps/npm/doc/cli/npm-shrinkwrap.md

+10
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ resolution using "version" if one isn't.
109109

110110
2. The tree is walked and any missing dependencies are installed in the usual fashion.
111111

112+
If `preshrinkwrap`, `shrinkwrap` or `postshrinkwrap` are in the `scripts` property of the
113+
`package.json`, they will be executed by running `npm shrinkwrap`.
114+
`preshrinkwrap` and `shrinkwrap` are executed before the shrinkwrap, `postshrinkwrap` is
115+
executed afterwards. For example to run some postprocessing on the generated file:
116+
117+
"scripts": { "postshrinkwrap": "node fix-shrinkwrap.js" }
118+
119+
112120
### Using shrinkwrapped packages
113121

114122
Using a shrinkwrapped package is no different than using any other
@@ -174,5 +182,7 @@ contents rather than versions.
174182
## SEE ALSO
175183

176184
* npm-install(1)
185+
* npm-run-script(1)
186+
* npm-scripts(7)
177187
* package.json(5)
178188
* npm-ls(1)

deps/npm/doc/files/package.json.md

+1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ Conversely, some files are always ignored:
202202
* `npm-debug.log`
203203
* `.npmrc`
204204
* `node_modules`
205+
* `config.gypi`
205206

206207
## main
207208

deps/npm/doc/misc/npm-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ Set to true to run in "production" mode.
676676

677677
### progress
678678

679-
* Default: true
679+
* Default: true, unless TRAVIS or CI env vars set.
680680
* Type: Boolean
681681

682682
When set to `true`, npm will display a progress bar during time intensive

deps/npm/doc/misc/npm-scripts.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,14 @@ following scripts:
3232
* prerestart, restart, postrestart:
3333
Run by the `npm restart` command. Note: `npm restart` will run the
3434
stop and start scripts if no `restart` script is provided.
35+
* preshrinkwrap, shrinkwrap, postshrinkwrap:
36+
Run by the `npm shrinkwrap` command.
3537

3638
Additionally, arbitrary scripts can be executed by running `npm
3739
run-script <stage>`. *Pre* and *post* commands with matching
3840
names will be run for those as well (e.g. `premyscript`, `myscript`,
39-
`postmyscript`).
41+
`postmyscript`). Scripts from dependencies can be run with `npm explore
42+
<pkg> -- npm run <stage>`.
4043

4144
## COMMON USES
4245

deps/npm/html/doc/README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ <h2 id="see-also">SEE ALSO</h2>
126126
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
127127
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
128128
</table>
129-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.9.5</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.10.2</p>
130130

deps/npm/html/doc/cli/npm-access.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ <h2 id="see-also">SEE ALSO</h2>
8484
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
8585
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
8686
</table>
87-
<p id="footer">npm-access &mdash; npm@3.9.5</p>
87+
<p id="footer">npm-access &mdash; npm@3.10.2</p>
8888

deps/npm/html/doc/cli/npm-adduser.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ <h2 id="see-also">SEE ALSO</h2>
7272
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
7373
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
7474
</table>
75-
<p id="footer">npm-adduser &mdash; npm@3.9.5</p>
75+
<p id="footer">npm-adduser &mdash; npm@3.10.2</p>
7676

deps/npm/html/doc/cli/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ <h2 id="see-also">SEE ALSO</h2>
3535
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3636
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3737
</table>
38-
<p id="footer">npm-bin &mdash; npm@3.9.5</p>
38+
<p id="footer">npm-bin &mdash; npm@3.10.2</p>
3939

deps/npm/html/doc/cli/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ <h2 id="see-also">SEE ALSO</h2>
5555
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5656
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5757
</table>
58-
<p id="footer">npm-bugs &mdash; npm@3.9.5</p>
58+
<p id="footer">npm-bugs &mdash; npm@3.10.2</p>
5959

deps/npm/html/doc/cli/npm-build.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ <h2 id="description">DESCRIPTION</h2>
4040
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4141
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4242
</table>
43-
<p id="footer">npm-build &mdash; npm@3.9.5</p>
43+
<p id="footer">npm-build &mdash; npm@3.10.2</p>
4444

deps/npm/html/doc/cli/npm-bundle.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="see-also">SEE ALSO</h2>
3131
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3232
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3333
</table>
34-
<p id="footer">npm-bundle &mdash; npm@3.9.5</p>
34+
<p id="footer">npm-bundle &mdash; npm@3.10.2</p>
3535

deps/npm/html/doc/cli/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ <h2 id="see-also">SEE ALSO</h2>
8181
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
8282
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
8383
</table>
84-
<p id="footer">npm-cache &mdash; npm@3.9.5</p>
84+
<p id="footer">npm-cache &mdash; npm@3.10.2</p>
8585

deps/npm/html/doc/cli/npm-completion.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ <h2 id="see-also">SEE ALSO</h2>
4343
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4444
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4545
</table>
46-
<p id="footer">npm-completion &mdash; npm@3.9.5</p>
46+
<p id="footer">npm-completion &mdash; npm@3.10.2</p>
4747

deps/npm/html/doc/cli/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ <h2 id="see-also">SEE ALSO</h2>
6767
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
6868
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
6969
</table>
70-
<p id="footer">npm-config &mdash; npm@3.9.5</p>
70+
<p id="footer">npm-config &mdash; npm@3.10.2</p>
7171

deps/npm/html/doc/cli/npm-dedupe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ <h2 id="see-also">SEE ALSO</h2>
6161
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
6262
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
6363
</table>
64-
<p id="footer">npm-dedupe &mdash; npm@3.9.5</p>
64+
<p id="footer">npm-dedupe &mdash; npm@3.10.2</p>
6565

deps/npm/html/doc/cli/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ <h2 id="see-also">SEE ALSO</h2>
3838
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3939
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4040
</table>
41-
<p id="footer">npm-deprecate &mdash; npm@3.9.5</p>
41+
<p id="footer">npm-deprecate &mdash; npm@3.10.2</p>
4242

deps/npm/html/doc/cli/npm-dist-tag.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ <h2 id="see-also">SEE ALSO</h2>
8787
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
8888
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
8989
</table>
90-
<p id="footer">npm-dist-tag &mdash; npm@3.9.5</p>
90+
<p id="footer">npm-dist-tag &mdash; npm@3.10.2</p>
9191

deps/npm/html/doc/cli/npm-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ <h2 id="see-also">SEE ALSO</h2>
5656
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5757
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5858
</table>
59-
<p id="footer">npm-docs &mdash; npm@3.9.5</p>
59+
<p id="footer">npm-docs &mdash; npm@3.10.2</p>
6060

deps/npm/html/doc/cli/npm-edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5050
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5151
</table>
52-
<p id="footer">npm-edit &mdash; npm@3.9.5</p>
52+
<p id="footer">npm-edit &mdash; npm@3.10.2</p>
5353

deps/npm/html/doc/cli/npm-explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5050
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5151
</table>
52-
<p id="footer">npm-explore &mdash; npm@3.9.5</p>
52+
<p id="footer">npm-explore &mdash; npm@3.10.2</p>
5353

deps/npm/html/doc/cli/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ <h2 id="see-also">SEE ALSO</h2>
4545
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4646
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4747
</table>
48-
<p id="footer">npm-help-search &mdash; npm@3.9.5</p>
48+
<p id="footer">npm-help-search &mdash; npm@3.10.2</p>
4949

deps/npm/html/doc/cli/npm-help.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ <h2 id="see-also">SEE ALSO</h2>
5050
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5151
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5252
</table>
53-
<p id="footer">npm-help &mdash; npm@3.9.5</p>
53+
<p id="footer">npm-help &mdash; npm@3.10.2</p>
5454

deps/npm/html/doc/cli/npm-init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ <h2 id="see-also">SEE ALSO</h2>
4848
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4949
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5050
</table>
51-
<p id="footer">npm-init &mdash; npm@3.9.5</p>
51+
<p id="footer">npm-init &mdash; npm@3.10.2</p>
5252

deps/npm/html/doc/cli/npm-install-test.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ <h2 id="see-also">SEE ALSO</h2>
4242
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4343
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4444
</table>
45-
<p id="footer">npm-install-test &mdash; npm@3.9.5</p>
45+
<p id="footer">npm-install-test &mdash; npm@3.10.2</p>

deps/npm/html/doc/cli/npm-install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,5 +312,5 @@ <h2 id="see-also">SEE ALSO</h2>
312312
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
313313
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
314314
</table>
315-
<p id="footer">npm-install &mdash; npm@3.9.5</p>
315+
<p id="footer">npm-install &mdash; npm@3.10.2</p>
316316

deps/npm/html/doc/cli/npm-link.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
7373
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
7474
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
7575
</table>
76-
<p id="footer">npm-link &mdash; npm@3.9.5</p>
76+
<p id="footer">npm-link &mdash; npm@3.10.2</p>
7777

deps/npm/html/doc/cli/npm-logout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ <h3 id="scope">scope</h3>
5151
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5252
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5353
</table>
54-
<p id="footer">npm-logout &mdash; npm@3.9.5</p>
54+
<p id="footer">npm-logout &mdash; npm@3.10.2</p>
5555

deps/npm/html/doc/cli/npm-ls.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 id="synopsis">SYNOPSIS</h2>
2121
limit the results to only the paths to the packages named. Note that
2222
nested packages will <em>also</em> show the paths to the specified packages.
2323
For example, running <code>npm ls promzard</code> in npm&#39;s source tree will show:</p>
24-
<pre><code>npm@3.9.5 /path/to/npm
24+
<pre><code>npm@3.10.2 /path/to/npm
2525
2626
2727
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
@@ -104,5 +104,5 @@ <h2 id="see-also">SEE ALSO</h2>
104104
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
105105
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
106106
</table>
107-
<p id="footer">npm-ls &mdash; npm@3.9.5</p>
107+
<p id="footer">npm-ls &mdash; npm@3.10.2</p>
108108

deps/npm/html/doc/cli/npm-outdated.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ <h2 id="see-also">SEE ALSO</h2>
116116
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
117117
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
118118
</table>
119-
<p id="footer">npm-outdated &mdash; npm@3.9.5</p>
119+
<p id="footer">npm-outdated &mdash; npm@3.10.2</p>
120120

deps/npm/html/doc/cli/npm-owner.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ <h2 id="see-also">SEE ALSO</h2>
5151
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5252
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5353
</table>
54-
<p id="footer">npm-owner &mdash; npm@3.9.5</p>
54+
<p id="footer">npm-owner &mdash; npm@3.10.2</p>
5555

deps/npm/html/doc/cli/npm-pack.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ <h2 id="see-also">SEE ALSO</h2>
4141
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4242
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4343
</table>
44-
<p id="footer">npm-pack &mdash; npm@3.9.5</p>
44+
<p id="footer">npm-pack &mdash; npm@3.10.2</p>
4545

deps/npm/html/doc/cli/npm-ping.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ <h2 id="see-also">SEE ALSO</h2>
3232
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3333
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3434
</table>
35-
<p id="footer">npm-ping &mdash; npm@3.9.5</p>
35+
<p id="footer">npm-ping &mdash; npm@3.10.2</p>

0 commit comments

Comments
 (0)