Skip to content

Commit b5362b5

Browse files
committed
deps: upgrade npm to 3.7.1
PR-URL: nodejs#5097
1 parent c0bfac6 commit b5362b5

File tree

318 files changed

+7038
-5375
lines changed

Some content is hidden

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

318 files changed

+7038
-5375
lines changed

deps/npm/.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Cedric Nelson <[email protected]>
1111
Charlie Robbins <[email protected]>
1212
Dalmais Maxence <[email protected]>
1313
Danila Gerasimov <[email protected]>
14+
Dave Galbraith <[email protected]>
1415
David Beitey <[email protected]>
1516
Domenic Denicola <[email protected]>
1617
Einar Otto Stangvik <[email protected]>

deps/npm/.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ env:
1111
before_install:
1212
- "npm config set spin false"
1313
- "node . install -g ."
14-
- "sudo mkdir -p /var/run/couchdb"
14+
- "mkdir -p /var/run/couchdb"
15+
sudo: false
1516
script: "npm run-script test-all"
1617
notifications:
1718
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8

deps/npm/AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -352,3 +352,10 @@ Jimb Esser <[email protected]>
352352
Alexis Campailla <[email protected]>
353353
Chris Chua <[email protected]>
354354
Beau Gunderson <[email protected]>
355+
Dave Galbraith <[email protected]>
356+
357+
Sergey Simonchik <[email protected]>
358+
Vanja Radovanović <[email protected]>
359+
Jonathan Persson <[email protected]>
360+
Vedat Mahir YILMAZ <[email protected]>
361+
Samuel Reed <[email protected]>

deps/npm/CHANGELOG.md

