dependabot-npm_and_yarn 0.95.84 → 0.95.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/helpers/.eslintrc +1 -1
- data/helpers/build +3 -2
- data/helpers/{npm/lib → lib/npm}/helpers.js +0 -0
- data/helpers/{npm/lib → lib/npm}/index.js +3 -3
- data/helpers/{npm/lib → lib/npm}/peer-dependency-checker.js +0 -0
- data/helpers/{npm/lib → lib/npm}/subdependency-updater.js +0 -0
- data/helpers/{npm/lib → lib/npm}/updater.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/fix-duplicates.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/helpers.js +0 -0
- data/helpers/lib/yarn/index.js +11 -0
- data/helpers/{yarn/lib → lib/yarn}/lockfile-parser.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/peer-dependency-checker.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/replace-lockfile-declaration.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/subdependency-updater.js +0 -0
- data/helpers/{yarn/lib → lib/yarn}/updater.js +0 -0
- data/helpers/package-lock.json +9204 -0
- data/helpers/package.json +10 -5
- data/helpers/{npm/bin/run.js → run.js} +3 -3
- data/helpers/{npm/test → test/npm}/fixtures/npm-left-pad.json +0 -0
- data/helpers/{npm/test → test/npm}/fixtures/updater/original/package-lock.json +0 -0
- data/helpers/{npm/test → test/npm}/fixtures/updater/original/package.json +0 -0
- data/helpers/{npm/test → test/npm}/fixtures/updater/updated/package-lock.json +0 -0
- data/helpers/{npm/test → test/npm}/helpers.js +0 -0
- data/helpers/{npm/test → test/npm}/updater.test.js +1 -1
- data/helpers/{yarn/test → test/yarn}/fixtures/updater/original/package.json +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/updater/original/yarn.lock +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/updater/updated/yarn.lock +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/updater/with-version-comments/package.json +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/updater/with-version-comments/yarn.lock +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/yarnpkg-is-positive.json +0 -0
- data/helpers/{yarn/test → test/yarn}/fixtures/yarnpkg-left-pad.json +0 -0
- data/helpers/{yarn/test → test/yarn}/helpers.js +0 -0
- data/helpers/{yarn/test → test/yarn}/updater.test.js +1 -1
- data/helpers/yarn.lock +264 -298
- data/lib/dependabot/npm_and_yarn/file_fetcher/path_dependency_builder.rb +2 -6
- data/lib/dependabot/npm_and_yarn/file_parser/lockfile_parser.rb +17 -10
- data/lib/dependabot/npm_and_yarn/file_updater/npm_lockfile_updater.rb +4 -8
- data/lib/dependabot/npm_and_yarn/file_updater/yarn_lockfile_updater.rb +4 -8
- data/lib/dependabot/npm_and_yarn/native_helpers.rb +5 -26
- data/lib/dependabot/npm_and_yarn/update_checker/subdependency_version_resolver.rb +4 -12
- data/lib/dependabot/npm_and_yarn/update_checker/version_resolver.rb +4 -12
- metadata +34 -36
- data/helpers/npm/package.json +0 -12
- data/helpers/yarn/bin/run.js +0 -28
- data/helpers/yarn/lib/index.js +0 -11
- data/helpers/yarn/package.json +0 -12
data/helpers/yarn.lock
CHANGED
|
@@ -10,33 +10,33 @@
|
|
|
10
10
|
"@babel/highlight" "^7.0.0"
|
|
11
11
|
|
|
12
12
|
"@babel/core@^7.1.0":
|
|
13
|
-
version "7.
|
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
|
15
|
-
integrity sha512-
|
|
13
|
+
version "7.3.4"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
|
|
15
|
+
integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
|
|
16
16
|
dependencies:
|
|
17
17
|
"@babel/code-frame" "^7.0.0"
|
|
18
|
-
"@babel/generator" "^7.
|
|
18
|
+
"@babel/generator" "^7.3.4"
|
|
19
19
|
"@babel/helpers" "^7.2.0"
|
|
20
|
-
"@babel/parser" "^7.
|
|
20
|
+
"@babel/parser" "^7.3.4"
|
|
21
21
|
"@babel/template" "^7.2.2"
|
|
22
|
-
"@babel/traverse" "^7.
|
|
23
|
-
"@babel/types" "^7.
|
|
22
|
+
"@babel/traverse" "^7.3.4"
|
|
23
|
+
"@babel/types" "^7.3.4"
|
|
24
24
|
convert-source-map "^1.1.0"
|
|
25
25
|
debug "^4.1.0"
|
|
26
26
|
json5 "^2.1.0"
|
|
27
|
-
lodash "^4.17.
|
|
27
|
+
lodash "^4.17.11"
|
|
28
28
|
resolve "^1.3.2"
|
|
29
29
|
semver "^5.4.1"
|
|
30
30
|
source-map "^0.5.0"
|
|
31
31
|
|
|
32
|
-
"@babel/generator@^7.0.0", "@babel/generator@^7.
|
|
33
|
-
version "7.3.
|
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.
|
|
35
|
-
integrity sha512-
|
|
32
|
+
"@babel/generator@^7.0.0", "@babel/generator@^7.3.4":
|
|
33
|
+
version "7.3.4"
|
|
34
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e"
|
|
35
|
+
integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==
|
|
36
36
|
dependencies:
|
|
37
|
-
"@babel/types" "^7.3.
|
|
37
|
+
"@babel/types" "^7.3.4"
|
|
38
38
|
jsesc "^2.5.1"
|
|
39
|
-
lodash "^4.17.
|
|
39
|
+
lodash "^4.17.11"
|
|
40
40
|
source-map "^0.5.0"
|
|
41
41
|
trim-right "^1.0.1"
|
|
42
42
|
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
esutils "^2.0.2"
|
|
87
87
|
js-tokens "^4.0.0"
|
|
88
88
|
|
|
89
|
-
"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.
|
|
90
|
-
version "7.3.
|
|
91
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.
|
|
92
|
-
integrity sha512-
|
|
89
|
+
"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.3.4":
|
|
90
|
+
version "7.3.4"
|
|
91
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
|
|
92
|
+
integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
|
|
93
93
|
|
|
94
94
|
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
|
|
95
95
|
version "7.2.0"
|
|
@@ -107,28 +107,28 @@
|
|
|
107
107
|
"@babel/parser" "^7.2.2"
|
|
108
108
|
"@babel/types" "^7.2.2"
|
|
109
109
|
|
|
110
|
-
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.
|
|
111
|
-
version "7.
|
|
112
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.
|
|
113
|
-
integrity sha512-
|
|
110
|
+
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.3.4":
|
|
111
|
+
version "7.3.4"
|
|
112
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06"
|
|
113
|
+
integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==
|
|
114
114
|
dependencies:
|
|
115
115
|
"@babel/code-frame" "^7.0.0"
|
|
116
|
-
"@babel/generator" "^7.
|
|
116
|
+
"@babel/generator" "^7.3.4"
|
|
117
117
|
"@babel/helper-function-name" "^7.1.0"
|
|
118
118
|
"@babel/helper-split-export-declaration" "^7.0.0"
|
|
119
|
-
"@babel/parser" "^7.
|
|
120
|
-
"@babel/types" "^7.
|
|
119
|
+
"@babel/parser" "^7.3.4"
|
|
120
|
+
"@babel/types" "^7.3.4"
|
|
121
121
|
debug "^4.1.0"
|
|
122
122
|
globals "^11.1.0"
|
|
123
|
-
lodash "^4.17.
|
|
123
|
+
lodash "^4.17.11"
|
|
124
124
|
|
|
125
|
-
"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0":
|
|
126
|
-
version "7.3.
|
|
127
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.
|
|
128
|
-
integrity sha512-
|
|
125
|
+
"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4":
|
|
126
|
+
version "7.3.4"
|
|
127
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz#bf482eaeaffb367a28abbf9357a94963235d90ed"
|
|
128
|
+
integrity sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ==
|
|
129
129
|
dependencies:
|
|
130
130
|
esutils "^2.0.2"
|
|
131
|
-
lodash "^4.17.
|
|
131
|
+
lodash "^4.17.11"
|
|
132
132
|
to-fast-properties "^2.0.0"
|
|
133
133
|
|
|
134
134
|
"@dependabot/yarn-lib@^1.13.0":
|
|
@@ -233,15 +233,10 @@ acorn@^5.5.3:
|
|
|
233
233
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
|
|
234
234
|
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
|
|
235
235
|
|
|
236
|
-
acorn@^6.0.1:
|
|
237
|
-
version "6.
|
|
238
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.
|
|
239
|
-
integrity sha512-
|
|
240
|
-
|
|
241
|
-
acorn@^6.0.7:
|
|
242
|
-
version "6.1.0"
|
|
243
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.0.tgz#b0a3be31752c97a0f7013c5f4903b71a05db6818"
|
|
244
|
-
integrity sha512-MW/FjM+IvU9CgBzjO3UIPCE2pyEwUsoFl+VGdczOPEdxfGFjuKny/gN54mOuX7Qxmb9Rg9MCn2oKiSUeW+pjrw==
|
|
236
|
+
acorn@^6.0.1, acorn@^6.0.7:
|
|
237
|
+
version "6.1.1"
|
|
238
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"
|
|
239
|
+
integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==
|
|
245
240
|
|
|
246
241
|
agent-base@4, agent-base@^4.1.0, agent-base@~4.2.0:
|
|
247
242
|
version "4.2.1"
|
|
@@ -258,9 +253,9 @@ agentkeepalive@^3.4.1:
|
|
|
258
253
|
humanize-ms "^1.2.1"
|
|
259
254
|
|
|
260
255
|
ajv@^6.5.5, ajv@^6.9.1:
|
|
261
|
-
version "6.
|
|
262
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.
|
|
263
|
-
integrity sha512-
|
|
256
|
+
version "6.10.0"
|
|
257
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1"
|
|
258
|
+
integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==
|
|
264
259
|
dependencies:
|
|
265
260
|
fast-deep-equal "^2.0.1"
|
|
266
261
|
fast-json-stable-stringify "^2.0.0"
|
|
@@ -274,12 +269,7 @@ ansi-align@^2.0.0:
|
|
|
274
269
|
dependencies:
|
|
275
270
|
string-width "^2.0.0"
|
|
276
271
|
|
|
277
|
-
ansi-escapes@^3.0.0:
|
|
278
|
-
version "3.1.0"
|
|
279
|
-
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
|
|
280
|
-
integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==
|
|
281
|
-
|
|
282
|
-
ansi-escapes@^3.2.0:
|
|
272
|
+
ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
|
|
283
273
|
version "3.2.0"
|
|
284
274
|
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
|
|
285
275
|
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
|
|
@@ -451,11 +441,11 @@ async-limiter@~1.0.0:
|
|
|
451
441
|
integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==
|
|
452
442
|
|
|
453
443
|
async@^2.5.0, async@^2.6.1:
|
|
454
|
-
version "2.6.
|
|
455
|
-
resolved "https://registry.yarnpkg.com/async/-/async-2.6.
|
|
456
|
-
integrity sha512-
|
|
444
|
+
version "2.6.2"
|
|
445
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
|
|
446
|
+
integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==
|
|
457
447
|
dependencies:
|
|
458
|
-
lodash "^4.17.
|
|
448
|
+
lodash "^4.17.11"
|
|
459
449
|
|
|
460
450
|
asynckit@^0.4.0:
|
|
461
451
|
version "0.4.0"
|
|
@@ -488,9 +478,9 @@ babel-jest@^24.1.0:
|
|
|
488
478
|
slash "^2.0.0"
|
|
489
479
|
|
|
490
480
|
babel-plugin-istanbul@^5.1.0:
|
|
491
|
-
version "5.1.
|
|
492
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.
|
|
493
|
-
integrity sha512-
|
|
481
|
+
version "5.1.1"
|
|
482
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893"
|
|
483
|
+
integrity sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ==
|
|
494
484
|
dependencies:
|
|
495
485
|
find-up "^3.0.0"
|
|
496
486
|
istanbul-lib-instrument "^3.0.0"
|
|
@@ -702,9 +692,9 @@ byte-size@^5.0.1:
|
|
|
702
692
|
integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw==
|
|
703
693
|
|
|
704
694
|
bytes@^3.0.0:
|
|
705
|
-
version "3.
|
|
706
|
-
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.
|
|
707
|
-
integrity
|
|
695
|
+
version "3.1.0"
|
|
696
|
+
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
|
|
697
|
+
integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
|
|
708
698
|
|
|
709
699
|
cacache@^11.0.1, cacache@^11.3.2:
|
|
710
700
|
version "11.3.2"
|
|
@@ -757,9 +747,9 @@ camelcase@^4.0.0, camelcase@^4.1.0:
|
|
|
757
747
|
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
|
|
758
748
|
|
|
759
749
|
camelcase@^5.0.0:
|
|
760
|
-
version "5.
|
|
761
|
-
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.
|
|
762
|
-
integrity sha512-
|
|
750
|
+
version "5.1.0"
|
|
751
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.1.0.tgz#29e83b9cfaf7ad478f401a187ae089cf83c257ea"
|
|
752
|
+
integrity sha512-WP9f9OBL/TAbwOFBJL79FoS9UKUmnp82RWnhlwTgrAJeMq7lytHhe0Jzc6/P7Zq0+2oviXJuPlvkZalWUug9gg==
|
|
763
753
|
|
|
764
754
|
capture-exit@^1.2.0:
|
|
765
755
|
version "1.2.0"
|
|
@@ -1044,9 +1034,9 @@ copy-descriptor@^0.1.0:
|
|
|
1044
1034
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
|
1045
1035
|
|
|
1046
1036
|
core-js@^2.4.0:
|
|
1047
|
-
version "2.6.
|
|
1048
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.
|
|
1049
|
-
integrity sha512-
|
|
1037
|
+
version "2.6.5"
|
|
1038
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895"
|
|
1039
|
+
integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==
|
|
1050
1040
|
|
|
1051
1041
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
|
1052
1042
|
version "1.0.2"
|
|
@@ -1086,14 +1076,14 @@ crypto-random-string@^1.0.0:
|
|
|
1086
1076
|
integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
|
|
1087
1077
|
|
|
1088
1078
|
cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
|
|
1089
|
-
version "0.3.
|
|
1090
|
-
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.
|
|
1091
|
-
integrity sha512
|
|
1079
|
+
version "0.3.6"
|
|
1080
|
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad"
|
|
1081
|
+
integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==
|
|
1092
1082
|
|
|
1093
1083
|
cssstyle@^1.0.0:
|
|
1094
|
-
version "1.
|
|
1095
|
-
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.
|
|
1096
|
-
integrity sha512-
|
|
1084
|
+
version "1.2.1"
|
|
1085
|
+
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.1.tgz#3aceb2759eaf514ac1a21628d723d6043a819495"
|
|
1086
|
+
integrity sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A==
|
|
1097
1087
|
dependencies:
|
|
1098
1088
|
cssom "0.3.x"
|
|
1099
1089
|
|
|
@@ -1151,7 +1141,7 @@ debug@^3.0.0, debug@^3.1.0:
|
|
|
1151
1141
|
dependencies:
|
|
1152
1142
|
ms "^2.1.1"
|
|
1153
1143
|
|
|
1154
|
-
debug@^4.0.1, debug@^4.1.0:
|
|
1144
|
+
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
|
1155
1145
|
version "4.1.1"
|
|
1156
1146
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
|
|
1157
1147
|
integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
|
|
@@ -1316,9 +1306,9 @@ duplexer3@^0.1.4:
|
|
|
1316
1306
|
integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
|
|
1317
1307
|
|
|
1318
1308
|
duplexify@^3.4.2, duplexify@^3.5.0, duplexify@^3.6.0:
|
|
1319
|
-
version "3.
|
|
1320
|
-
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.
|
|
1321
|
-
integrity sha512-
|
|
1309
|
+
version "3.7.1"
|
|
1310
|
+
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
|
|
1311
|
+
integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
|
|
1322
1312
|
dependencies:
|
|
1323
1313
|
end-of-stream "^1.0.0"
|
|
1324
1314
|
inherits "^2.0.1"
|
|
@@ -1403,9 +1393,9 @@ es-to-primitive@^1.2.0:
|
|
|
1403
1393
|
is-symbol "^1.0.2"
|
|
1404
1394
|
|
|
1405
1395
|
es6-promise@^4.0.3:
|
|
1406
|
-
version "4.2.
|
|
1407
|
-
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.
|
|
1408
|
-
integrity sha512-
|
|
1396
|
+
version "4.2.6"
|
|
1397
|
+
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.6.tgz#b685edd8258886365ea62b57d30de28fadcd974f"
|
|
1398
|
+
integrity sha512-aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q==
|
|
1409
1399
|
|
|
1410
1400
|
es6-promisify@^5.0.0:
|
|
1411
1401
|
version "5.0.0"
|
|
@@ -1420,9 +1410,9 @@ escape-string-regexp@^1.0.5:
|
|
|
1420
1410
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
|
1421
1411
|
|
|
1422
1412
|
escodegen@^1.9.1:
|
|
1423
|
-
version "1.11.
|
|
1424
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.
|
|
1425
|
-
integrity sha512-
|
|
1413
|
+
version "1.11.1"
|
|
1414
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510"
|
|
1415
|
+
integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==
|
|
1426
1416
|
dependencies:
|
|
1427
1417
|
esprima "^3.1.3"
|
|
1428
1418
|
estraverse "^4.2.0"
|
|
@@ -1438,10 +1428,10 @@ eslint-plugin-prettier@^3.0.1:
|
|
|
1438
1428
|
dependencies:
|
|
1439
1429
|
prettier-linter-helpers "^1.0.0"
|
|
1440
1430
|
|
|
1441
|
-
eslint-scope@^4.0.
|
|
1442
|
-
version "4.0.
|
|
1443
|
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.
|
|
1444
|
-
integrity sha512-
|
|
1431
|
+
eslint-scope@^4.0.2:
|
|
1432
|
+
version "4.0.2"
|
|
1433
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.2.tgz#5f10cd6cabb1965bf479fa65745673439e21cb0e"
|
|
1434
|
+
integrity sha512-5q1+B/ogmHl8+paxtOKx38Z8LtWkVGuNt3+GQNErqwLl6ViNp/gdJGMCjZNxZ8j/VYjDNZ2Fo+eQc1TAVPIzbg==
|
|
1445
1435
|
dependencies:
|
|
1446
1436
|
esrecurse "^4.1.0"
|
|
1447
1437
|
estraverse "^4.1.1"
|
|
@@ -1456,10 +1446,10 @@ eslint-visitor-keys@^1.0.0:
|
|
|
1456
1446
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
|
1457
1447
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
|
1458
1448
|
|
|
1459
|
-
eslint@^5.
|
|
1460
|
-
version "5.
|
|
1461
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.
|
|
1462
|
-
integrity sha512-
|
|
1449
|
+
eslint@^5.15.0:
|
|
1450
|
+
version "5.15.0"
|
|
1451
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.15.0.tgz#f313a2f7c7628d39adeefdba4a9c41f842012c9e"
|
|
1452
|
+
integrity sha512-xwG7SS5JLeqkiR3iOmVgtF8Y6xPdtr6AAsN6ph7Q6R/fv+3UlKYoika8SmNzmb35qdRF+RfTY35kMEdtbi+9wg==
|
|
1463
1453
|
dependencies:
|
|
1464
1454
|
"@babel/code-frame" "^7.0.0"
|
|
1465
1455
|
ajv "^6.9.1"
|
|
@@ -1467,7 +1457,7 @@ eslint@^5.14.1:
|
|
|
1467
1457
|
cross-spawn "^6.0.5"
|
|
1468
1458
|
debug "^4.0.1"
|
|
1469
1459
|
doctrine "^3.0.0"
|
|
1470
|
-
eslint-scope "^4.0.
|
|
1460
|
+
eslint-scope "^4.0.2"
|
|
1471
1461
|
eslint-utils "^1.3.1"
|
|
1472
1462
|
eslint-visitor-keys "^1.0.0"
|
|
1473
1463
|
espree "^5.0.1"
|
|
@@ -1791,12 +1781,12 @@ flatted@^2.0.0:
|
|
|
1791
1781
|
integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==
|
|
1792
1782
|
|
|
1793
1783
|
flush-write-stream@^1.0.0:
|
|
1794
|
-
version "1.
|
|
1795
|
-
resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.
|
|
1796
|
-
integrity sha512-
|
|
1784
|
+
version "1.1.1"
|
|
1785
|
+
resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
|
|
1786
|
+
integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
|
|
1797
1787
|
dependencies:
|
|
1798
|
-
inherits "^2.0.
|
|
1799
|
-
readable-stream "^2.
|
|
1788
|
+
inherits "^2.0.3"
|
|
1789
|
+
readable-stream "^2.3.6"
|
|
1800
1790
|
|
|
1801
1791
|
for-in@^1.0.1, for-in@^1.0.2:
|
|
1802
1792
|
version "1.0.2"
|
|
@@ -2033,9 +2023,9 @@ global-dirs@^0.1.0:
|
|
|
2033
2023
|
ini "^1.3.4"
|
|
2034
2024
|
|
|
2035
2025
|
globals@^11.1.0, globals@^11.7.0:
|
|
2036
|
-
version "11.
|
|
2037
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-11.
|
|
2038
|
-
integrity sha512-
|
|
2026
|
+
version "11.11.0"
|
|
2027
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e"
|
|
2028
|
+
integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==
|
|
2039
2029
|
|
|
2040
2030
|
got@^6.7.1:
|
|
2041
2031
|
version "6.7.1"
|
|
@@ -2076,7 +2066,7 @@ gunzip-maybe@^1.4.0:
|
|
|
2076
2066
|
pumpify "^1.3.3"
|
|
2077
2067
|
through2 "^2.0.3"
|
|
2078
2068
|
|
|
2079
|
-
handlebars@^4.0
|
|
2069
|
+
handlebars@^4.1.0:
|
|
2080
2070
|
version "4.1.0"
|
|
2081
2071
|
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz#0d6a6f34ff1f63cecec8423aa4169827bf787c3a"
|
|
2082
2072
|
integrity sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==
|
|
@@ -2154,14 +2144,16 @@ has@^1.0.1, has@^1.0.3:
|
|
|
2154
2144
|
function-bind "^1.1.1"
|
|
2155
2145
|
|
|
2156
2146
|
hash-for-dep@^1.2.3:
|
|
2157
|
-
version "1.
|
|
2158
|
-
resolved "https://registry.yarnpkg.com/hash-for-dep/-/hash-for-dep-1.
|
|
2159
|
-
integrity sha512-
|
|
2147
|
+
version "1.5.0"
|
|
2148
|
+
resolved "https://registry.yarnpkg.com/hash-for-dep/-/hash-for-dep-1.5.0.tgz#02dacb5a3ee14e45d06f5aa039d142c970940476"
|
|
2149
|
+
integrity sha512-Jtp264IRh25UmNHBNjB9jgYQGOpUVFMzt8E2MS6dJyR5uAO14bq4B9q5znOStkKpOpcxNUrYtg3hgpOSjQSONw==
|
|
2160
2150
|
dependencies:
|
|
2161
2151
|
broccoli-kitchen-sink-helpers "^0.3.1"
|
|
2162
2152
|
heimdalljs "^0.2.3"
|
|
2163
2153
|
heimdalljs-logger "^0.1.7"
|
|
2164
|
-
|
|
2154
|
+
path-root "^0.1.1"
|
|
2155
|
+
resolve "^1.10.0"
|
|
2156
|
+
resolve-package-path "^1.0.11"
|
|
2165
2157
|
|
|
2166
2158
|
heimdalljs-logger@^0.1.7:
|
|
2167
2159
|
version "0.1.10"
|
|
@@ -2363,11 +2355,6 @@ ip-regex@^2.1.0:
|
|
|
2363
2355
|
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
|
2364
2356
|
integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
|
|
2365
2357
|
|
|
2366
|
-
ip-regex@^3.0.0:
|
|
2367
|
-
version "3.0.0"
|
|
2368
|
-
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-3.0.0.tgz#0a934694b4066558c46294244a23cc33116bf732"
|
|
2369
|
-
integrity sha512-T8wDtjy+Qf2TAPDQmBp0eGKJ8GavlWlUnamr3wRn6vvdZlKVuJXXMlSncYFRYgVHOM3If5NR1H4+OvVQU9Idvg==
|
|
2370
|
-
|
|
2371
2358
|
ip@^1.1.5:
|
|
2372
2359
|
version "1.1.5"
|
|
2373
2360
|
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
|
|
@@ -2645,6 +2632,11 @@ is-windows@^1.0.0, is-windows@^1.0.2:
|
|
|
2645
2632
|
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
|
|
2646
2633
|
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
|
|
2647
2634
|
|
|
2635
|
+
is-wsl@^1.1.0:
|
|
2636
|
+
version "1.1.0"
|
|
2637
|
+
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
|
|
2638
|
+
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
|
|
2639
|
+
|
|
2648
2640
|
isarray@0.0.1:
|
|
2649
2641
|
version "0.0.1"
|
|
2650
2642
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
|
|
@@ -2678,92 +2670,75 @@ isstream@~0.1.2:
|
|
|
2678
2670
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
|
2679
2671
|
|
|
2680
2672
|
istanbul-api@^2.0.8:
|
|
2681
|
-
version "2.
|
|
2682
|
-
resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.
|
|
2683
|
-
integrity sha512-
|
|
2673
|
+
version "2.1.1"
|
|
2674
|
+
resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0"
|
|
2675
|
+
integrity sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw==
|
|
2684
2676
|
dependencies:
|
|
2685
2677
|
async "^2.6.1"
|
|
2686
2678
|
compare-versions "^3.2.1"
|
|
2687
2679
|
fileset "^2.0.3"
|
|
2688
|
-
istanbul-lib-coverage "^2.0.
|
|
2689
|
-
istanbul-lib-hook "^2.0.
|
|
2690
|
-
istanbul-lib-instrument "^3.0
|
|
2691
|
-
istanbul-lib-report "^2.0.
|
|
2692
|
-
istanbul-lib-source-maps "^3.0.
|
|
2693
|
-
istanbul-reports "^2.
|
|
2680
|
+
istanbul-lib-coverage "^2.0.3"
|
|
2681
|
+
istanbul-lib-hook "^2.0.3"
|
|
2682
|
+
istanbul-lib-instrument "^3.1.0"
|
|
2683
|
+
istanbul-lib-report "^2.0.4"
|
|
2684
|
+
istanbul-lib-source-maps "^3.0.2"
|
|
2685
|
+
istanbul-reports "^2.1.1"
|
|
2694
2686
|
js-yaml "^3.12.0"
|
|
2695
2687
|
make-dir "^1.3.0"
|
|
2688
|
+
minimatch "^3.0.4"
|
|
2696
2689
|
once "^1.4.0"
|
|
2697
2690
|
|
|
2698
|
-
istanbul-lib-coverage@^2.0.
|
|
2699
|
-
version "2.0.
|
|
2700
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.
|
|
2701
|
-
integrity sha512-
|
|
2702
|
-
|
|
2703
|
-
istanbul-lib-coverage@^2.0.2:
|
|
2704
|
-
version "2.0.2"
|
|
2705
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz#d5db9a7a4bb8fdbd62ec746226385987b73a8f43"
|
|
2706
|
-
integrity sha512-4CsY730KHy12ya/YNKubrMlb7EZZVsEPhXntyRY/Cbs7HN5HdznLbI4UbvIGHgocxHx3VkGe7l6IN1lipetuGg==
|
|
2691
|
+
istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3:
|
|
2692
|
+
version "2.0.3"
|
|
2693
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba"
|
|
2694
|
+
integrity sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==
|
|
2707
2695
|
|
|
2708
|
-
istanbul-lib-hook@^2.0.
|
|
2709
|
-
version "2.0.
|
|
2710
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.
|
|
2711
|
-
integrity sha512-
|
|
2696
|
+
istanbul-lib-hook@^2.0.3:
|
|
2697
|
+
version "2.0.3"
|
|
2698
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz#e0e581e461c611be5d0e5ef31c5f0109759916fb"
|
|
2699
|
+
integrity sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA==
|
|
2712
2700
|
dependencies:
|
|
2713
2701
|
append-transform "^1.0.0"
|
|
2714
2702
|
|
|
2715
|
-
istanbul-lib-instrument@^3.0.0:
|
|
2716
|
-
version "3.
|
|
2717
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.
|
|
2718
|
-
integrity sha512-
|
|
2719
|
-
dependencies:
|
|
2720
|
-
"@babel/generator" "^7.0.0"
|
|
2721
|
-
"@babel/parser" "^7.0.0"
|
|
2722
|
-
"@babel/template" "^7.0.0"
|
|
2723
|
-
"@babel/traverse" "^7.0.0"
|
|
2724
|
-
"@babel/types" "^7.0.0"
|
|
2725
|
-
istanbul-lib-coverage "^2.0.1"
|
|
2726
|
-
semver "^5.5.0"
|
|
2727
|
-
|
|
2728
|
-
istanbul-lib-instrument@^3.0.1:
|
|
2729
|
-
version "3.0.1"
|
|
2730
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.0.1.tgz#dd631e117dd9891e8bf1de7bb400cb8e491363af"
|
|
2731
|
-
integrity sha512-/LTPhh1YKXjJlb5uggsiZjJHuViIljcIsB1zqmZegIw2yQ4l8LRksRGebJrZUFVEE28ZtKzmmT50W5tpAucfJg==
|
|
2703
|
+
istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.1.0:
|
|
2704
|
+
version "3.1.0"
|
|
2705
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz#a2b5484a7d445f1f311e93190813fa56dfb62971"
|
|
2706
|
+
integrity sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA==
|
|
2732
2707
|
dependencies:
|
|
2733
2708
|
"@babel/generator" "^7.0.0"
|
|
2734
2709
|
"@babel/parser" "^7.0.0"
|
|
2735
2710
|
"@babel/template" "^7.0.0"
|
|
2736
2711
|
"@babel/traverse" "^7.0.0"
|
|
2737
2712
|
"@babel/types" "^7.0.0"
|
|
2738
|
-
istanbul-lib-coverage "^2.0.
|
|
2713
|
+
istanbul-lib-coverage "^2.0.3"
|
|
2739
2714
|
semver "^5.5.0"
|
|
2740
2715
|
|
|
2741
|
-
istanbul-lib-report@^2.0.
|
|
2742
|
-
version "2.0.
|
|
2743
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.
|
|
2744
|
-
integrity sha512-
|
|
2716
|
+
istanbul-lib-report@^2.0.4:
|
|
2717
|
+
version "2.0.4"
|
|
2718
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz#bfd324ee0c04f59119cb4f07dab157d09f24d7e4"
|
|
2719
|
+
integrity sha512-sOiLZLAWpA0+3b5w5/dq0cjm2rrNdAfHWaGhmn7XEFW6X++IV9Ohn+pnELAl9K3rfpaeBfbmH9JU5sejacdLeA==
|
|
2745
2720
|
dependencies:
|
|
2746
|
-
istanbul-lib-coverage "^2.0.
|
|
2721
|
+
istanbul-lib-coverage "^2.0.3"
|
|
2747
2722
|
make-dir "^1.3.0"
|
|
2748
|
-
supports-color "^
|
|
2723
|
+
supports-color "^6.0.0"
|
|
2749
2724
|
|
|
2750
|
-
istanbul-lib-source-maps@^3.0.1:
|
|
2751
|
-
version "3.0.
|
|
2752
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.
|
|
2753
|
-
integrity sha512-
|
|
2725
|
+
istanbul-lib-source-maps@^3.0.1, istanbul-lib-source-maps@^3.0.2:
|
|
2726
|
+
version "3.0.2"
|
|
2727
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz#f1e817229a9146e8424a28e5d69ba220fda34156"
|
|
2728
|
+
integrity sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ==
|
|
2754
2729
|
dependencies:
|
|
2755
|
-
debug "^
|
|
2756
|
-
istanbul-lib-coverage "^2.0.
|
|
2730
|
+
debug "^4.1.1"
|
|
2731
|
+
istanbul-lib-coverage "^2.0.3"
|
|
2757
2732
|
make-dir "^1.3.0"
|
|
2758
2733
|
rimraf "^2.6.2"
|
|
2759
2734
|
source-map "^0.6.1"
|
|
2760
2735
|
|
|
2761
|
-
istanbul-reports@^2.
|
|
2762
|
-
version "2.
|
|
2763
|
-
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.
|
|
2764
|
-
integrity sha512-
|
|
2736
|
+
istanbul-reports@^2.1.1:
|
|
2737
|
+
version "2.1.1"
|
|
2738
|
+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz#72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9"
|
|
2739
|
+
integrity sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw==
|
|
2765
2740
|
dependencies:
|
|
2766
|
-
handlebars "^4.0
|
|
2741
|
+
handlebars "^4.1.0"
|
|
2767
2742
|
|
|
2768
2743
|
jest-changed-files@^24.0.0:
|
|
2769
2744
|
version "24.0.0"
|
|
@@ -3100,9 +3075,9 @@ jest@^24.1.0:
|
|
|
3100
3075
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
3101
3076
|
|
|
3102
3077
|
js-yaml@^3.12.0:
|
|
3103
|
-
version "3.12.
|
|
3104
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.
|
|
3105
|
-
integrity sha512-
|
|
3078
|
+
version "3.12.2"
|
|
3079
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc"
|
|
3080
|
+
integrity sha512-QHn/Lh/7HhZ/Twc7vJYQTkjuCa0kaCcDcjK5Zlk2rvnUpy7DxMJ23+Jc2dcyvltwQVg1nygAVlB2oRDFHoRS5Q==
|
|
3106
3081
|
dependencies:
|
|
3107
3082
|
argparse "^1.0.7"
|
|
3108
3083
|
esprima "^4.0.0"
|
|
@@ -3234,10 +3209,10 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
|
3234
3209
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
|
3235
3210
|
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
|
3236
3211
|
|
|
3237
|
-
kleur@^3.0.
|
|
3238
|
-
version "3.0.
|
|
3239
|
-
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.
|
|
3240
|
-
integrity sha512-
|
|
3212
|
+
kleur@^3.0.2:
|
|
3213
|
+
version "3.0.2"
|
|
3214
|
+
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.2.tgz#83c7ec858a41098b613d5998a7b653962b504f68"
|
|
3215
|
+
integrity sha512-3h7B2WRT5LNXOtQiAaWonilegHcPSf9nLVXlSTci8lu1dZUuui61+EsPEZqSVxY7rXYmB2DVKMQILxaO5WL61Q==
|
|
3241
3216
|
|
|
3242
3217
|
latest-version@^3.0.0:
|
|
3243
3218
|
version "3.1.0"
|
|
@@ -3370,9 +3345,9 @@ libnpmorg@*, libnpmorg@^1.0.0:
|
|
|
3370
3345
|
npm-registry-fetch "^3.8.0"
|
|
3371
3346
|
|
|
3372
3347
|
libnpmpublish@^1.1.0:
|
|
3373
|
-
version "1.1.
|
|
3374
|
-
resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.
|
|
3375
|
-
integrity sha512-
|
|
3348
|
+
version "1.1.1"
|
|
3349
|
+
resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.1.tgz#ff0c6bb0b4ad2bda2ad1f5fba6760a4af37125f0"
|
|
3350
|
+
integrity sha512-nefbvJd/wY38zdt+b9SHL6171vqBrMtZ56Gsgfd0duEKb/pB8rDT4/ObUQLrHz1tOfht1flt2zM+UGaemzAG5g==
|
|
3376
3351
|
dependencies:
|
|
3377
3352
|
aproba "^2.0.0"
|
|
3378
3353
|
figgy-pudding "^3.5.1"
|
|
@@ -3453,11 +3428,11 @@ locate-path@^3.0.0:
|
|
|
3453
3428
|
path-exists "^3.0.0"
|
|
3454
3429
|
|
|
3455
3430
|
lock-verify@^2.0.2:
|
|
3456
|
-
version "2.0
|
|
3457
|
-
resolved "https://registry.yarnpkg.com/lock-verify/-/lock-verify-2.0.
|
|
3458
|
-
integrity sha512-
|
|
3431
|
+
version "2.1.0"
|
|
3432
|
+
resolved "https://registry.yarnpkg.com/lock-verify/-/lock-verify-2.1.0.tgz#fff4c918b8db9497af0c5fa7f6d71555de3ceb47"
|
|
3433
|
+
integrity sha512-vcLpxnGvrqisKvLQ2C2v0/u7LVly17ak2YSgoK4PrdsYBXQIax19vhKiLfvKNFx7FRrpTnitrpzF/uuCMuorIg==
|
|
3459
3434
|
dependencies:
|
|
3460
|
-
npm-package-arg "^
|
|
3435
|
+
npm-package-arg "^6.1.0"
|
|
3461
3436
|
semver "^5.4.1"
|
|
3462
3437
|
|
|
3463
3438
|
lockfile@^1.0.4:
|
|
@@ -3559,7 +3534,7 @@ lodash.without@~4.4.0:
|
|
|
3559
3534
|
resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac"
|
|
3560
3535
|
integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw=
|
|
3561
3536
|
|
|
3562
|
-
lodash@^4.
|
|
3537
|
+
lodash@^4.17.11, lodash@^4.17.5:
|
|
3563
3538
|
version "4.17.11"
|
|
3564
3539
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
|
|
3565
3540
|
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
|
|
@@ -3667,13 +3642,13 @@ mem@^1.1.0:
|
|
|
3667
3642
|
mimic-fn "^1.0.0"
|
|
3668
3643
|
|
|
3669
3644
|
mem@^4.0.0:
|
|
3670
|
-
version "4.
|
|
3671
|
-
resolved "https://registry.yarnpkg.com/mem/-/mem-4.
|
|
3672
|
-
integrity sha512-
|
|
3645
|
+
version "4.1.0"
|
|
3646
|
+
resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a"
|
|
3647
|
+
integrity sha512-I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg==
|
|
3673
3648
|
dependencies:
|
|
3674
3649
|
map-age-cleaner "^0.1.1"
|
|
3675
3650
|
mimic-fn "^1.0.0"
|
|
3676
|
-
p-is-promise "^
|
|
3651
|
+
p-is-promise "^2.0.0"
|
|
3677
3652
|
|
|
3678
3653
|
merge-stream@^1.0.1:
|
|
3679
3654
|
version "1.0.1"
|
|
@@ -3725,17 +3700,17 @@ micromatch@^3.1.10, micromatch@^3.1.4:
|
|
|
3725
3700
|
snapdragon "^0.8.1"
|
|
3726
3701
|
to-regex "^3.0.2"
|
|
3727
3702
|
|
|
3728
|
-
mime-db@~1.
|
|
3729
|
-
version "1.
|
|
3730
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
|
3731
|
-
integrity sha512-
|
|
3703
|
+
mime-db@~1.38.0:
|
|
3704
|
+
version "1.38.0"
|
|
3705
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
|
|
3706
|
+
integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==
|
|
3732
3707
|
|
|
3733
3708
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
|
3734
|
-
version "2.1.
|
|
3735
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
|
3736
|
-
integrity sha512-
|
|
3709
|
+
version "2.1.22"
|
|
3710
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd"
|
|
3711
|
+
integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==
|
|
3737
3712
|
dependencies:
|
|
3738
|
-
mime-db "~1.
|
|
3713
|
+
mime-db "~1.38.0"
|
|
3739
3714
|
|
|
3740
3715
|
mimic-fn@^1.0.0:
|
|
3741
3716
|
version "1.2.0"
|
|
@@ -3915,9 +3890,9 @@ nock@^10.0.6:
|
|
|
3915
3890
|
semver "^5.5.0"
|
|
3916
3891
|
|
|
3917
3892
|
node-emoji@^1.6.1:
|
|
3918
|
-
version "1.
|
|
3919
|
-
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.
|
|
3920
|
-
integrity sha512
|
|
3893
|
+
version "1.10.0"
|
|
3894
|
+
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da"
|
|
3895
|
+
integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==
|
|
3921
3896
|
dependencies:
|
|
3922
3897
|
lodash.toarray "^4.4.0"
|
|
3923
3898
|
|
|
@@ -3959,11 +3934,12 @@ node-modules-regexp@^1.0.0:
|
|
|
3959
3934
|
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
|
3960
3935
|
|
|
3961
3936
|
node-notifier@^5.2.1:
|
|
3962
|
-
version "5.
|
|
3963
|
-
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.
|
|
3964
|
-
integrity sha512-
|
|
3937
|
+
version "5.4.0"
|
|
3938
|
+
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a"
|
|
3939
|
+
integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==
|
|
3965
3940
|
dependencies:
|
|
3966
3941
|
growly "^1.3.0"
|
|
3942
|
+
is-wsl "^1.1.0"
|
|
3967
3943
|
semver "^5.5.0"
|
|
3968
3944
|
shellwords "^0.1.1"
|
|
3969
3945
|
which "^1.3.0"
|
|
@@ -4034,9 +4010,9 @@ npm-audit-report@^1.3.2:
|
|
|
4034
4010
|
console-control-strings "^1.1.0"
|
|
4035
4011
|
|
|
4036
4012
|
npm-bundled@^1.0.1:
|
|
4037
|
-
version "1.0.
|
|
4038
|
-
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.
|
|
4039
|
-
integrity sha512-
|
|
4013
|
+
version "1.0.6"
|
|
4014
|
+
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
|
|
4015
|
+
integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
|
|
4040
4016
|
|
|
4041
4017
|
npm-cache-filename@~1.0.2:
|
|
4042
4018
|
version "1.0.2"
|
|
@@ -4069,7 +4045,7 @@ npm-logical-tree@^1.2.1:
|
|
|
4069
4045
|
resolved "https://registry.yarnpkg.com/npm-logical-tree/-/npm-logical-tree-1.2.1.tgz#44610141ca24664cad35d1e607176193fd8f5b88"
|
|
4070
4046
|
integrity sha512-AJI/qxDB2PWI4LG1CYN579AY1vCiNyWfkiquCsJWqntRu/WwimVrC8yXeILBFHDwxfOejxewlmnvW9XXjMlYIg==
|
|
4071
4047
|
|
|
4072
|
-
"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0",
|
|
4048
|
+
"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0:
|
|
4073
4049
|
version "6.1.0"
|
|
4074
4050
|
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1"
|
|
4075
4051
|
integrity sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA==
|
|
@@ -4080,9 +4056,9 @@ npm-logical-tree@^1.2.1:
|
|
|
4080
4056
|
validate-npm-package-name "^3.0.0"
|
|
4081
4057
|
|
|
4082
4058
|
npm-packlist@^1.1.12, npm-packlist@^1.1.6, npm-packlist@^1.3.0:
|
|
4083
|
-
version "1.
|
|
4084
|
-
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.
|
|
4085
|
-
integrity sha512
|
|
4059
|
+
version "1.4.1"
|
|
4060
|
+
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc"
|
|
4061
|
+
integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==
|
|
4086
4062
|
dependencies:
|
|
4087
4063
|
ignore-walk "^3.0.1"
|
|
4088
4064
|
npm-bundled "^1.0.1"
|
|
@@ -4129,7 +4105,7 @@ npm-user-validate@~1.0.0:
|
|
|
4129
4105
|
resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-1.0.0.tgz#8ceca0f5cea04d4e93519ef72d0557a75122e951"
|
|
4130
4106
|
integrity sha1-jOyg9c6gTU6TUZ73LQVXp1Ei6VE=
|
|
4131
4107
|
|
|
4132
|
-
npm@^6.
|
|
4108
|
+
npm@^6.7.0:
|
|
4133
4109
|
version "6.8.0"
|
|
4134
4110
|
resolved "https://registry.yarnpkg.com/npm/-/npm-6.8.0.tgz#62996dd6aa235dac175b13968a6d7f815ebf8257"
|
|
4135
4111
|
integrity sha512-xMH6V0OCSJ5ZET6yWPI3BmJSqMMCuVJSIcLx3LSH/SrratFSt6EDuCuGRFMQYty98Q1l6x/7vKmfURosoyWgrA==
|
|
@@ -4152,7 +4128,6 @@ npm@^6.8.0:
|
|
|
4152
4128
|
cmd-shim "~2.0.2"
|
|
4153
4129
|
columnify "~1.5.4"
|
|
4154
4130
|
config-chain "^1.1.12"
|
|
4155
|
-
debuglog "*"
|
|
4156
4131
|
detect-indent "~5.0.0"
|
|
4157
4132
|
detect-newline "^2.1.0"
|
|
4158
4133
|
dezalgo "~1.0.3"
|
|
@@ -4167,7 +4142,6 @@ npm@^6.8.0:
|
|
|
4167
4142
|
has-unicode "~2.0.1"
|
|
4168
4143
|
hosted-git-info "^2.7.1"
|
|
4169
4144
|
iferr "^1.0.2"
|
|
4170
|
-
imurmurhash "*"
|
|
4171
4145
|
inflight "~1.0.6"
|
|
4172
4146
|
inherits "~2.0.3"
|
|
4173
4147
|
ini "^1.3.5"
|
|
@@ -4177,22 +4151,12 @@ npm@^6.8.0:
|
|
|
4177
4151
|
lazy-property "~1.0.0"
|
|
4178
4152
|
libcipm "^3.0.3"
|
|
4179
4153
|
libnpm "^2.0.1"
|
|
4180
|
-
libnpmaccess "*"
|
|
4181
4154
|
libnpmhook "^5.0.2"
|
|
4182
|
-
libnpmorg "*"
|
|
4183
|
-
libnpmsearch "*"
|
|
4184
|
-
libnpmteam "*"
|
|
4185
4155
|
libnpx "^10.2.0"
|
|
4186
4156
|
lock-verify "^2.0.2"
|
|
4187
4157
|
lockfile "^1.0.4"
|
|
4188
|
-
lodash._baseindexof "*"
|
|
4189
4158
|
lodash._baseuniq "~4.6.0"
|
|
4190
|
-
lodash._bindcallback "*"
|
|
4191
|
-
lodash._cacheindexof "*"
|
|
4192
|
-
lodash._createcache "*"
|
|
4193
|
-
lodash._getnative "*"
|
|
4194
4159
|
lodash.clonedeep "~4.5.0"
|
|
4195
|
-
lodash.restparam "*"
|
|
4196
4160
|
lodash.union "~4.6.0"
|
|
4197
4161
|
lodash.uniq "~4.5.0"
|
|
4198
4162
|
lodash.without "~4.4.0"
|
|
@@ -4211,7 +4175,6 @@ npm@^6.8.0:
|
|
|
4211
4175
|
npm-package-arg "^6.1.0"
|
|
4212
4176
|
npm-packlist "^1.3.0"
|
|
4213
4177
|
npm-pick-manifest "^2.2.3"
|
|
4214
|
-
npm-profile "*"
|
|
4215
4178
|
npm-registry-fetch "^3.9.0"
|
|
4216
4179
|
npm-user-validate "~1.0.0"
|
|
4217
4180
|
npmlog "~4.1.2"
|
|
@@ -4230,7 +4193,6 @@ npm@^6.8.0:
|
|
|
4230
4193
|
read-package-json "^2.0.13"
|
|
4231
4194
|
read-package-tree "^5.2.2"
|
|
4232
4195
|
readable-stream "^3.1.1"
|
|
4233
|
-
readdir-scoped-modules "*"
|
|
4234
4196
|
request "^2.88.0"
|
|
4235
4197
|
retry "^0.12.0"
|
|
4236
4198
|
rimraf "^2.6.3"
|
|
@@ -4273,9 +4235,9 @@ number-is-nan@^1.0.0:
|
|
|
4273
4235
|
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
|
|
4274
4236
|
|
|
4275
4237
|
nwsapi@^2.0.7:
|
|
4276
|
-
version "2.
|
|
4277
|
-
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.
|
|
4278
|
-
integrity sha512-
|
|
4238
|
+
version "2.1.1"
|
|
4239
|
+
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.1.tgz#08d6d75e69fd791bdea31507ffafe8c843b67e9c"
|
|
4240
|
+
integrity sha512-T5GaA1J/d34AC8mkrFD2O0DR17kwJ702ZOtJOsS8RpbsQZVOC2/xYFb1i/cw+xdM54JIlMuojjDOYct8GIWtwg==
|
|
4279
4241
|
|
|
4280
4242
|
oauth-sign@~0.9.0:
|
|
4281
4243
|
version "0.9.0"
|
|
@@ -4297,9 +4259,9 @@ object-copy@^0.1.0:
|
|
|
4297
4259
|
kind-of "^3.0.3"
|
|
4298
4260
|
|
|
4299
4261
|
object-keys@^1.0.12:
|
|
4300
|
-
version "1.0
|
|
4301
|
-
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.
|
|
4302
|
-
integrity sha512-
|
|
4262
|
+
version "1.1.0"
|
|
4263
|
+
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.0.tgz#11bd22348dd2e096a045ab06f6c85bcc340fa032"
|
|
4264
|
+
integrity sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==
|
|
4303
4265
|
|
|
4304
4266
|
object-path@^0.11.2:
|
|
4305
4267
|
version "0.11.4"
|
|
@@ -4428,10 +4390,10 @@ p-finally@^1.0.0:
|
|
|
4428
4390
|
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
|
4429
4391
|
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
|
|
4430
4392
|
|
|
4431
|
-
p-is-promise@^
|
|
4432
|
-
version "
|
|
4433
|
-
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-
|
|
4434
|
-
integrity
|
|
4393
|
+
p-is-promise@^2.0.0:
|
|
4394
|
+
version "2.0.0"
|
|
4395
|
+
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5"
|
|
4396
|
+
integrity sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==
|
|
4435
4397
|
|
|
4436
4398
|
p-limit@^1.1.0:
|
|
4437
4399
|
version "1.3.0"
|
|
@@ -4441,9 +4403,9 @@ p-limit@^1.1.0:
|
|
|
4441
4403
|
p-try "^1.0.0"
|
|
4442
4404
|
|
|
4443
4405
|
p-limit@^2.0.0:
|
|
4444
|
-
version "2.
|
|
4445
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.
|
|
4446
|
-
integrity sha512-
|
|
4406
|
+
version "2.2.0"
|
|
4407
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2"
|
|
4408
|
+
integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==
|
|
4447
4409
|
dependencies:
|
|
4448
4410
|
p-try "^2.0.0"
|
|
4449
4411
|
|
|
@@ -4487,9 +4449,9 @@ package-json@^4.0.0:
|
|
|
4487
4449
|
semver "^5.1.0"
|
|
4488
4450
|
|
|
4489
4451
|
pacote@^9.1.0, pacote@^9.2.3, pacote@^9.4.1:
|
|
4490
|
-
version "9.
|
|
4491
|
-
resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.
|
|
4492
|
-
integrity sha512-
|
|
4452
|
+
version "9.5.0"
|
|
4453
|
+
resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.5.0.tgz#85f3013a3f6dd51c108b0ccabd3de8102ddfaeda"
|
|
4454
|
+
integrity sha512-aUplXozRbzhaJO48FaaeClmN+2Mwt741MC6M3bevIGZwdCaP7frXzbUOfOWa91FPHoLITzG0hYaKY363lxO3bg==
|
|
4493
4455
|
dependencies:
|
|
4494
4456
|
bluebird "^3.5.3"
|
|
4495
4457
|
cacache "^11.3.2"
|
|
@@ -4593,6 +4555,18 @@ path-parse@^1.0.6:
|
|
|
4593
4555
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
|
4594
4556
|
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
|
4595
4557
|
|
|
4558
|
+
path-root-regex@^0.1.0:
|
|
4559
|
+
version "0.1.2"
|
|
4560
|
+
resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
|
|
4561
|
+
integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=
|
|
4562
|
+
|
|
4563
|
+
path-root@^0.1.1:
|
|
4564
|
+
version "0.1.1"
|
|
4565
|
+
resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
|
|
4566
|
+
integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=
|
|
4567
|
+
dependencies:
|
|
4568
|
+
path-root-regex "^0.1.0"
|
|
4569
|
+
|
|
4596
4570
|
path-type@^3.0.0:
|
|
4597
4571
|
version "3.0.0"
|
|
4598
4572
|
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
|
|
@@ -4625,9 +4599,9 @@ pify@^3.0.0:
|
|
|
4625
4599
|
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
|
4626
4600
|
|
|
4627
4601
|
pirates@^4.0.0:
|
|
4628
|
-
version "4.0.
|
|
4629
|
-
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.
|
|
4630
|
-
integrity sha512-
|
|
4602
|
+
version "4.0.1"
|
|
4603
|
+
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
|
|
4604
|
+
integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
|
|
4631
4605
|
dependencies:
|
|
4632
4606
|
node-modules-regexp "^1.0.0"
|
|
4633
4607
|
|
|
@@ -4712,11 +4686,11 @@ promise-retry@^1.1.1:
|
|
|
4712
4686
|
retry "^0.10.0"
|
|
4713
4687
|
|
|
4714
4688
|
prompts@^2.0.1:
|
|
4715
|
-
version "2.0.
|
|
4716
|
-
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.
|
|
4717
|
-
integrity sha512-
|
|
4689
|
+
version "2.0.3"
|
|
4690
|
+
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.3.tgz#c5ccb324010b2e8f74752aadceeb57134c1d2522"
|
|
4691
|
+
integrity sha512-H8oWEoRZpybm6NV4to9/1limhttEo13xK62pNvn2JzY0MA03p7s0OjtmhXyon3uJmxiJJVSuUwEJFFssI3eBiQ==
|
|
4718
4692
|
dependencies:
|
|
4719
|
-
kleur "^3.0.
|
|
4693
|
+
kleur "^3.0.2"
|
|
4720
4694
|
sisteransi "^1.0.0"
|
|
4721
4695
|
|
|
4722
4696
|
promzard@^0.3.0:
|
|
@@ -4839,9 +4813,9 @@ query-string@^5.0.1:
|
|
|
4839
4813
|
strict-uri-encode "^1.0.0"
|
|
4840
4814
|
|
|
4841
4815
|
query-string@^6.2.0:
|
|
4842
|
-
version "6.
|
|
4843
|
-
resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.
|
|
4844
|
-
integrity sha512-
|
|
4816
|
+
version "6.3.0"
|
|
4817
|
+
resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.3.0.tgz#41ae8a61e1213c80b182d5db6cf129e05af89fc5"
|
|
4818
|
+
integrity sha512-jkpCkoHiAA2BYZvni5GieU3x860QDfkh2+M6bPnrYUywqOWbGwPq5VzntTS06ixX4GVHEiq2ZhlmGy/e9LQ3zA==
|
|
4845
4819
|
dependencies:
|
|
4846
4820
|
decode-uri-component "^0.2.0"
|
|
4847
4821
|
strict-uri-encode "^2.0.0"
|
|
@@ -4938,7 +4912,7 @@ read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7:
|
|
|
4938
4912
|
dependencies:
|
|
4939
4913
|
mute-stream "~0.0.4"
|
|
4940
4914
|
|
|
4941
|
-
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.
|
|
4915
|
+
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6:
|
|
4942
4916
|
version "2.3.6"
|
|
4943
4917
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
|
|
4944
4918
|
integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==
|
|
@@ -4952,9 +4926,9 @@ read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7:
|
|
|
4952
4926
|
util-deprecate "~1.0.1"
|
|
4953
4927
|
|
|
4954
4928
|
readable-stream@^3.1.1:
|
|
4955
|
-
version "3.
|
|
4956
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.
|
|
4957
|
-
integrity sha512-
|
|
4929
|
+
version "3.2.0"
|
|
4930
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.2.0.tgz#de17f229864c120a9f56945756e4f32c4045245d"
|
|
4931
|
+
integrity sha512-RV20kLjdmpZuTF1INEb9IA3L68Nmi+Ri7ppZqo78wj//Pn62fCoJyV9zalccNzDD/OuJpMG4f+pfMl8+L6QdGw==
|
|
4958
4932
|
dependencies:
|
|
4959
4933
|
inherits "^2.0.3"
|
|
4960
4934
|
string_decoder "^1.1.1"
|
|
@@ -4981,9 +4955,9 @@ readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0:
|
|
|
4981
4955
|
once "^1.3.0"
|
|
4982
4956
|
|
|
4983
4957
|
realpath-native@^1.0.0, realpath-native@^1.0.2:
|
|
4984
|
-
version "1.0
|
|
4985
|
-
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.
|
|
4986
|
-
integrity sha512
|
|
4958
|
+
version "1.1.0"
|
|
4959
|
+
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
|
|
4960
|
+
integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
|
|
4987
4961
|
dependencies:
|
|
4988
4962
|
util.promisify "^1.0.0"
|
|
4989
4963
|
|
|
@@ -5047,21 +5021,21 @@ request-capture-har@^1.2.2:
|
|
|
5047
5021
|
resolved "https://registry.yarnpkg.com/request-capture-har/-/request-capture-har-1.2.2.tgz#cd692cfb2cc744fd84a3358aac6ee51528cf720d"
|
|
5048
5022
|
integrity sha1-zWks+yzHRP2EozWKrG7lFSjPcg0=
|
|
5049
5023
|
|
|
5050
|
-
request-promise-core@1.1.
|
|
5051
|
-
version "1.1.
|
|
5052
|
-
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.
|
|
5053
|
-
integrity
|
|
5024
|
+
request-promise-core@1.1.2:
|
|
5025
|
+
version "1.1.2"
|
|
5026
|
+
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346"
|
|
5027
|
+
integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==
|
|
5054
5028
|
dependencies:
|
|
5055
|
-
lodash "^4.
|
|
5029
|
+
lodash "^4.17.11"
|
|
5056
5030
|
|
|
5057
5031
|
request-promise-native@^1.0.5:
|
|
5058
|
-
version "1.0.
|
|
5059
|
-
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.
|
|
5060
|
-
integrity
|
|
5032
|
+
version "1.0.7"
|
|
5033
|
+
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59"
|
|
5034
|
+
integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==
|
|
5061
5035
|
dependencies:
|
|
5062
|
-
request-promise-core "1.1.
|
|
5063
|
-
stealthy-require "^1.1.
|
|
5064
|
-
tough-cookie "
|
|
5036
|
+
request-promise-core "1.1.2"
|
|
5037
|
+
stealthy-require "^1.1.1"
|
|
5038
|
+
tough-cookie "^2.3.3"
|
|
5065
5039
|
|
|
5066
5040
|
request@^2.87.0, request@^2.88.0:
|
|
5067
5041
|
version "2.88.0"
|
|
@@ -5116,6 +5090,14 @@ resolve-from@^4.0.0:
|
|
|
5116
5090
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
|
5117
5091
|
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
|
5118
5092
|
|
|
5093
|
+
resolve-package-path@^1.0.11:
|
|
5094
|
+
version "1.1.1"
|
|
5095
|
+
resolved "https://registry.yarnpkg.com/resolve-package-path/-/resolve-package-path-1.1.1.tgz#39db6201f7db8800207d8f82cc8005ee30c9200e"
|
|
5096
|
+
integrity sha512-6vg7LnxKY3NhmlH/K/CfudgPDx7ah4RPgHjhMCcP3L1LPsoxOXeClUBFpF5c2FRlQScVQ4VL8GTbB5FjHQ3ISQ==
|
|
5097
|
+
dependencies:
|
|
5098
|
+
path-root "^0.1.1"
|
|
5099
|
+
resolve "^1.10.0"
|
|
5100
|
+
|
|
5119
5101
|
resolve-url@^0.2.1:
|
|
5120
5102
|
version "0.2.1"
|
|
5121
5103
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
|
@@ -5133,13 +5115,6 @@ resolve@^1.10.0, resolve@^1.3.2:
|
|
|
5133
5115
|
dependencies:
|
|
5134
5116
|
path-parse "^1.0.6"
|
|
5135
5117
|
|
|
5136
|
-
resolve@^1.4.0:
|
|
5137
|
-
version "1.9.0"
|
|
5138
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06"
|
|
5139
|
-
integrity sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ==
|
|
5140
|
-
dependencies:
|
|
5141
|
-
path-parse "^1.0.6"
|
|
5142
|
-
|
|
5143
5118
|
restore-cursor@^2.0.0:
|
|
5144
5119
|
version "2.0.0"
|
|
5145
5120
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
|
@@ -5341,10 +5316,10 @@ slide@^1.1.6, slide@~1.1.3, slide@~1.1.6:
|
|
|
5341
5316
|
resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
|
|
5342
5317
|
integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=
|
|
5343
5318
|
|
|
5344
|
-
smart-buffer
|
|
5345
|
-
version "4.0.
|
|
5346
|
-
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.
|
|
5347
|
-
integrity sha512-
|
|
5319
|
+
smart-buffer@4.0.2:
|
|
5320
|
+
version "4.0.2"
|
|
5321
|
+
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d"
|
|
5322
|
+
integrity sha512-JDhEpTKzXusOqXZ0BUIdH+CjFdO/CR3tLlf5CN34IypI+xMmXW1uB16OOY8z3cICbJlDAVJzNbwBhNO0wt9OAw==
|
|
5348
5323
|
|
|
5349
5324
|
snapdragon-node@^2.0.1:
|
|
5350
5325
|
version "2.1.1"
|
|
@@ -5385,12 +5360,12 @@ socks-proxy-agent@^4.0.0:
|
|
|
5385
5360
|
socks "~2.2.0"
|
|
5386
5361
|
|
|
5387
5362
|
socks@~2.2.0:
|
|
5388
|
-
version "2.2.
|
|
5389
|
-
resolved "https://registry.yarnpkg.com/socks/-/socks-2.2.
|
|
5390
|
-
integrity sha512
|
|
5363
|
+
version "2.2.3"
|
|
5364
|
+
resolved "https://registry.yarnpkg.com/socks/-/socks-2.2.3.tgz#7399ce11e19b2a997153c983a9ccb6306721f2dc"
|
|
5365
|
+
integrity sha512-+2r83WaRT3PXYoO/1z+RDEBE7Z2f9YcdQnJ0K/ncXXbV5gJ6wYfNAebYFYiiUjM6E4JyXnPY8cimwyvFYHVUUA==
|
|
5391
5366
|
dependencies:
|
|
5392
5367
|
ip "^1.1.5"
|
|
5393
|
-
smart-buffer "
|
|
5368
|
+
smart-buffer "4.0.2"
|
|
5394
5369
|
|
|
5395
5370
|
sort-keys@^2.0.0:
|
|
5396
5371
|
version "2.0.0"
|
|
@@ -5485,9 +5460,9 @@ sprintf-js@~1.0.2:
|
|
|
5485
5460
|
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
|
5486
5461
|
|
|
5487
5462
|
sshpk@^1.7.0:
|
|
5488
|
-
version "1.16.
|
|
5489
|
-
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.
|
|
5490
|
-
integrity sha512-
|
|
5463
|
+
version "1.16.1"
|
|
5464
|
+
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
|
|
5465
|
+
integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
|
|
5491
5466
|
dependencies:
|
|
5492
5467
|
asn1 "~0.2.3"
|
|
5493
5468
|
assert-plus "^1.0.0"
|
|
@@ -5526,7 +5501,7 @@ static-extend@^0.1.1:
|
|
|
5526
5501
|
define-property "^0.2.5"
|
|
5527
5502
|
object-copy "^0.1.0"
|
|
5528
5503
|
|
|
5529
|
-
stealthy-require@^1.1.
|
|
5504
|
+
stealthy-require@^1.1.1:
|
|
5530
5505
|
version "1.1.1"
|
|
5531
5506
|
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
|
5532
5507
|
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
|
|
@@ -5656,14 +5631,14 @@ strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
|
|
|
5656
5631
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
|
5657
5632
|
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
|
5658
5633
|
|
|
5659
|
-
supports-color@^5.3.0
|
|
5634
|
+
supports-color@^5.3.0:
|
|
5660
5635
|
version "5.5.0"
|
|
5661
5636
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
5662
5637
|
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
5663
5638
|
dependencies:
|
|
5664
5639
|
has-flag "^3.0.0"
|
|
5665
5640
|
|
|
5666
|
-
supports-color@^6.1.0:
|
|
5641
|
+
supports-color@^6.0.0, supports-color@^6.1.0:
|
|
5667
5642
|
version "6.1.0"
|
|
5668
5643
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
|
|
5669
5644
|
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
|
|
@@ -5738,9 +5713,9 @@ term-size@^1.2.0:
|
|
|
5738
5713
|
execa "^0.7.0"
|
|
5739
5714
|
|
|
5740
5715
|
test-exclude@^5.0.0:
|
|
5741
|
-
version "5.
|
|
5742
|
-
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.
|
|
5743
|
-
integrity sha512-
|
|
5716
|
+
version "5.1.0"
|
|
5717
|
+
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz#6ba6b25179d2d38724824661323b73e03c0c1de1"
|
|
5718
|
+
integrity sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA==
|
|
5744
5719
|
dependencies:
|
|
5745
5720
|
arrify "^1.0.1"
|
|
5746
5721
|
minimatch "^3.0.4"
|
|
@@ -5841,16 +5816,7 @@ to-regex@^3.0.1, to-regex@^3.0.2:
|
|
|
5841
5816
|
regex-not "^1.0.2"
|
|
5842
5817
|
safe-regex "^1.1.0"
|
|
5843
5818
|
|
|
5844
|
-
tough-cookie
|
|
5845
|
-
version "3.0.0"
|
|
5846
|
-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.0.tgz#d2bceddebde633153ff20a52fa844a0dc71dacef"
|
|
5847
|
-
integrity sha512-LHMvg+RBP/mAVNqVbOX8t+iJ+tqhBA/t49DuI7+IDAWHrASnesqSu1vWbKB7UrE2yk+HMFUBMadRGMkB4VCfog==
|
|
5848
|
-
dependencies:
|
|
5849
|
-
ip-regex "^3.0.0"
|
|
5850
|
-
psl "^1.1.28"
|
|
5851
|
-
punycode "^2.1.1"
|
|
5852
|
-
|
|
5853
|
-
tough-cookie@^2.3.4:
|
|
5819
|
+
tough-cookie@^2.3.3, tough-cookie@^2.3.4:
|
|
5854
5820
|
version "2.5.0"
|
|
5855
5821
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
|
5856
5822
|
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|