Skip to content

Commit 369a23a

Browse files
Audrey EschrightMylesBorins
authored andcommitted
deps: update npm to 6.13.4
PR-URL: #30904 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]>
1 parent eac6143 commit 369a23a

File tree

2,611 files changed

+156477
-79899
lines changed

Some content is hidden

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

2,611 files changed

+156477
-79899
lines changed

deps/npm/.licensee.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"licenses": {
3+
"spdx": [
4+
"CC-BY-3.0"
5+
],
6+
"blueOak": "bronze"
7+
},
8+
"corrections": true,
9+
"packages": {
10+
"config-chain": "1.1.12",
11+
"cyclist": "0.2.2",
12+
"json-schema": "0.2.3",
13+
"qrcode-terminal": "0.12.0"
14+
}
15+
}

deps/npm/.mailmap

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ Alex K. Wolfe <[email protected]>
22
Andrew Bradley <[email protected]>
33
Andrew Lunny <[email protected]>
44
Arlo Breault <[email protected]>
5-
65
6+
77
Benjamin Coe <[email protected]>
88
99
1010
Cedric Nelson <[email protected]>
1111
Charlie Robbins <[email protected]>
12+
Claudia Hernández <[email protected]>
1213
Dalmais Maxence <[email protected]>
1314
Danila Gerasimov <[email protected]>
1415
Dave Galbraith <[email protected]>
@@ -22,21 +23,23 @@ Evan Lucas <[email protected]> <[email protected]>
2223
2324
Faiq Raza <[email protected]>
2425
Forbes Lindesay <[email protected]>
25-
26+
27+
2628
Gabriel Barros <[email protected]>
2729
Geoff Flarity <[email protected]> <gflarity@raptvm-x02.(none)>
2830
Gregers Gram Rygg <[email protected]>
2931
Ifeanyi Oraelosi <[email protected]>
30-
Isaac Z. Schlueter <[email protected]> <[email protected]>
31-
Isaac Z. Schlueter <[email protected]> isaacs <[email protected]>
32+
33+
34+
3235
Jake Verbaten <[email protected]>
3336
James Sanders <[email protected]>
3437
James Treworgy <[email protected]>
3538
Jason Smith <[email protected]>
3639
40+
Jonas Weber <[email protected]>
3741
Joshua Bennett <[email protected]>
3842
39-
Jonas Weber <[email protected]>
4043
Julien Meddah <[email protected]>
4144
4245
Kevin Lorenz <[email protected]>
@@ -50,12 +53,12 @@ Max Goodman <[email protected]>
5053
Maxim Bogushevich <[email protected]>
5154
5255
53-
Nicolas Morel <[email protected]>
5456
Misha Kaletsky <[email protected]>
57+
Nicolas Morel <[email protected]>
5558
Olivier Melcher <[email protected]>
5659
Ra'Shaun Stovall <[email protected]>
57-
5860
61+
5962
Ryan Emery <[email protected]>
6063
Sam Mikes <[email protected]>
6164
Sreenivas Alapati <[email protected]>

deps/npm/.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
*.swp
22
.*.swp
3+
netlify.toml
34
npm-debug.log
45
/.github
56
/test
67
node_modules/marked
7-
node_modules/ronn
8+
node_modules/marked-man
89
node_modules/tap
10+
tap-snapshots
911
node_modules/.bin
1012
node_modules/npm-registry-mock
1113
/npmrc

deps/npm/.travis.yml

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,52 @@
1-
sudo: false
21
# need to declare the language as well as the matrix below
32
language: node_js
3+
4+
os:
5+
- linux
6+
7+
node_js:
8+
- 12
9+
- 10
10+
- 8
11+
12+
env: "DEPLOY_VERSION=testing"
13+
414
# having top-level `env:` adds a phantom build
515
# https://github.com/travis-ci/travis-ci/issues/4681
616
#env: DEPLOY_VERSION=testing
717
matrix:
818
include:
9-
# LTS is our most important target
10-
- node_js: "8"
19+
# Run the sudotest, but only on Linux
20+
- node_js: "12"
1121
# DEPLOY_VERSION is used to set the couchapp setup mode for test/tap/registry.js
1222
# only gather coverage info for LTS
1323
env: DEPLOY_VERSION=testing COVERALLS_REPO_TOKEN="$COVERALLS_OPTIONAL_TOKEN"
1424
script:
15-
- "node . run tap-cover -- \"test/tap/*.js\""
16-
- "unset COVERALLS_REPO_TOKEN ; node . run tap -- \"test/broken-under-*/*.js\""
17-
# previous LTS is next most important
18-
- node_js: "6"
19-
env: DEPLOY_VERSION=testing
25+
# run the sudo tests, with coverage enabled
26+
- "sudo PATH=$PATH $(which node) . run tap -- \"test/tap/*.js\" --coverage --timeout 600"
27+
28+
# also run standard and license checking
2029
- node_js: "10"
21-
env: DEPLOY_VERSION=testing
22-
- node_js: "9"
23-
env: DEPLOY_VERSION=testing
2430
script:
25-
- "standard"
26-
- "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\""
31+
- "npx standard"
32+
- "node . run licenses"
33+
34+
# separate out node 6 so we can turn off caching, because that
35+
# always breaks for some reason.
36+
- node_js: "6"
37+
cache: false
38+
env: "DEPLOY_VERSION=testing"
39+
40+
# only run one test on Windows, because it's hella slow
41+
- node_js: "12"
42+
os: "windows"
43+
env: "DEPLOY_VERSION=testing"
44+
2745
notifications:
2846
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8
29-
cache:
30-
directories:
31-
- node_modules/.cache
47+
3248
install:
3349
- "node . install"
50+
3451
script:
35-
- "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\""
52+
- "node . run tap -- \"test/tap/*.js\" -t600 -Rclassic -c"