+164
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,167 @@
1+
### v3.7.1 (2016-02-01):
2+
3+
Super quick Monday patch on last week's release.
4+
5+
If you ever wondered why we release things to the `npm@next` tag for a week
6+
before promoting them to `npm@latest`, this is it!
7+
8+
#### RELEASE TRAIN VINDICATED (again)
9+
10+
* [`adcaf04`](adcaf047811dcc475ab1984fc93fe34540fc03d7)
11+
[#11349](https://github.com/npm/npm/issues/11349)
12+
Revert last weeks change to use JSON clone instead of `lodash.cloneDeep`.
13+
([@iarna](https://github.com/iarna))
14+
15+
### v3.7.0 (2016-01-20):
16+
17+
Hi all! This week brings us some important performance improvements,
18+
support for git submodules(!) and a bunch of bug fixes.
19+
20+
#### PERFORMANCE
21+
22+
`gauge`, the module responsible for drawing `npm`'s progress bars, had an
23+
embarrassing bug in its debounce implementation that resulted in it, on many
24+
systems, actually being _slower_ than if it hadn't been debouncing. This was
25+
due to it destroying and then creating a timer object any time it got an
26+
update while waiting on its minimum update period to elapse. This only was
27+
a measurable slowdown when sending thousands of updates a second, but
28+
unfortunately parts of `npm`'s logging do exactly that. This has been patched
29+
to eliminate that churn, and our testing shows the progress bar as being
30+
eliminated as a source of slow down.
31+
32+
Meanwhile, `are-we-there-yet` is the module that tracks just how complete
33+
our big asynchronous install process is. [@STRML](https://github.com/STRML)
34+
spent some time auditing its source and made a few smaller performance
35+
improvements to it. Most impactful was eliminating a bizarre bit of code
36+
that was both binding to AND closing over the current object. I don't have
37+
any explanation for how that crept in. =D
38+
39+
* [`c680fa9`](https://github.com/npm/npm/commit/c680fa9f8135759eb5512f4b86e47fa265733f79)
40+
`[email protected]`: New `are-we-there-yet` with performance patches from
41+
[@STRML](https://github.com/STRML). New `gauge` with timer churn
42+
performance patch.
43+
([@iarna](https://github.com/iarna))
44+
45+
We were also using `lodash`'s `cloneDeep` on `package.json` data which is
46+
definitely overkill, seeing as `package.json` data has all the restrictions
47+
of being `json`. The fix for this is just swapping that out for something
48+
that does a pair of `JSON.stringify`/`JSON.parse`, which is distinctly more
49+
speedy.
50+
51+
* [`1d1ea7e`](https://github.com/npm/npm/commit/1d1ea7eeb958034878eb6573149aeecc686888d3)
52+
[#11306](https://github.com/npm/npm/pull/11306)
53+
Use JSON clone instead of `lodash.cloneDeep`.
54+
([@STRML](https://github.com/STRML))
55+
56+
#### NEW FEATURE: GIT SUBMODULE SUPPORT
57+
58+
Long, long requested– the referenced issue is from 2011– we're finally
59+
getting rudimentary git submodule support.
60+
61+
* [`39dea9c`](https://github.com/npm/npm/commit/39dea9ca4216c6ea628f5ca47d2b34a4b251a1ed)
62+
[#1876](https://github.com/npm/npm/issues/1876)
63+
Add support for git submodules in git remotes. This is a fairly simple
64+
approach, which does not leverage the git caching mechanism to cache
65+
submodules. It also doesn't provide a means to disable automatic
66+
initialization, e.g. via a setting in the `.gitmodules` file.
67+
([@gagern](https://github.com/gagern))
68+
69+
#### ROBUSTNESS
70+
71+
* [`5dec02a`](https://github.com/npm/npm/commit/5dec02a3d0e82202c021e27aff9d006283fdc25a)
72+
[#10347](https://github.com/npm/npm/issues/10347)
73+
There is an obscure feature that lets you monkey-patch npm when it starts
74+
up. If the module being required with this feature failed, it would
75+
previously just make `npm` error out– this reduces that to a warning.
76+
([@evanlucas](https://github.com/evanlucas))
77+
78+
#### BUG FIXES
79+
80+
* [`9ab8b8d`](https://github.com/npm/npm/commit/9ab8b8d047792612ae7f9a6079745d51d5283a53)
81+
[#10820](https://github.com/npm/npm/issues/10820)
82+
Fix a bug with `npm ls` where if you asked for ONLY production dependencies in output
83+
it would exclude dependencies that were BOTH production AND development dependencies.
84+
([@davidvgalbraith](https://github.com/davidvgalbraith))
85+
* [`6803fed`](https://github.com/npm/npm/commit/6803fedadb8f9b36cd85f7338ecf75d1d183c833)
86+
[#8982](https://github.com/npm/npm/issues/8982)
87+
Fix a bug where, under some circumstances, if you had a path that
88+
contained the name of a package being installed somewhere in it, `npm`
89+
would incorrectly refuse to run lifecycle scripts.
90+
([@elvanja](https://github.com/elvanja))
91+
* [`3eae40b`](https://github.com/npm/npm/commit/3eae40b7a681aa067dfe4fea8c9a76da5b508b48)
92+
[#9253](https://github.com/npm/npm/issues/9253)
93+
Fix a bug where, when running lifecycle scripts, if the Node.js binary you ran
94+
`npm` with wasn't in your `PATH`, `npm` wouldn't use it to run your scripts.
95+
([@segrey](https://github.com/segrey))
96+
* [`61daa6a`](https://github.com/npm/npm/commit/61daa6ae8cbc041d3a0d8a6f8f268b47dd8176eb)
97+
[#11014](https://github.com/npm/npm/issues/11014)
98+
Fix a bug where running `rimraf node_modules/<package>` followed by `npm
99+
rm --save <package>` would fail. `npm` now correctly removes the module
100+
from your `package.json` even though it doesn't exist on disk.
101+
([@davidvgalbraith](https://github.com/davidvgalbraith))
102+
* [`a605586`](https://github.com/npm/npm/commit/a605586df134ee97c95f89c4b4bd6bc73f7aa439)
103+
[#9679](https://github.com/npm/npm/issues/9679)
104+
Fix a bug where `npm install --save git+https://…` would save a `https://`
105+
url to your `package.json` which was a problem because `npm` wouldn't then
106+
know that it was a git repo.
107+
([@gagern](https://github.com/gagern))
108+
* [`bbdc700`](https://github.com/npm/npm/commit/bbdc70024467c365cc4e06b8410947c04b6f145b)
109+
[#10063](https://github.com/npm/npm/issues/10063)
110+
Fix a bug where `npm` would change the order of array properties in the
111+
`package.json` files of dependencies. `npm` adds a bunch of stuff to
112+
`package.json` files in your `node_modules` folder for debugging and
113+
bookkeeping purposes. As a part of this process it sorts the object to
114+
reduce file churn when it does updates. This fixes a bug where the arrays
115+
in the object were also getting sorted. This wasn't a problem for
116+
properties that `npm` itself maintains, but _is_ a problem for properties
117+
used by other packages.
118+
([@substack](https://github.com/substack))
119+
120+
#### DOCS IMPROVEMENTS
121+
122+
* [`2609a29`](https://github.com/npm/npm/commit/2609a2950704f577ac888668e81ba514568fab44)
123+
[#11273](https://github.com/npm/npm/pull/11273)
124+
Include an example of viewing package version history in the `npm view` documentation.
125+
([@vedatmahir](https://github.com/vedatmahir))
126+
* [`719ea9c`](https://github.com/npm/npm/commit/719ea9c45a5c3233f3afde043b89824aad2df0a7)
127+
[#11272](https://github.com/npm/npm/pull/11272)
128+
Fix typographical issue in `npm update` documentation.
129+
([@jonathanp](https://github.com/jonathanp))
130+
* [`cb9df5a`](https://github.com/npm/npm/commit/cb9df5a37091e06071d8704b629e7ebaa41c37fe)
131+
[#11215](https://github.com/npm/npm/pull/11215)
132+
Do not call `SEE LICENSE IN <filename>` an _SPDX expression_, as it's not.
133+
([@kemitchell](https://github.com/kemitchell))
134+
* [`f427934`](https://github.com/npm/npm/commit/f4279346c368da4bca09385f773e8eed1d389e5e)
135+
[#11196](https://github.com/npm/npm/pull/11196)
136+
Correct the `package.json` examples in the `npm update` documentation to actually be
137+
valid JSON and not just JavaScript object literals.
138+
([@s100](https://github.com/s100))
139+
140+
#### DEPENDENCY UPDATES
141+
142+
* [`a7b2407`](https://github.com/npm/npm/commit/a7b24074cb59a1ab17c0d8eff1498047e6a123e5)
143+
`[email protected]`: New features and interface agnostic refactoring.
144+
([@tim-kos](https://github.com/tim-kos))
145+
* [`220fc77`](https://github.com/npm/npm/commit/220fc7702ae3e5d601dfefd3e95c14e9b32327de)
146+
147+
A bunch of small bug fixes and module updates.
148+
([@simov](https://github.com/simov))
149+
* [`9e5c84f`](https://github.com/npm/npm/commit/9e5c84f1903748897e54f8ff099729ff744eab0f)
150+
151+
Update `isexe` and fix bug in `pathExt`, in which files without extensions
152+
would sometimes be preferred to files with extensions on Windows, even though
153+
those without extensions aren't executable.
154+
`pathExt` is a list of extensions that are considered executable (exe, cmd,
155+
bat, com on Windows).
156+
([@isaacs](https://github.com/isaacs))
157+
* [`375b9c4`](https://github.com/npm/npm/commit/375b9c42fe0c6de47ac2f92527354b2ea79b7968)
158+
`[email protected]`: Minor doc formatting fixes.
159+
([@isaacs](https://github.com/isaacs))
160+
* [`ef1971e`](https://github.com/npm/npm/commit/ef1971e6270c2bc72e6392b51a8b84f52708f7e7)
161+
162+
Misc minor code cleanup. No functional changes.
163+
([@jdalton](https://github.com/jdalton))
164+
1165
### v3.6.0 (2016-01-20):
2166

3167
Hi all! This is a bigger release, in part 'cause we didn't have one last

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

+6-3
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,12 @@ after packing it up into a tarball (b).
169169

170170
<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish>]
171171

172-
`<protocol>` is one of `git`, `git+ssh`, `git+http`, or
173-
`git+https`. If no `<commit-ish>` is specified, then `master` is
174-
used.
172+
`<protocol>` is one of `git`, `git+ssh`, `git+http`, `git+https`,
173+
or `git+file`.
174+
If no `<commit-ish>` is specified, then `master` is used.
175+
176+
If the repository makes use of submodules, those submodules will
177+
be cloned as well.
175178

176179
The following git environment variables are recognized by npm and will be added
177180
to the environment when running git:

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

+24-23
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,17 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are
4444

4545
```
4646
{
47-
dist-tags: { latest: "1.2.2" },
48-
versions: { "1.2.2",
49-
"1.2.1",
50-
"1.2.0",
51-
"1.1.2",
52-
"1.1.1",
53-
"1.0.0",
54-
"0.4.1",
55-
"0.4.0",
56-
"0.2.0"
47+
"dist-tags": { "latest": "1.2.2" },
48+
"versions": {
49+
"1.2.2",
50+
"1.2.1",
51+
"1.2.0",
52+
"1.1.2",
53+
"1.1.1",
54+
"1.0.0",
55+
"0.4.1",
56+
"0.4.0",
57+
"0.2.0"
5758
}
5859
}
5960
```
@@ -63,8 +64,8 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are
6364
If `app`'s `package.json` contains:
6465

6566
```
66-
dependencies: {
67-
dep1: "^1.1.1"
67+
"dependencies": {
68+
"dep1": "^1.1.1"
6869
}
6970
```
7071

@@ -76,8 +77,8 @@ Then `npm update` will install `[email protected]`, because `1.2.2` is `latest` and
7677
However, if `app`'s `package.json` contains:
7778

7879
```
79-
dependencies: {
80-
dep1: "~1.1.1"
80+
"dependencies": {
81+
"dep1": "~1.1.1"
8182
}
8283
```
8384

@@ -91,8 +92,8 @@ which is `1.1.2`.
9192
Suppose `app` has a caret dependency on a version below `1.0.0`, for example:
9293

9394
```
94-
dependencies: {
95-
dep1: "^0.2.0"
95+
"dependencies": {
96+
"dep1": "^0.2.0"
9697
}
9798
```
9899

@@ -102,8 +103,8 @@ versions which satisfy `^0.2.0`.
102103
If the dependence were on `^0.4.0`:
103104

104105
```
105-
dependencies: {
106-
dep1: "^0.4.0"
106+
"dependencies": {
107+
"dep1": "^0.4.0"
107108
}
108109
```
109110

@@ -118,17 +119,17 @@ the minimum required dependency in `package.json`, you can use
118119
`package.json` contains:
119120

120121
```
121-
dependencies: {
122-
dep1: "^1.1.1"
122+
"dependencies": {
123+
"dep1": "^1.1.1"
123124
}
124125
```
125126

126127
Then `npm update --save` will install `[email protected]` (i.e., `latest`),
127128
and `package.json` will be modified:
128129

129130
```
130-
dependencies: {
131-
dep1: "^1.2.2"
131+
"dependencies": {
132+
"dep1": "^1.2.2"
132133
}
133134
```
134135

@@ -137,7 +138,7 @@ if it installs a new package.
137138

138139
### Updating Globally-Installed Packages
139140

140-
`npm update -g` will apply the `update` action to each globally- installed
141+
`npm update -g` will apply the `update` action to each globally installed
141142
package that is `outdated` -- that is, has a version that is different from
142143
`latest`.
143144

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

+5
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ was required by each matching version of yui3:
6767

6868
npm view yui3@'>0.5.4' dependencies.jsdom
6969

70+
To show the `connect` package version history, you can do
71+
this:
72+
73+
npm view connect versions
74+
7075
## OUTPUT
7176

7277
If only a single string field for a single version is output, then it

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ expression syntax version 2.0 string](https://npmjs.com/package/spdx), like this
113113
{ "license" : "(ISC OR GPL-3.0)" }
114114

115115
If you are using a license that hasn't been assigned an SPDX identifier, or if
116-
you are using a custom license, use the following valid SPDX expression:
116+
you are using a custom license, use a string value like this one:
117117

118118
{ "license" : "SEE LICENSE IN <filename>" }
119119

deps/npm/html/doc/README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ <h2 id="see-also">SEE ALSO</h2>
127127
<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>
128128
<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>
129129
</table>
130-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.6.0</p>
130+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.7.1</p>
131131

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.6.0</p>
87+
<p id="footer">npm-access &mdash; npm@3.7.1</p>
8888

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ <h2 id="see-also">SEE ALSO</h2>
6868
<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>
6969
<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>
7070
</table>
71-
<p id="footer">npm-adduser &mdash; npm@3.6.0</p>
71+
<p id="footer">npm-adduser &mdash; npm@3.7.1</p>
7272

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.6.0</p>
38+
<p id="footer">npm-bin &mdash; npm@3.7.1</p>
3939

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ <h2 id="see-also">SEE ALSO</h2>
5353
<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>
5454
<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>
5555
</table>
56-
<p id="footer">npm-bugs &mdash; npm@3.6.0</p>
56+
<p id="footer">npm-bugs &mdash; npm@3.7.1</p>
5757

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.6.0</p>
43+
<p id="footer">npm-build &mdash; npm@3.7.1</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.6.0</p>
34+
<p id="footer">npm-bundle &mdash; npm@3.7.1</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.6.0</p>
84+
<p id="footer">npm-cache &mdash; npm@3.7.1</p>
8585

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ <h2 id="see-also">SEE ALSO</h2>
4444
<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>
4545
<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>
4646
</table>
47-
<p id="footer">npm-completion &mdash; npm@3.6.0</p>
47+
<p id="footer">npm-completion &mdash; npm@3.7.1</p>
4848

0 commit comments

Comments
 (0)