deps/npm/AUTHORS

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Authors sorted by whether or not they're me
2-
Isaac Z. Schlueter <[email protected]>
2+
33
Steve Steiner <[email protected]>
44
Mikeal Rogers <[email protected]>
55
Aaron Blohowiak <[email protected]>
@@ -601,3 +601,79 @@ SneakyFish5 <[email protected]>
601601
Nikki Everett <[email protected]>
602602
Erik Price <[email protected]>
603603
Lars Willighagen <[email protected]>
604+
Kevin Gibbons <[email protected]>
605+
Maarten Balliauw <[email protected]>
606+
Mehdy Dara <[email protected]>
607+
Robert Kielty <[email protected]>
608+
Scott Trinh <[email protected]>
609+
610+
611+
Joe Bottigliero <[email protected]>
612+
Nikolai Vavilov <[email protected]>
613+
Kelvin Jin <[email protected]>
614+
615+
Audrey Eschright <[email protected]>
616+
617+
618+
Beni von Cheni <[email protected]>
619+
Frédéric Harper <[email protected]>
620+
Johannes Würbach <[email protected]>
621+
ƇʘƁ̆ąƇ́ <[email protected]>
622+
Eli Doran <[email protected]>
623+
Tobias Koppers <[email protected]>
624+
Grey Baker <[email protected]>
625+
JT Turner <[email protected]>
626+
Audrey Eschright <[email protected]>
627+
Alexander Gudulin <[email protected]>
628+
Philipp Hagemeister <[email protected]>
629+
Amadou Sall <[email protected]>
630+
Chris Manson <[email protected]>
631+
632+
Emilis Dambauskas (Tokenmill) <[email protected]>
633+
George Czabania <[email protected]>
634+
Jonathan Underwood <[email protected]>
635+
Nick Graef <[email protected]>
636+
James George <[email protected]>
637+
John O'Sullivan <[email protected]>
638+
639+
Raphael Goulais <[email protected]>
640+
COURIER, CALEB [AG/1000] <[email protected]>
641+
CalebCourier <[email protected]>
642+
Florian Keller <[email protected]>
643+
Sreeram Jayan <[email protected]>
644+
645+
raywu0123 <[email protected]>
646+
Iván Reinoso García <[email protected]>
647+
Roy Marples <[email protected]>
648+
Robert James Gabriel <[email protected]>
649+
John Firebaugh <[email protected]>
650+
Kitten King <[email protected]>
651+
Claudia Hernández <[email protected]>
652+
Artem Sapegin <[email protected]>
653+
Márton Salomváry <[email protected]>
654+
655+
Olivier Chevet <[email protected]>
656+
Maël Nison <[email protected]>
657+
Sara Ahbabou <[email protected]>
658+
Gareth Jones <[email protected]>
659+
Ruy Adorno <[email protected]>
660+
Michael Perrotte <[email protected]>
661+
Ben Blank <[email protected]>
662+
Christian Clauss <[email protected]>
663+
Nikita Lebedev <[email protected]>
664+
Henrik Gemal <[email protected]>
665+
Philip Harrison <[email protected]>
666+
Jason Etcovitch <[email protected]>
667+
Darcy Clarke <[email protected]>
668+
669+
670+
671+
Amal Hussein <[email protected]>
672+
Brett Zamir <[email protected]>
673+
Menelaos Kotsollaris <[email protected]>
674+
Mehdi Hasan Khan <[email protected]>
675+
Craig Loewen <[email protected]>
676+
Fighting-Jack <[email protected]>
677+
Bakel, Roel van <[email protected]>
678+
Charlie West-Toebe <[email protected]>
679+
Richard Lau <[email protected]>

0 commit comments

Comments
 (0)