dependabot-npm_and_yarn 0.93.1 → 0.93.2
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/npm/lib/updater.js +57 -0
- data/helpers/package.json +1 -1
- data/helpers/yarn.lock +729 -705
- data/lib/dependabot/npm_and_yarn/file_updater/npm_lockfile_updater.rb +1 -29
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9395b416311add425ebd3dad032c866bd11402d425befd75995d435ab9f67a8e
|
|
4
|
+
data.tar.gz: 360fe27e94b949b396e99ef1fd48c28d9ada8f0b82dd19e10dd5b88656233753
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c267fa6e46f835cbd5dc3a6d77fc3bb06acf3d7394e68987255a690166a20ce159dec290b668fbee56006765b28456a236b95e88e597fbefa660b95fcd657365
|
|
7
|
+
data.tar.gz: 43da05aeba8a91863339b6ce5d9b3a4c6a8a97eb04b5d99ce367505c8234675b80a5f6e2ed561bb51307272d47867973d2c087e7817837b12cb2a4c659ad8ec6
|
data/helpers/npm/lib/updater.js
CHANGED
|
@@ -43,6 +43,7 @@ async function updateDependencyFiles(directory, dependencies, lockfileName) {
|
|
|
43
43
|
const initialInstaller = new installer.Installer(directory, dryRun, args, {
|
|
44
44
|
packageLockOnly: true
|
|
45
45
|
});
|
|
46
|
+
|
|
46
47
|
// A bug in npm means the initial install will remove any git dependencies
|
|
47
48
|
// from the lockfile. A subsequent install with no arguments fixes this.
|
|
48
49
|
const cleanupInstaller = new installer.Installer(directory, dryRun, [], {
|
|
@@ -58,6 +59,16 @@ async function updateDependencyFiles(directory, dependencies, lockfileName) {
|
|
|
58
59
|
const unmute = muteStderr();
|
|
59
60
|
try {
|
|
60
61
|
await runAsync(initialInstaller, initialInstaller.run, []);
|
|
62
|
+
|
|
63
|
+
const intermediaryLockfile = JSON.parse(readFile(lockfileName));
|
|
64
|
+
const updatedIntermediaryLockfile = removeInvalidGitUrls(
|
|
65
|
+
intermediaryLockfile
|
|
66
|
+
);
|
|
67
|
+
fs.writeFileSync(
|
|
68
|
+
path.join(directory, lockfileName),
|
|
69
|
+
JSON.stringify(updatedIntermediaryLockfile, null, 2)
|
|
70
|
+
);
|
|
71
|
+
|
|
61
72
|
await runAsync(cleanupInstaller, cleanupInstaller.run, []);
|
|
62
73
|
} finally {
|
|
63
74
|
unmute();
|
|
@@ -98,4 +109,50 @@ function installArgs(depName, desiredVersion, requirements, oldPackage) {
|
|
|
98
109
|
}
|
|
99
110
|
}
|
|
100
111
|
|
|
112
|
+
// Note: Fixes bugs introduced in npm 6.6.0 for the following cases:
|
|
113
|
+
//
|
|
114
|
+
// - Fails when a sub-dependency has a "from" field that includes the dependency
|
|
115
|
+
// name for git dependencies (e.g. "bignumber.js@git+https://gi...)
|
|
116
|
+
// - Fails when updating a npm@5 lockfile with git sub-dependencies, resulting
|
|
117
|
+
// in invalid "requires" that include the dependency name for git dependencies
|
|
118
|
+
// (e.g. "bignumber.js": "bignumber.js@git+https://gi...)
|
|
119
|
+
function removeInvalidGitUrls(lockfile) {
|
|
120
|
+
if (!lockfile.dependencies) return lockfile;
|
|
121
|
+
|
|
122
|
+
const dependencies = Object.keys(lockfile.dependencies).reduce((acc, key) => {
|
|
123
|
+
let value = removeInvalidGitUrlsInFrom(lockfile.dependencies[key], key);
|
|
124
|
+
value = removeInvalidGitUrlsInRequires(value);
|
|
125
|
+
acc[key] = removeInvalidGitUrls(value);
|
|
126
|
+
return acc;
|
|
127
|
+
}, {});
|
|
128
|
+
|
|
129
|
+
return Object.assign({}, lockfile, { dependencies });
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
function removeInvalidGitUrlsInFrom(value, dependencyName) {
|
|
133
|
+
const matchKey = new RegExp(`^${dependencyName}@`);
|
|
134
|
+
let from = value.from;
|
|
135
|
+
if (value.from && value.from.match(matchKey)) {
|
|
136
|
+
from = value.from.replace(matchKey, "");
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
return Object.assign({}, value, { from });
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
function removeInvalidGitUrlsInRequires(value) {
|
|
143
|
+
if (!value.requires) return value;
|
|
144
|
+
|
|
145
|
+
const requires = Object.keys(value.requires).reduce((acc, reqKey) => {
|
|
146
|
+
let reqValue = value.requires[reqKey];
|
|
147
|
+
const requiresMatchKey = new RegExp(`^${reqKey}@`);
|
|
148
|
+
if (reqValue && reqValue.match(requiresMatchKey)) {
|
|
149
|
+
reqValue = reqValue.replace(requiresMatchKey, "");
|
|
150
|
+
}
|
|
151
|
+
acc[reqKey] = reqValue;
|
|
152
|
+
return acc;
|
|
153
|
+
}, {});
|
|
154
|
+
|
|
155
|
+
return Object.assign({}, value, { requires });
|
|
156
|
+
}
|
|
157
|
+
|
|
101
158
|
module.exports = { updateDependencyFiles };
|
data/helpers/package.json
CHANGED
data/helpers/yarn.lock
CHANGED
|
@@ -2,13 +2,81 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
"@babel/code-frame@^7.0.0"
|
|
5
|
+
"@babel/code-frame@^7.0.0":
|
|
6
6
|
version "7.0.0"
|
|
7
7
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
|
|
8
8
|
integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
|
|
9
9
|
dependencies:
|
|
10
10
|
"@babel/highlight" "^7.0.0"
|
|
11
11
|
|
|
12
|
+
"@babel/core@^7.1.0":
|
|
13
|
+
version "7.2.2"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
|
|
15
|
+
integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw==
|
|
16
|
+
dependencies:
|
|
17
|
+
"@babel/code-frame" "^7.0.0"
|
|
18
|
+
"@babel/generator" "^7.2.2"
|
|
19
|
+
"@babel/helpers" "^7.2.0"
|
|
20
|
+
"@babel/parser" "^7.2.2"
|
|
21
|
+
"@babel/template" "^7.2.2"
|
|
22
|
+
"@babel/traverse" "^7.2.2"
|
|
23
|
+
"@babel/types" "^7.2.2"
|
|
24
|
+
convert-source-map "^1.1.0"
|
|
25
|
+
debug "^4.1.0"
|
|
26
|
+
json5 "^2.1.0"
|
|
27
|
+
lodash "^4.17.10"
|
|
28
|
+
resolve "^1.3.2"
|
|
29
|
+
semver "^5.4.1"
|
|
30
|
+
source-map "^0.5.0"
|
|
31
|
+
|
|
32
|
+
"@babel/generator@^7.0.0", "@babel/generator@^7.2.2":
|
|
33
|
+
version "7.3.0"
|
|
34
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.0.tgz#f663838cd7b542366de3aa608a657b8ccb2a99eb"
|
|
35
|
+
integrity sha512-dZTwMvTgWfhmibq4V9X+LMf6Bgl7zAodRn9PvcPdhlzFMbvUutx74dbEv7Atz3ToeEpevYEJtAwfxq/bDCzHWg==
|
|
36
|
+
dependencies:
|
|
37
|
+
"@babel/types" "^7.3.0"
|
|
38
|
+
jsesc "^2.5.1"
|
|
39
|
+
lodash "^4.17.10"
|
|
40
|
+
source-map "^0.5.0"
|
|
41
|
+
trim-right "^1.0.1"
|
|
42
|
+
|
|
43
|
+
"@babel/helper-function-name@^7.1.0":
|
|
44
|
+
version "7.1.0"
|
|
45
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
|
|
46
|
+
integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==
|
|
47
|
+
dependencies:
|
|
48
|
+
"@babel/helper-get-function-arity" "^7.0.0"
|
|
49
|
+
"@babel/template" "^7.1.0"
|
|
50
|
+
"@babel/types" "^7.0.0"
|
|
51
|
+
|
|
52
|
+
"@babel/helper-get-function-arity@^7.0.0":
|
|
53
|
+
version "7.0.0"
|
|
54
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
|
|
55
|
+
integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==
|
|
56
|
+
dependencies:
|
|
57
|
+
"@babel/types" "^7.0.0"
|
|
58
|
+
|
|
59
|
+
"@babel/helper-plugin-utils@^7.0.0":
|
|
60
|
+
version "7.0.0"
|
|
61
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
|
|
62
|
+
integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
|
|
63
|
+
|
|
64
|
+
"@babel/helper-split-export-declaration@^7.0.0":
|
|
65
|
+
version "7.0.0"
|
|
66
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813"
|
|
67
|
+
integrity sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==
|
|
68
|
+
dependencies:
|
|
69
|
+
"@babel/types" "^7.0.0"
|
|
70
|
+
|
|
71
|
+
"@babel/helpers@^7.2.0":
|
|
72
|
+
version "7.3.1"
|
|
73
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9"
|
|
74
|
+
integrity sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA==
|
|
75
|
+
dependencies:
|
|
76
|
+
"@babel/template" "^7.1.2"
|
|
77
|
+
"@babel/traverse" "^7.1.5"
|
|
78
|
+
"@babel/types" "^7.3.0"
|
|
79
|
+
|
|
12
80
|
"@babel/highlight@^7.0.0":
|
|
13
81
|
version "7.0.0"
|
|
14
82
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
|
|
@@ -18,6 +86,51 @@
|
|
|
18
86
|
esutils "^2.0.2"
|
|
19
87
|
js-tokens "^4.0.0"
|
|
20
88
|
|
|
89
|
+
"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3":
|
|
90
|
+
version "7.3.1"
|
|
91
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.1.tgz#8f4ffd45f779e6132780835ffa7a215fa0b2d181"
|
|
92
|
+
integrity sha512-ATz6yX/L8LEnC3dtLQnIx4ydcPxhLcoy9Vl6re00zb2w5lG6itY6Vhnr1KFRPq/FHNsgl/gh2mjNN20f9iJTTA==
|
|
93
|
+
|
|
94
|
+
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
|
|
95
|
+
version "7.2.0"
|
|
96
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
|
|
97
|
+
integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==
|
|
98
|
+
dependencies:
|
|
99
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
|
100
|
+
|
|
101
|
+
"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
|
|
102
|
+
version "7.2.2"
|
|
103
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
|
|
104
|
+
integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
|
|
105
|
+
dependencies:
|
|
106
|
+
"@babel/code-frame" "^7.0.0"
|
|
107
|
+
"@babel/parser" "^7.2.2"
|
|
108
|
+
"@babel/types" "^7.2.2"
|
|
109
|
+
|
|
110
|
+
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2":
|
|
111
|
+
version "7.2.3"
|
|
112
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8"
|
|
113
|
+
integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==
|
|
114
|
+
dependencies:
|
|
115
|
+
"@babel/code-frame" "^7.0.0"
|
|
116
|
+
"@babel/generator" "^7.2.2"
|
|
117
|
+
"@babel/helper-function-name" "^7.1.0"
|
|
118
|
+
"@babel/helper-split-export-declaration" "^7.0.0"
|
|
119
|
+
"@babel/parser" "^7.2.3"
|
|
120
|
+
"@babel/types" "^7.2.2"
|
|
121
|
+
debug "^4.1.0"
|
|
122
|
+
globals "^11.1.0"
|
|
123
|
+
lodash "^4.17.10"
|
|
124
|
+
|
|
125
|
+
"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0":
|
|
126
|
+
version "7.3.0"
|
|
127
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.0.tgz#61dc0b336a93badc02bf5f69c4cd8e1353f2ffc0"
|
|
128
|
+
integrity sha512-QkFPw68QqWU1/RVPyBe8SO7lXbPfjtqAxRYQKpFpaB8yMq7X2qAqfwK5LKoQufEkSmO5NQ70O6Kc3Afk03RwXw==
|
|
129
|
+
dependencies:
|
|
130
|
+
esutils "^2.0.2"
|
|
131
|
+
lodash "^4.17.10"
|
|
132
|
+
to-fast-properties "^2.0.0"
|
|
133
|
+
|
|
21
134
|
"@dependabot/yarn-lib@^1.13.0":
|
|
22
135
|
version "1.13.0"
|
|
23
136
|
resolved "https://registry.yarnpkg.com/@dependabot/yarn-lib/-/yarn-lib-1.13.0.tgz#b9a17bf2446b1e0421577bcd5884914fe711c771"
|
|
@@ -176,11 +289,6 @@ ansi-regex@^4.0.0:
|
|
|
176
289
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9"
|
|
177
290
|
integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==
|
|
178
291
|
|
|
179
|
-
ansi-styles@^2.2.1:
|
|
180
|
-
version "2.2.1"
|
|
181
|
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
|
182
|
-
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
|
|
183
|
-
|
|
184
292
|
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
185
293
|
version "3.2.1"
|
|
186
294
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
@@ -211,12 +319,12 @@ anymatch@^2.0.0:
|
|
|
211
319
|
micromatch "^3.1.4"
|
|
212
320
|
normalize-path "^2.1.1"
|
|
213
321
|
|
|
214
|
-
append-transform@^0.
|
|
215
|
-
version "0.
|
|
216
|
-
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.
|
|
217
|
-
integrity
|
|
322
|
+
append-transform@^1.0.0:
|
|
323
|
+
version "1.0.0"
|
|
324
|
+
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
|
|
325
|
+
integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==
|
|
218
326
|
dependencies:
|
|
219
|
-
default-require-extensions "^
|
|
327
|
+
default-require-extensions "^2.0.0"
|
|
220
328
|
|
|
221
329
|
aproba@^1.0.3, aproba@^1.1.1, aproba@^1.1.2:
|
|
222
330
|
version "1.2.0"
|
|
@@ -332,7 +440,7 @@ async-limiter@~1.0.0:
|
|
|
332
440
|
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
|
|
333
441
|
integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==
|
|
334
442
|
|
|
335
|
-
async@^2.
|
|
443
|
+
async@^2.5.0, async@^2.6.1:
|
|
336
444
|
version "2.6.1"
|
|
337
445
|
resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610"
|
|
338
446
|
integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==
|
|
@@ -359,119 +467,37 @@ aws4@^1.8.0:
|
|
|
359
467
|
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
|
|
360
468
|
integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==
|
|
361
469
|
|
|
362
|
-
babel-
|
|
363
|
-
version "
|
|
364
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
365
|
-
integrity
|
|
470
|
+
babel-jest@^24.0.0:
|
|
471
|
+
version "24.0.0"
|
|
472
|
+
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.0.0.tgz#8a0c767f03f4a595fb921afdab13ff126edd00da"
|
|
473
|
+
integrity sha512-YGKRbZUjoRmNIAyG7x4wYxUyHvHPFpYXj6Mx1A5cslhaQOUgP/+LF3wtFgMuOQkIpjbVNBufmOnVY0QVwB5v9Q==
|
|
366
474
|
dependencies:
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
js-tokens "^3.0.2"
|
|
370
|
-
|
|
371
|
-
babel-core@^6.0.0, babel-core@^6.26.0:
|
|
372
|
-
version "6.26.3"
|
|
373
|
-
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
|
|
374
|
-
integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
|
|
375
|
-
dependencies:
|
|
376
|
-
babel-code-frame "^6.26.0"
|
|
377
|
-
babel-generator "^6.26.0"
|
|
378
|
-
babel-helpers "^6.24.1"
|
|
379
|
-
babel-messages "^6.23.0"
|
|
380
|
-
babel-register "^6.26.0"
|
|
381
|
-
babel-runtime "^6.26.0"
|
|
382
|
-
babel-template "^6.26.0"
|
|
383
|
-
babel-traverse "^6.26.0"
|
|
384
|
-
babel-types "^6.26.0"
|
|
385
|
-
babylon "^6.18.0"
|
|
386
|
-
convert-source-map "^1.5.1"
|
|
387
|
-
debug "^2.6.9"
|
|
388
|
-
json5 "^0.5.1"
|
|
389
|
-
lodash "^4.17.4"
|
|
390
|
-
minimatch "^3.0.4"
|
|
391
|
-
path-is-absolute "^1.0.1"
|
|
392
|
-
private "^0.1.8"
|
|
393
|
-
slash "^1.0.0"
|
|
394
|
-
source-map "^0.5.7"
|
|
475
|
+
babel-plugin-istanbul "^5.1.0"
|
|
476
|
+
babel-preset-jest "^24.0.0"
|
|
395
477
|
|
|
396
|
-
babel-
|
|
397
|
-
version "
|
|
398
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
399
|
-
integrity sha512-
|
|
400
|
-
dependencies:
|
|
401
|
-
babel-messages "^6.23.0"
|
|
402
|
-
babel-runtime "^6.26.0"
|
|
403
|
-
babel-types "^6.26.0"
|
|
404
|
-
detect-indent "^4.0.0"
|
|
405
|
-
jsesc "^1.3.0"
|
|
406
|
-
lodash "^4.17.4"
|
|
407
|
-
source-map "^0.5.7"
|
|
408
|
-
trim-right "^1.0.1"
|
|
409
|
-
|
|
410
|
-
babel-helpers@^6.24.1:
|
|
411
|
-
version "6.24.1"
|
|
412
|
-
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
|
|
413
|
-
integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
|
|
414
|
-
dependencies:
|
|
415
|
-
babel-runtime "^6.22.0"
|
|
416
|
-
babel-template "^6.24.1"
|
|
417
|
-
|
|
418
|
-
babel-jest@^23.6.0:
|
|
419
|
-
version "23.6.0"
|
|
420
|
-
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1"
|
|
421
|
-
integrity sha512-lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew==
|
|
422
|
-
dependencies:
|
|
423
|
-
babel-plugin-istanbul "^4.1.6"
|
|
424
|
-
babel-preset-jest "^23.2.0"
|
|
425
|
-
|
|
426
|
-
babel-messages@^6.23.0:
|
|
427
|
-
version "6.23.0"
|
|
428
|
-
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
|
429
|
-
integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=
|
|
430
|
-
dependencies:
|
|
431
|
-
babel-runtime "^6.22.0"
|
|
432
|
-
|
|
433
|
-
babel-plugin-istanbul@^4.1.6:
|
|
434
|
-
version "4.1.6"
|
|
435
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
|
|
436
|
-
integrity sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ==
|
|
478
|
+
babel-plugin-istanbul@^5.1.0:
|
|
479
|
+
version "5.1.0"
|
|
480
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.0.tgz#6892f529eff65a3e2d33d87dc5888ffa2ecd4a30"
|
|
481
|
+
integrity sha512-CLoXPRSUWiR8yao8bShqZUIC6qLfZVVY3X1wj+QPNXu0wfmrRRfarh1LYy+dYMVI+bDj0ghy3tuqFFRFZmL1Nw==
|
|
437
482
|
dependencies:
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
test-exclude "^4.2.1"
|
|
442
|
-
|
|
443
|
-
babel-plugin-jest-hoist@^23.2.0:
|
|
444
|
-
version "23.2.0"
|
|
445
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167"
|
|
446
|
-
integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=
|
|
447
|
-
|
|
448
|
-
babel-plugin-syntax-object-rest-spread@^6.13.0:
|
|
449
|
-
version "6.13.0"
|
|
450
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
|
|
451
|
-
integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
|
|
483
|
+
find-up "^3.0.0"
|
|
484
|
+
istanbul-lib-instrument "^3.0.0"
|
|
485
|
+
test-exclude "^5.0.0"
|
|
452
486
|
|
|
453
|
-
babel-
|
|
454
|
-
version "
|
|
455
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
456
|
-
integrity
|
|
457
|
-
dependencies:
|
|
458
|
-
babel-plugin-jest-hoist "^23.2.0"
|
|
459
|
-
babel-plugin-syntax-object-rest-spread "^6.13.0"
|
|
487
|
+
babel-plugin-jest-hoist@^24.0.0:
|
|
488
|
+
version "24.0.0"
|
|
489
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.0.0.tgz#3adf030b6fd67e4311479a54b24077bdfc226ec9"
|
|
490
|
+
integrity sha512-ipefE7YWNyRNVaV/MonUb/I5nef53ZRFR74P9meMGmJxqt8s1BJmfhw11YeIMbcjXN4fxtWUaskZZe8yreXE1Q==
|
|
460
491
|
|
|
461
|
-
babel-
|
|
462
|
-
version "
|
|
463
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
464
|
-
integrity
|
|
492
|
+
babel-preset-jest@^24.0.0:
|
|
493
|
+
version "24.0.0"
|
|
494
|
+
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.0.0.tgz#d23782e5e036cff517859640a80960bd628bd82b"
|
|
495
|
+
integrity sha512-ECMMOLvNDCmsn3geBa3JkwzylcfpThMpAdfreONQm8EmXcs4tXUpXZDQPxiIMg7nMobTuAC2zDGIKrbrBXW2Vg==
|
|
465
496
|
dependencies:
|
|
466
|
-
babel-
|
|
467
|
-
babel-
|
|
468
|
-
core-js "^2.5.0"
|
|
469
|
-
home-or-tmp "^2.0.0"
|
|
470
|
-
lodash "^4.17.4"
|
|
471
|
-
mkdirp "^0.5.1"
|
|
472
|
-
source-map-support "^0.4.15"
|
|
497
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
|
|
498
|
+
babel-plugin-jest-hoist "^24.0.0"
|
|
473
499
|
|
|
474
|
-
babel-runtime@^6.
|
|
500
|
+
babel-runtime@^6.26.0:
|
|
475
501
|
version "6.26.0"
|
|
476
502
|
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
|
477
503
|
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
|
|
@@ -479,47 +505,6 @@ babel-runtime@^6.22.0, babel-runtime@^6.26.0:
|
|
|
479
505
|
core-js "^2.4.0"
|
|
480
506
|
regenerator-runtime "^0.11.0"
|
|
481
507
|
|
|
482
|
-
babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
|
|
483
|
-
version "6.26.0"
|
|
484
|
-
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
|
|
485
|
-
integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
|
|
486
|
-
dependencies:
|
|
487
|
-
babel-runtime "^6.26.0"
|
|
488
|
-
babel-traverse "^6.26.0"
|
|
489
|
-
babel-types "^6.26.0"
|
|
490
|
-
babylon "^6.18.0"
|
|
491
|
-
lodash "^4.17.4"
|
|
492
|
-
|
|
493
|
-
babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0:
|
|
494
|
-
version "6.26.0"
|
|
495
|
-
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
|
496
|
-
integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
|
|
497
|
-
dependencies:
|
|
498
|
-
babel-code-frame "^6.26.0"
|
|
499
|
-
babel-messages "^6.23.0"
|
|
500
|
-
babel-runtime "^6.26.0"
|
|
501
|
-
babel-types "^6.26.0"
|
|
502
|
-
babylon "^6.18.0"
|
|
503
|
-
debug "^2.6.8"
|
|
504
|
-
globals "^9.18.0"
|
|
505
|
-
invariant "^2.2.2"
|
|
506
|
-
lodash "^4.17.4"
|
|
507
|
-
|
|
508
|
-
babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0:
|
|
509
|
-
version "6.26.0"
|
|
510
|
-
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
|
511
|
-
integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
|
|
512
|
-
dependencies:
|
|
513
|
-
babel-runtime "^6.26.0"
|
|
514
|
-
esutils "^2.0.2"
|
|
515
|
-
lodash "^4.17.4"
|
|
516
|
-
to-fast-properties "^1.0.3"
|
|
517
|
-
|
|
518
|
-
babylon@^6.18.0:
|
|
519
|
-
version "6.18.0"
|
|
520
|
-
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
|
521
|
-
integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
|
|
522
|
-
|
|
523
508
|
balanced-match@^1.0.0:
|
|
524
509
|
version "1.0.0"
|
|
525
510
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
|
@@ -754,11 +739,6 @@ call-limit@~1.1.0:
|
|
|
754
739
|
resolved "https://registry.yarnpkg.com/call-limit/-/call-limit-1.1.0.tgz#6fd61b03f3da42a2cd0ec2b60f02bd0e71991fea"
|
|
755
740
|
integrity sha1-b9YbA/PaQqLNDsK2DwK9DnGZH+o=
|
|
756
741
|
|
|
757
|
-
callsites@^2.0.0:
|
|
758
|
-
version "2.0.0"
|
|
759
|
-
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
|
|
760
|
-
integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
|
|
761
|
-
|
|
762
742
|
callsites@^3.0.0:
|
|
763
743
|
version "3.0.0"
|
|
764
744
|
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"
|
|
@@ -769,6 +749,11 @@ camelcase@^4.0.0, camelcase@^4.1.0:
|
|
|
769
749
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
|
770
750
|
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
|
|
771
751
|
|
|
752
|
+
camelcase@^5.0.0:
|
|
753
|
+
version "5.0.0"
|
|
754
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
|
|
755
|
+
integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
|
|
756
|
+
|
|
772
757
|
capture-exit@^1.2.0:
|
|
773
758
|
version "1.2.0"
|
|
774
759
|
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
|
|
@@ -798,17 +783,6 @@ chai@^4.1.2:
|
|
|
798
783
|
pathval "^1.1.0"
|
|
799
784
|
type-detect "^4.0.5"
|
|
800
785
|
|
|
801
|
-
chalk@^1.1.3:
|
|
802
|
-
version "1.1.3"
|
|
803
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
|
804
|
-
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
|
|
805
|
-
dependencies:
|
|
806
|
-
ansi-styles "^2.2.1"
|
|
807
|
-
escape-string-regexp "^1.0.2"
|
|
808
|
-
has-ansi "^2.0.0"
|
|
809
|
-
strip-ansi "^3.0.0"
|
|
810
|
-
supports-color "^2.0.0"
|
|
811
|
-
|
|
812
786
|
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0:
|
|
813
787
|
version "2.4.2"
|
|
814
788
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
@@ -993,6 +967,11 @@ commander@~2.17.1:
|
|
|
993
967
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
|
|
994
968
|
integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
|
|
995
969
|
|
|
970
|
+
compare-versions@^3.2.1:
|
|
971
|
+
version "3.4.0"
|
|
972
|
+
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26"
|
|
973
|
+
integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg==
|
|
974
|
+
|
|
996
975
|
component-emitter@^1.2.1:
|
|
997
976
|
version "1.2.1"
|
|
998
977
|
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
|
|
@@ -1038,7 +1017,7 @@ console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-
|
|
|
1038
1017
|
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
|
1039
1018
|
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
|
|
1040
1019
|
|
|
1041
|
-
convert-source-map@^1.
|
|
1020
|
+
convert-source-map@^1.1.0, convert-source-map@^1.4.0:
|
|
1042
1021
|
version "1.6.0"
|
|
1043
1022
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
|
|
1044
1023
|
integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
|
|
@@ -1062,7 +1041,7 @@ copy-descriptor@^0.1.0:
|
|
|
1062
1041
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
|
1063
1042
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
|
1064
1043
|
|
|
1065
|
-
core-js@^2.4.0
|
|
1044
|
+
core-js@^2.4.0:
|
|
1066
1045
|
version "2.6.2"
|
|
1067
1046
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.2.tgz#267988d7268323b349e20b4588211655f0e83944"
|
|
1068
1047
|
integrity sha512-NdBPF/RVwPW6jr0NCILuyN9RiqLo2b1mddWHkUL+VnvcB7dzlnBJ1bXYntjpTGOgkZiiLWj2JxmOr7eGE3qK6g==
|
|
@@ -1088,7 +1067,7 @@ cross-spawn@^5.0.1:
|
|
|
1088
1067
|
shebang-command "^1.2.0"
|
|
1089
1068
|
which "^1.2.9"
|
|
1090
1069
|
|
|
1091
|
-
cross-spawn@^6.0.5:
|
|
1070
|
+
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
|
|
1092
1071
|
version "6.0.5"
|
|
1093
1072
|
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
|
|
1094
1073
|
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
|
|
@@ -1156,7 +1135,7 @@ debug@3.1.0:
|
|
|
1156
1135
|
dependencies:
|
|
1157
1136
|
ms "2.0.0"
|
|
1158
1137
|
|
|
1159
|
-
debug@^2.1.2, debug@^2.2.0, debug@^2.3.3
|
|
1138
|
+
debug@^2.1.2, debug@^2.2.0, debug@^2.3.3:
|
|
1160
1139
|
version "2.6.9"
|
|
1161
1140
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
|
1162
1141
|
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
|
@@ -1182,7 +1161,7 @@ debuglog@*, debuglog@^1.0.1:
|
|
|
1182
1161
|
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
|
|
1183
1162
|
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
|
|
1184
1163
|
|
|
1185
|
-
decamelize@^1.1.1:
|
|
1164
|
+
decamelize@^1.1.1, decamelize@^1.2.0:
|
|
1186
1165
|
version "1.2.0"
|
|
1187
1166
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
|
1188
1167
|
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
|
@@ -1214,12 +1193,12 @@ deep-is@~0.1.3:
|
|
|
1214
1193
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
|
1215
1194
|
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
|
1216
1195
|
|
|
1217
|
-
default-require-extensions@^
|
|
1218
|
-
version "
|
|
1219
|
-
resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-
|
|
1220
|
-
integrity sha1-
|
|
1196
|
+
default-require-extensions@^2.0.0:
|
|
1197
|
+
version "2.0.0"
|
|
1198
|
+
resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
|
|
1199
|
+
integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=
|
|
1221
1200
|
dependencies:
|
|
1222
|
-
strip-bom "^
|
|
1201
|
+
strip-bom "^3.0.0"
|
|
1223
1202
|
|
|
1224
1203
|
defaults@^1.0.3:
|
|
1225
1204
|
version "1.0.3"
|
|
@@ -1267,13 +1246,6 @@ delegates@^1.0.0:
|
|
|
1267
1246
|
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
|
1268
1247
|
integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
|
|
1269
1248
|
|
|
1270
|
-
detect-indent@^4.0.0:
|
|
1271
|
-
version "4.0.0"
|
|
1272
|
-
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
|
|
1273
|
-
integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg=
|
|
1274
|
-
dependencies:
|
|
1275
|
-
repeating "^2.0.0"
|
|
1276
|
-
|
|
1277
1249
|
detect-indent@^5.0.0, detect-indent@~5.0.0:
|
|
1278
1250
|
version "5.0.0"
|
|
1279
1251
|
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
|
|
@@ -1297,10 +1269,10 @@ dezalgo@^1.0.0, dezalgo@~1.0.3:
|
|
|
1297
1269
|
asap "^2.0.0"
|
|
1298
1270
|
wrappy "1"
|
|
1299
1271
|
|
|
1300
|
-
diff@^
|
|
1301
|
-
version "
|
|
1302
|
-
resolved "https://registry.yarnpkg.com/diff/-/diff-
|
|
1303
|
-
integrity sha512-
|
|
1272
|
+
diff-sequences@^24.0.0:
|
|
1273
|
+
version "24.0.0"
|
|
1274
|
+
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.0.0.tgz#cdf8e27ed20d8b8d3caccb4e0c0d8fe31a173013"
|
|
1275
|
+
integrity sha512-46OkIuVGBBnrC0soO/4LHu5LHGHx0uhP65OVz8XOrAJpqiCB2aVIuESvjI1F9oqebuvY8lekS1pt6TN7vt7qsw==
|
|
1304
1276
|
|
|
1305
1277
|
dnscache@^1.0.1:
|
|
1306
1278
|
version "1.0.1"
|
|
@@ -1395,7 +1367,7 @@ errno@~0.1.7:
|
|
|
1395
1367
|
dependencies:
|
|
1396
1368
|
prr "~1.0.1"
|
|
1397
1369
|
|
|
1398
|
-
error-ex@^1.
|
|
1370
|
+
error-ex@^1.3.1:
|
|
1399
1371
|
version "1.3.2"
|
|
1400
1372
|
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
|
1401
1373
|
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
|
|
@@ -1435,7 +1407,7 @@ es6-promisify@^5.0.0:
|
|
|
1435
1407
|
dependencies:
|
|
1436
1408
|
es6-promise "^4.0.3"
|
|
1437
1409
|
|
|
1438
|
-
escape-string-regexp@^1.0.
|
|
1410
|
+
escape-string-regexp@^1.0.5:
|
|
1439
1411
|
version "1.0.5"
|
|
1440
1412
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
1441
1413
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
|
@@ -1583,6 +1555,19 @@ execa@^0.7.0:
|
|
|
1583
1555
|
signal-exit "^3.0.0"
|
|
1584
1556
|
strip-eof "^1.0.0"
|
|
1585
1557
|
|
|
1558
|
+
execa@^1.0.0:
|
|
1559
|
+
version "1.0.0"
|
|
1560
|
+
resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
|
|
1561
|
+
integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
|
|
1562
|
+
dependencies:
|
|
1563
|
+
cross-spawn "^6.0.0"
|
|
1564
|
+
get-stream "^4.0.0"
|
|
1565
|
+
is-stream "^1.1.0"
|
|
1566
|
+
npm-run-path "^2.0.0"
|
|
1567
|
+
p-finally "^1.0.0"
|
|
1568
|
+
signal-exit "^3.0.0"
|
|
1569
|
+
strip-eof "^1.0.0"
|
|
1570
|
+
|
|
1586
1571
|
exit@^0.1.2:
|
|
1587
1572
|
version "0.1.2"
|
|
1588
1573
|
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
|
|
@@ -1615,17 +1600,16 @@ expand-range@^1.8.1:
|
|
|
1615
1600
|
dependencies:
|
|
1616
1601
|
fill-range "^2.1.0"
|
|
1617
1602
|
|
|
1618
|
-
expect@^
|
|
1619
|
-
version "
|
|
1620
|
-
resolved "https://registry.yarnpkg.com/expect/-/expect-
|
|
1621
|
-
integrity sha512-
|
|
1603
|
+
expect@^24.0.0:
|
|
1604
|
+
version "24.0.0"
|
|
1605
|
+
resolved "https://registry.yarnpkg.com/expect/-/expect-24.0.0.tgz#71f71d88a4202746fc79849bb4c6498008b5ef03"
|
|
1606
|
+
integrity sha512-qDHRU4lGsme0xjg8dXp/RQhvO9XIo9FWqVo7dTHDPBwzy25JGEHAWFsnpmRYErB50tgi/6euo3ir5e/kF9LUTA==
|
|
1622
1607
|
dependencies:
|
|
1623
1608
|
ansi-styles "^3.2.0"
|
|
1624
|
-
jest-
|
|
1625
|
-
jest-
|
|
1626
|
-
jest-
|
|
1627
|
-
jest-
|
|
1628
|
-
jest-regex-util "^23.3.0"
|
|
1609
|
+
jest-get-type "^24.0.0"
|
|
1610
|
+
jest-matcher-utils "^24.0.0"
|
|
1611
|
+
jest-message-util "^24.0.0"
|
|
1612
|
+
jest-regex-util "^24.0.0"
|
|
1629
1613
|
|
|
1630
1614
|
extend-shallow@^2.0.1:
|
|
1631
1615
|
version "2.0.1"
|
|
@@ -1739,7 +1723,7 @@ filename-regex@^2.0.0:
|
|
|
1739
1723
|
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
|
|
1740
1724
|
integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=
|
|
1741
1725
|
|
|
1742
|
-
fileset@^2.0.
|
|
1726
|
+
fileset@^2.0.3:
|
|
1743
1727
|
version "2.0.3"
|
|
1744
1728
|
resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
|
|
1745
1729
|
integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
|
|
@@ -1773,14 +1757,6 @@ find-npm-prefix@^1.0.2:
|
|
|
1773
1757
|
resolved "https://registry.yarnpkg.com/find-npm-prefix/-/find-npm-prefix-1.0.2.tgz#8d8ce2c78b3b4b9e66c8acc6a37c231eb841cfdf"
|
|
1774
1758
|
integrity sha512-KEftzJ+H90x6pcKtdXZEPsQse8/y/UnvzRKrOSQFprnrGaFuJ62fVkP34Iu2IYuMvyauCyoLTNkJZgrrGA2wkA==
|
|
1775
1759
|
|
|
1776
|
-
find-up@^1.0.0:
|
|
1777
|
-
version "1.1.2"
|
|
1778
|
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
|
|
1779
|
-
integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
|
|
1780
|
-
dependencies:
|
|
1781
|
-
path-exists "^2.0.0"
|
|
1782
|
-
pinkie-promise "^2.0.0"
|
|
1783
|
-
|
|
1784
1760
|
find-up@^2.1.0:
|
|
1785
1761
|
version "2.1.0"
|
|
1786
1762
|
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
|
@@ -2047,16 +2023,11 @@ global-dirs@^0.1.0:
|
|
|
2047
2023
|
dependencies:
|
|
2048
2024
|
ini "^1.3.4"
|
|
2049
2025
|
|
|
2050
|
-
globals@^11.7.0:
|
|
2026
|
+
globals@^11.1.0, globals@^11.7.0:
|
|
2051
2027
|
version "11.10.0"
|
|
2052
2028
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50"
|
|
2053
2029
|
integrity sha512-0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ==
|
|
2054
2030
|
|
|
2055
|
-
globals@^9.18.0:
|
|
2056
|
-
version "9.18.0"
|
|
2057
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
|
2058
|
-
integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
|
|
2059
|
-
|
|
2060
2031
|
got@^6.7.1:
|
|
2061
2032
|
version "6.7.1"
|
|
2062
2033
|
resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
|
|
@@ -2096,7 +2067,7 @@ gunzip-maybe@^1.4.0:
|
|
|
2096
2067
|
pumpify "^1.3.3"
|
|
2097
2068
|
through2 "^2.0.3"
|
|
2098
2069
|
|
|
2099
|
-
handlebars@^4.0.
|
|
2070
|
+
handlebars@^4.0.11:
|
|
2100
2071
|
version "4.0.12"
|
|
2101
2072
|
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5"
|
|
2102
2073
|
integrity sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA==
|
|
@@ -2120,18 +2091,6 @@ har-validator@~5.1.0:
|
|
|
2120
2091
|
ajv "^6.5.5"
|
|
2121
2092
|
har-schema "^2.0.0"
|
|
2122
2093
|
|
|
2123
|
-
has-ansi@^2.0.0:
|
|
2124
|
-
version "2.0.0"
|
|
2125
|
-
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
|
2126
|
-
integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
|
|
2127
|
-
dependencies:
|
|
2128
|
-
ansi-regex "^2.0.0"
|
|
2129
|
-
|
|
2130
|
-
has-flag@^1.0.0:
|
|
2131
|
-
version "1.0.0"
|
|
2132
|
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
|
|
2133
|
-
integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=
|
|
2134
|
-
|
|
2135
2094
|
has-flag@^3.0.0:
|
|
2136
2095
|
version "3.0.0"
|
|
2137
2096
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
|
@@ -2210,14 +2169,6 @@ heimdalljs@^0.2.3, heimdalljs@^0.2.6:
|
|
|
2210
2169
|
dependencies:
|
|
2211
2170
|
rsvp "~3.2.1"
|
|
2212
2171
|
|
|
2213
|
-
home-or-tmp@^2.0.0:
|
|
2214
|
-
version "2.0.0"
|
|
2215
|
-
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
|
|
2216
|
-
integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg=
|
|
2217
|
-
dependencies:
|
|
2218
|
-
os-homedir "^1.0.0"
|
|
2219
|
-
os-tmpdir "^1.0.1"
|
|
2220
|
-
|
|
2221
2172
|
hosted-git-info@^2.1.4, hosted-git-info@^2.6.0, hosted-git-info@^2.7.1:
|
|
2222
2173
|
version "2.7.1"
|
|
2223
2174
|
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
|
|
@@ -2309,12 +2260,12 @@ import-lazy@^2.1.0:
|
|
|
2309
2260
|
resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
|
|
2310
2261
|
integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
|
|
2311
2262
|
|
|
2312
|
-
import-local@^
|
|
2313
|
-
version "
|
|
2314
|
-
resolved "https://registry.yarnpkg.com/import-local/-/import-local-
|
|
2315
|
-
integrity sha512-
|
|
2263
|
+
import-local@^2.0.0:
|
|
2264
|
+
version "2.0.0"
|
|
2265
|
+
resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
|
|
2266
|
+
integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
|
|
2316
2267
|
dependencies:
|
|
2317
|
-
pkg-dir "^
|
|
2268
|
+
pkg-dir "^3.0.0"
|
|
2318
2269
|
resolve-cwd "^2.0.0"
|
|
2319
2270
|
|
|
2320
2271
|
imports-loader@^0.8.0:
|
|
@@ -2381,7 +2332,7 @@ inquirer@^6.1.0, inquirer@^6.2.0:
|
|
|
2381
2332
|
strip-ansi "^5.0.0"
|
|
2382
2333
|
through "^2.3.6"
|
|
2383
2334
|
|
|
2384
|
-
invariant@^2.2.0, invariant@^2.2.
|
|
2335
|
+
invariant@^2.2.0, invariant@^2.2.4:
|
|
2385
2336
|
version "2.2.4"
|
|
2386
2337
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
|
2387
2338
|
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
|
@@ -2393,6 +2344,11 @@ invert-kv@^1.0.0:
|
|
|
2393
2344
|
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
|
2394
2345
|
integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY=
|
|
2395
2346
|
|
|
2347
|
+
invert-kv@^2.0.0:
|
|
2348
|
+
version "2.0.0"
|
|
2349
|
+
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
|
|
2350
|
+
integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
|
|
2351
|
+
|
|
2396
2352
|
ip-regex@^2.1.0:
|
|
2397
2353
|
version "2.1.0"
|
|
2398
2354
|
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
|
@@ -2458,6 +2414,13 @@ is-ci@^1.0.10:
|
|
|
2458
2414
|
dependencies:
|
|
2459
2415
|
ci-info "^1.5.0"
|
|
2460
2416
|
|
|
2417
|
+
is-ci@^2.0.0:
|
|
2418
|
+
version "2.0.0"
|
|
2419
|
+
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
|
|
2420
|
+
integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
|
|
2421
|
+
dependencies:
|
|
2422
|
+
ci-info "^2.0.0"
|
|
2423
|
+
|
|
2461
2424
|
is-cidr@^3.0.0:
|
|
2462
2425
|
version "3.0.0"
|
|
2463
2426
|
resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-3.0.0.tgz#1acf35c9e881063cd5f696d48959b30fed3eed56"
|
|
@@ -2536,13 +2499,6 @@ is-extglob@^1.0.0:
|
|
|
2536
2499
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
|
|
2537
2500
|
integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
|
|
2538
2501
|
|
|
2539
|
-
is-finite@^1.0.0:
|
|
2540
|
-
version "1.0.2"
|
|
2541
|
-
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
|
|
2542
|
-
integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=
|
|
2543
|
-
dependencies:
|
|
2544
|
-
number-is-nan "^1.0.0"
|
|
2545
|
-
|
|
2546
2502
|
is-fullwidth-code-point@^1.0.0:
|
|
2547
2503
|
version "1.0.0"
|
|
2548
2504
|
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
|
|
@@ -2555,10 +2511,10 @@ is-fullwidth-code-point@^2.0.0:
|
|
|
2555
2511
|
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
|
2556
2512
|
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
|
2557
2513
|
|
|
2558
|
-
is-generator-fn@^
|
|
2559
|
-
version "
|
|
2560
|
-
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-
|
|
2561
|
-
integrity
|
|
2514
|
+
is-generator-fn@^2.0.0:
|
|
2515
|
+
version "2.0.0"
|
|
2516
|
+
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz#038c31b774709641bda678b1f06a4e3227c10b3e"
|
|
2517
|
+
integrity sha512-elzyIdM7iKoFHzcrndIqjYomImhxrFRnGP3galODoII4TB9gI7mZ+FnlLQmmjf27SxHS2gKEeyhX5/+YRS6H9g==
|
|
2562
2518
|
|
|
2563
2519
|
is-glob@^2.0.0, is-glob@^2.0.1:
|
|
2564
2520
|
version "2.0.1"
|
|
@@ -2677,11 +2633,6 @@ is-typedarray@~1.0.0:
|
|
|
2677
2633
|
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
|
2678
2634
|
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
|
|
2679
2635
|
|
|
2680
|
-
is-utf8@^0.2.0:
|
|
2681
|
-
version "0.2.1"
|
|
2682
|
-
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
|
|
2683
|
-
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
|
|
2684
|
-
|
|
2685
2636
|
is-webpack-bundle@^1.0.0:
|
|
2686
2637
|
version "1.0.0"
|
|
2687
2638
|
resolved "https://registry.yarnpkg.com/is-webpack-bundle/-/is-webpack-bundle-1.0.0.tgz#576a50bb7c53d1d6a5c1647939c93ae2cbb90eea"
|
|
@@ -2724,404 +2675,428 @@ isstream@~0.1.2:
|
|
|
2724
2675
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
|
2725
2676
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
|
2726
2677
|
|
|
2727
|
-
istanbul-api@^
|
|
2728
|
-
version "
|
|
2729
|
-
resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-
|
|
2730
|
-
integrity sha512-
|
|
2731
|
-
dependencies:
|
|
2732
|
-
async "^2.1
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
istanbul-lib-
|
|
2736
|
-
istanbul-lib-
|
|
2737
|
-
istanbul-lib-
|
|
2738
|
-
istanbul-lib-
|
|
2739
|
-
istanbul-
|
|
2740
|
-
|
|
2741
|
-
|
|
2678
|
+
istanbul-api@^2.0.8:
|
|
2679
|
+
version "2.0.8"
|
|
2680
|
+
resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.0.8.tgz#5621503c5595e5adbbacd5ce257090417c7f55da"
|
|
2681
|
+
integrity sha512-ITCccemErW+BhZotmyQ/ktlYTAp9r7oWfz1oxxMpgKQVTUw0NAYRbKLbOSNaInipecIKul7U7O5BfCQBBRZa3w==
|
|
2682
|
+
dependencies:
|
|
2683
|
+
async "^2.6.1"
|
|
2684
|
+
compare-versions "^3.2.1"
|
|
2685
|
+
fileset "^2.0.3"
|
|
2686
|
+
istanbul-lib-coverage "^2.0.2"
|
|
2687
|
+
istanbul-lib-hook "^2.0.2"
|
|
2688
|
+
istanbul-lib-instrument "^3.0.1"
|
|
2689
|
+
istanbul-lib-report "^2.0.3"
|
|
2690
|
+
istanbul-lib-source-maps "^3.0.1"
|
|
2691
|
+
istanbul-reports "^2.0.3"
|
|
2692
|
+
js-yaml "^3.12.0"
|
|
2693
|
+
make-dir "^1.3.0"
|
|
2742
2694
|
once "^1.4.0"
|
|
2743
2695
|
|
|
2744
|
-
istanbul-lib-coverage@^
|
|
2745
|
-
version "
|
|
2746
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-
|
|
2747
|
-
integrity sha512-
|
|
2696
|
+
istanbul-lib-coverage@^2.0.1:
|
|
2697
|
+
version "2.0.1"
|
|
2698
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#2aee0e073ad8c5f6a0b00e0dfbf52b4667472eda"
|
|
2699
|
+
integrity sha512-nPvSZsVlbG9aLhZYaC3Oi1gT/tpyo3Yt5fNyf6NmcKIayz4VV/txxJFFKAK/gU4dcNn8ehsanBbVHVl0+amOLA==
|
|
2748
2700
|
|
|
2749
|
-
istanbul-lib-
|
|
2750
|
-
version "
|
|
2751
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-
|
|
2752
|
-
integrity sha512
|
|
2753
|
-
dependencies:
|
|
2754
|
-
append-transform "^0.4.0"
|
|
2755
|
-
|
|
2756
|
-
istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2:
|
|
2757
|
-
version "1.10.2"
|
|
2758
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca"
|
|
2759
|
-
integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==
|
|
2760
|
-
dependencies:
|
|
2761
|
-
babel-generator "^6.18.0"
|
|
2762
|
-
babel-template "^6.16.0"
|
|
2763
|
-
babel-traverse "^6.18.0"
|
|
2764
|
-
babel-types "^6.18.0"
|
|
2765
|
-
babylon "^6.18.0"
|
|
2766
|
-
istanbul-lib-coverage "^1.2.1"
|
|
2767
|
-
semver "^5.3.0"
|
|
2701
|
+
istanbul-lib-coverage@^2.0.2:
|
|
2702
|
+
version "2.0.2"
|
|
2703
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz#d5db9a7a4bb8fdbd62ec746226385987b73a8f43"
|
|
2704
|
+
integrity sha512-4CsY730KHy12ya/YNKubrMlb7EZZVsEPhXntyRY/Cbs7HN5HdznLbI4UbvIGHgocxHx3VkGe7l6IN1lipetuGg==
|
|
2768
2705
|
|
|
2769
|
-
istanbul-lib-
|
|
2770
|
-
version "
|
|
2771
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-
|
|
2772
|
-
integrity sha512-
|
|
2706
|
+
istanbul-lib-hook@^2.0.2:
|
|
2707
|
+
version "2.0.2"
|
|
2708
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.2.tgz#9ddd28aeac10f3bb6a4d02325e72b35044d17d3a"
|
|
2709
|
+
integrity sha512-m0MwviQ0Av6qBNDkvKdLBxxuK6ffXo8761gE2bfT+/b+dhg8LUyQhp1nFh795LO12DpiSocuCPIRwILCsN1//Q==
|
|
2773
2710
|
dependencies:
|
|
2774
|
-
|
|
2775
|
-
mkdirp "^0.5.1"
|
|
2776
|
-
path-parse "^1.0.5"
|
|
2777
|
-
supports-color "^3.1.2"
|
|
2711
|
+
append-transform "^1.0.0"
|
|
2778
2712
|
|
|
2779
|
-
istanbul-lib-
|
|
2780
|
-
version "
|
|
2781
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-
|
|
2782
|
-
integrity sha512-
|
|
2713
|
+
istanbul-lib-instrument@^3.0.0:
|
|
2714
|
+
version "3.0.0"
|
|
2715
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.0.0.tgz#b5f066b2a161f75788be17a9d556f40a0cf2afc9"
|
|
2716
|
+
integrity sha512-eQY9vN9elYjdgN9Iv6NS/00bptm02EBBk70lRMaVjeA6QYocQgenVrSgC28TJurdnZa80AGO3ASdFN+w/njGiQ==
|
|
2717
|
+
dependencies:
|
|
2718
|
+
"@babel/generator" "^7.0.0"
|
|
2719
|
+
"@babel/parser" "^7.0.0"
|
|
2720
|
+
"@babel/template" "^7.0.0"
|
|
2721
|
+
"@babel/traverse" "^7.0.0"
|
|
2722
|
+
"@babel/types" "^7.0.0"
|
|
2723
|
+
istanbul-lib-coverage "^2.0.1"
|
|
2724
|
+
semver "^5.5.0"
|
|
2725
|
+
|
|
2726
|
+
istanbul-lib-instrument@^3.0.1:
|
|
2727
|
+
version "3.0.1"
|
|
2728
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.0.1.tgz#dd631e117dd9891e8bf1de7bb400cb8e491363af"
|
|
2729
|
+
integrity sha512-/LTPhh1YKXjJlb5uggsiZjJHuViIljcIsB1zqmZegIw2yQ4l8LRksRGebJrZUFVEE28ZtKzmmT50W5tpAucfJg==
|
|
2730
|
+
dependencies:
|
|
2731
|
+
"@babel/generator" "^7.0.0"
|
|
2732
|
+
"@babel/parser" "^7.0.0"
|
|
2733
|
+
"@babel/template" "^7.0.0"
|
|
2734
|
+
"@babel/traverse" "^7.0.0"
|
|
2735
|
+
"@babel/types" "^7.0.0"
|
|
2736
|
+
istanbul-lib-coverage "^2.0.2"
|
|
2737
|
+
semver "^5.5.0"
|
|
2738
|
+
|
|
2739
|
+
istanbul-lib-report@^2.0.3:
|
|
2740
|
+
version "2.0.3"
|
|
2741
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.3.tgz#8e22534766e9cc8e20ae96283331b4405da9dce9"
|
|
2742
|
+
integrity sha512-25gX27Mbd3MjM41hwGl5lWcQEqaPaMP79YDFS20xuTUujItNmHgTBS3WRZvzyzLE0IAKaL+JpLrryou2WlZNMw==
|
|
2743
|
+
dependencies:
|
|
2744
|
+
istanbul-lib-coverage "^2.0.2"
|
|
2745
|
+
make-dir "^1.3.0"
|
|
2746
|
+
supports-color "^5.4.0"
|
|
2747
|
+
|
|
2748
|
+
istanbul-lib-source-maps@^3.0.1:
|
|
2749
|
+
version "3.0.1"
|
|
2750
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.1.tgz#002936e1106c4fa49714a946e6c63c1098b52e11"
|
|
2751
|
+
integrity sha512-DBsZMpCwCPewRCmyd0FETHtzarQK/kKejQkDPBqKPwLYQmhs2p6a7yytfVDqib7PgXGSJZNTc1b6B3jl9G8FqA==
|
|
2783
2752
|
dependencies:
|
|
2784
2753
|
debug "^3.1.0"
|
|
2785
|
-
istanbul-lib-coverage "^
|
|
2786
|
-
|
|
2787
|
-
rimraf "^2.6.
|
|
2788
|
-
source-map "^0.
|
|
2754
|
+
istanbul-lib-coverage "^2.0.2"
|
|
2755
|
+
make-dir "^1.3.0"
|
|
2756
|
+
rimraf "^2.6.2"
|
|
2757
|
+
source-map "^0.6.1"
|
|
2789
2758
|
|
|
2790
|
-
istanbul-reports@^
|
|
2791
|
-
version "
|
|
2792
|
-
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-
|
|
2793
|
-
integrity sha512
|
|
2759
|
+
istanbul-reports@^2.0.3:
|
|
2760
|
+
version "2.0.3"
|
|
2761
|
+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.0.3.tgz#332eda684c9ee891f199dfba305c3e776f55fc16"
|
|
2762
|
+
integrity sha512-qpQ5ZWBkOatTxmTelS+HV5ybPSq7EeXmwXrPbGv7ebP+9DJOtveUcv6hCncZE4IxSAEkdmLEh3xo31SCttbApQ==
|
|
2794
2763
|
dependencies:
|
|
2795
|
-
handlebars "^4.0.
|
|
2764
|
+
handlebars "^4.0.11"
|
|
2796
2765
|
|
|
2797
|
-
jest-changed-files@^
|
|
2798
|
-
version "
|
|
2799
|
-
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-
|
|
2800
|
-
integrity sha512-
|
|
2766
|
+
jest-changed-files@^24.0.0:
|
|
2767
|
+
version "24.0.0"
|
|
2768
|
+
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.0.0.tgz#c02c09a8cc9ca93f513166bc773741bd39898ff7"
|
|
2769
|
+
integrity sha512-nnuU510R9U+UX0WNb5XFEcsrMqriSiRLeO9KWDFgPrpToaQm60prfQYpxsXigdClpvNot5bekDY440x9dNGnsQ==
|
|
2801
2770
|
dependencies:
|
|
2771
|
+
execa "^1.0.0"
|
|
2802
2772
|
throat "^4.0.0"
|
|
2803
2773
|
|
|
2804
|
-
jest-cli@^
|
|
2805
|
-
version "
|
|
2806
|
-
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-
|
|
2807
|
-
integrity sha512-
|
|
2774
|
+
jest-cli@^24.0.0:
|
|
2775
|
+
version "24.0.0"
|
|
2776
|
+
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.0.0.tgz#691fd4f7bce2574c1865db6844a43b56e60ce2a4"
|
|
2777
|
+
integrity sha512-mElnFipLaGxo1SiQ1CLvuaz3eX07MJc4HcyKrApSJf8xSdY1/EwaHurKwu1g2cDiwIgY8uHj7UcF5OYbtiBOWg==
|
|
2808
2778
|
dependencies:
|
|
2809
2779
|
ansi-escapes "^3.0.0"
|
|
2810
2780
|
chalk "^2.0.1"
|
|
2811
2781
|
exit "^0.1.2"
|
|
2812
2782
|
glob "^7.1.2"
|
|
2813
|
-
graceful-fs "^4.1.
|
|
2814
|
-
import-local "^
|
|
2815
|
-
is-ci "^
|
|
2816
|
-
istanbul-api "^
|
|
2817
|
-
istanbul-lib-coverage "^
|
|
2818
|
-
istanbul-lib-instrument "^
|
|
2819
|
-
istanbul-lib-source-maps "^
|
|
2820
|
-
jest-changed-files "^
|
|
2821
|
-
jest-config "^
|
|
2822
|
-
jest-environment-jsdom "^
|
|
2823
|
-
jest-get-type "^
|
|
2824
|
-
jest-haste-map "^
|
|
2825
|
-
jest-message-util "^
|
|
2826
|
-
jest-regex-util "^
|
|
2827
|
-
jest-resolve-dependencies "^
|
|
2828
|
-
jest-runner "^
|
|
2829
|
-
jest-runtime "^
|
|
2830
|
-
jest-snapshot "^
|
|
2831
|
-
jest-util "^
|
|
2832
|
-
jest-validate "^
|
|
2833
|
-
jest-watcher "^
|
|
2834
|
-
jest-worker "^
|
|
2835
|
-
micromatch "^
|
|
2783
|
+
graceful-fs "^4.1.15"
|
|
2784
|
+
import-local "^2.0.0"
|
|
2785
|
+
is-ci "^2.0.0"
|
|
2786
|
+
istanbul-api "^2.0.8"
|
|
2787
|
+
istanbul-lib-coverage "^2.0.2"
|
|
2788
|
+
istanbul-lib-instrument "^3.0.1"
|
|
2789
|
+
istanbul-lib-source-maps "^3.0.1"
|
|
2790
|
+
jest-changed-files "^24.0.0"
|
|
2791
|
+
jest-config "^24.0.0"
|
|
2792
|
+
jest-environment-jsdom "^24.0.0"
|
|
2793
|
+
jest-get-type "^24.0.0"
|
|
2794
|
+
jest-haste-map "^24.0.0"
|
|
2795
|
+
jest-message-util "^24.0.0"
|
|
2796
|
+
jest-regex-util "^24.0.0"
|
|
2797
|
+
jest-resolve-dependencies "^24.0.0"
|
|
2798
|
+
jest-runner "^24.0.0"
|
|
2799
|
+
jest-runtime "^24.0.0"
|
|
2800
|
+
jest-snapshot "^24.0.0"
|
|
2801
|
+
jest-util "^24.0.0"
|
|
2802
|
+
jest-validate "^24.0.0"
|
|
2803
|
+
jest-watcher "^24.0.0"
|
|
2804
|
+
jest-worker "^24.0.0"
|
|
2805
|
+
micromatch "^3.1.10"
|
|
2836
2806
|
node-notifier "^5.2.1"
|
|
2837
|
-
|
|
2807
|
+
p-each-series "^1.0.0"
|
|
2808
|
+
pirates "^4.0.0"
|
|
2809
|
+
prompts "^2.0.1"
|
|
2838
2810
|
realpath-native "^1.0.0"
|
|
2839
2811
|
rimraf "^2.5.4"
|
|
2840
|
-
slash "^
|
|
2812
|
+
slash "^2.0.0"
|
|
2841
2813
|
string-length "^2.0.0"
|
|
2842
|
-
strip-ansi "^
|
|
2814
|
+
strip-ansi "^5.0.0"
|
|
2843
2815
|
which "^1.2.12"
|
|
2844
|
-
yargs "^
|
|
2816
|
+
yargs "^12.0.2"
|
|
2845
2817
|
|
|
2846
|
-
jest-config@^
|
|
2847
|
-
version "
|
|
2848
|
-
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-
|
|
2849
|
-
integrity sha512-
|
|
2818
|
+
jest-config@^24.0.0:
|
|
2819
|
+
version "24.0.0"
|
|
2820
|
+
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.0.0.tgz#878abe03c060c74a0ec30d3cd5dd1897873e030e"
|
|
2821
|
+
integrity sha512-9/soqWL5YSq1ZJtgVJ5YYPCL1f9Mi2lVCp5+OXuYBOaN8DHSFRCSWip0rQ6N+mPTOEIAlCvcUH8zaPOwK4hePg==
|
|
2850
2822
|
dependencies:
|
|
2851
|
-
babel
|
|
2852
|
-
babel-jest "^
|
|
2823
|
+
"@babel/core" "^7.1.0"
|
|
2824
|
+
babel-jest "^24.0.0"
|
|
2853
2825
|
chalk "^2.0.1"
|
|
2854
2826
|
glob "^7.1.1"
|
|
2855
|
-
jest-environment-jsdom "^
|
|
2856
|
-
jest-environment-node "^
|
|
2857
|
-
jest-get-type "^
|
|
2858
|
-
jest-jasmine2 "^
|
|
2859
|
-
jest-regex-util "^
|
|
2860
|
-
jest-resolve "^
|
|
2861
|
-
jest-util "^
|
|
2862
|
-
jest-validate "^
|
|
2863
|
-
micromatch "^
|
|
2864
|
-
pretty-format "^
|
|
2827
|
+
jest-environment-jsdom "^24.0.0"
|
|
2828
|
+
jest-environment-node "^24.0.0"
|
|
2829
|
+
jest-get-type "^24.0.0"
|
|
2830
|
+
jest-jasmine2 "^24.0.0"
|
|
2831
|
+
jest-regex-util "^24.0.0"
|
|
2832
|
+
jest-resolve "^24.0.0"
|
|
2833
|
+
jest-util "^24.0.0"
|
|
2834
|
+
jest-validate "^24.0.0"
|
|
2835
|
+
micromatch "^3.1.10"
|
|
2836
|
+
pretty-format "^24.0.0"
|
|
2837
|
+
realpath-native "^1.0.2"
|
|
2838
|
+
uuid "^3.3.2"
|
|
2865
2839
|
|
|
2866
|
-
jest-diff@^
|
|
2867
|
-
version "
|
|
2868
|
-
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-
|
|
2869
|
-
integrity sha512-
|
|
2840
|
+
jest-diff@^24.0.0:
|
|
2841
|
+
version "24.0.0"
|
|
2842
|
+
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.0.0.tgz#a3e5f573dbac482f7d9513ac9cfa21644d3d6b34"
|
|
2843
|
+
integrity sha512-XY5wMpRaTsuMoU+1/B2zQSKQ9RdE9gsLkGydx3nvApeyPijLA8GtEvIcPwISRCer+VDf9W1mStTYYq6fPt8ryA==
|
|
2870
2844
|
dependencies:
|
|
2871
2845
|
chalk "^2.0.1"
|
|
2872
|
-
diff "^
|
|
2873
|
-
jest-get-type "^
|
|
2874
|
-
pretty-format "^
|
|
2846
|
+
diff-sequences "^24.0.0"
|
|
2847
|
+
jest-get-type "^24.0.0"
|
|
2848
|
+
pretty-format "^24.0.0"
|
|
2875
2849
|
|
|
2876
|
-
jest-docblock@^
|
|
2877
|
-
version "
|
|
2878
|
-
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-
|
|
2879
|
-
integrity
|
|
2850
|
+
jest-docblock@^24.0.0:
|
|
2851
|
+
version "24.0.0"
|
|
2852
|
+
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.0.0.tgz#54d77a188743e37f62181a91a01eb9222289f94e"
|
|
2853
|
+
integrity sha512-KfAKZ4SN7CFOZpWg4i7g7MSlY0M+mq7K0aMqENaG2vHuhC9fc3vkpU/iNN9sOus7v3h3Y48uEjqz3+Gdn2iptA==
|
|
2880
2854
|
dependencies:
|
|
2881
2855
|
detect-newline "^2.1.0"
|
|
2882
2856
|
|
|
2883
|
-
jest-each@^
|
|
2884
|
-
version "
|
|
2885
|
-
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-
|
|
2886
|
-
integrity sha512-
|
|
2857
|
+
jest-each@^24.0.0:
|
|
2858
|
+
version "24.0.0"
|
|
2859
|
+
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.0.0.tgz#10987a06b21c7ffbfb7706c89d24c52ed864be55"
|
|
2860
|
+
integrity sha512-gFcbY4Cu55yxExXMkjrnLXov3bWO3dbPAW7HXb31h/DNWdNc/6X8MtxGff8nh3/MjkF9DpVqnj0KsPKuPK0cpA==
|
|
2887
2861
|
dependencies:
|
|
2888
2862
|
chalk "^2.0.1"
|
|
2889
|
-
|
|
2863
|
+
jest-get-type "^24.0.0"
|
|
2864
|
+
jest-util "^24.0.0"
|
|
2865
|
+
pretty-format "^24.0.0"
|
|
2890
2866
|
|
|
2891
|
-
jest-environment-jsdom@^
|
|
2892
|
-
version "
|
|
2893
|
-
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-
|
|
2894
|
-
integrity
|
|
2867
|
+
jest-environment-jsdom@^24.0.0:
|
|
2868
|
+
version "24.0.0"
|
|
2869
|
+
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.0.0.tgz#5affa0654d6e44cd798003daa1a8701dbd6e4d11"
|
|
2870
|
+
integrity sha512-1YNp7xtxajTRaxbylDc2pWvFnfDTH5BJJGyVzyGAKNt/lEULohwEV9zFqTgG4bXRcq7xzdd+sGFws+LxThXXOw==
|
|
2895
2871
|
dependencies:
|
|
2896
|
-
jest-mock "^
|
|
2897
|
-
jest-util "^
|
|
2872
|
+
jest-mock "^24.0.0"
|
|
2873
|
+
jest-util "^24.0.0"
|
|
2898
2874
|
jsdom "^11.5.1"
|
|
2899
2875
|
|
|
2900
|
-
jest-environment-node@^
|
|
2901
|
-
version "
|
|
2902
|
-
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-
|
|
2903
|
-
integrity
|
|
2876
|
+
jest-environment-node@^24.0.0:
|
|
2877
|
+
version "24.0.0"
|
|
2878
|
+
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.0.0.tgz#330948980656ed8773ce2e04eb597ed91e3c7190"
|
|
2879
|
+
integrity sha512-62fOFcaEdU0VLaq8JL90TqwI7hLn0cOKOl8vY2n477vRkCJRojiRRtJVRzzCcgFvs6gqU97DNqX5R0BrBP6Rxg==
|
|
2904
2880
|
dependencies:
|
|
2905
|
-
jest-mock "^
|
|
2906
|
-
jest-util "^
|
|
2881
|
+
jest-mock "^24.0.0"
|
|
2882
|
+
jest-util "^24.0.0"
|
|
2907
2883
|
|
|
2908
|
-
jest-get-type@^
|
|
2909
|
-
version "
|
|
2910
|
-
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-
|
|
2911
|
-
integrity sha512
|
|
2884
|
+
jest-get-type@^24.0.0:
|
|
2885
|
+
version "24.0.0"
|
|
2886
|
+
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.0.0.tgz#36e72930b78e33da59a4f63d44d332188278940b"
|
|
2887
|
+
integrity sha512-z6/Eyf6s9ZDGz7eOvl+fzpuJmN9i0KyTt1no37/dHu8galssxz5ZEgnc1KaV8R31q1khxyhB4ui/X5ZjjPk77w==
|
|
2912
2888
|
|
|
2913
|
-
jest-haste-map@^
|
|
2914
|
-
version "
|
|
2915
|
-
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-
|
|
2916
|
-
integrity sha512-
|
|
2889
|
+
jest-haste-map@^24.0.0:
|
|
2890
|
+
version "24.0.0"
|
|
2891
|
+
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.0.0.tgz#e9ef51b2c9257384b4d6beb83bd48c65b37b5e6e"
|
|
2892
|
+
integrity sha512-CcViJyUo41IQqttLxXVdI41YErkzBKbE6cS6dRAploCeutePYfUimWd3C9rQEWhX0YBOQzvNsC0O9nYxK2nnxQ==
|
|
2917
2893
|
dependencies:
|
|
2918
2894
|
fb-watchman "^2.0.0"
|
|
2919
|
-
graceful-fs "^4.1.
|
|
2895
|
+
graceful-fs "^4.1.15"
|
|
2920
2896
|
invariant "^2.2.4"
|
|
2921
|
-
jest-
|
|
2922
|
-
jest-
|
|
2923
|
-
jest-worker "^
|
|
2924
|
-
micromatch "^
|
|
2925
|
-
sane "^
|
|
2926
|
-
|
|
2927
|
-
jest-jasmine2@^
|
|
2928
|
-
version "
|
|
2929
|
-
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-
|
|
2930
|
-
integrity sha512-
|
|
2931
|
-
dependencies:
|
|
2932
|
-
babel
|
|
2897
|
+
jest-serializer "^24.0.0"
|
|
2898
|
+
jest-util "^24.0.0"
|
|
2899
|
+
jest-worker "^24.0.0"
|
|
2900
|
+
micromatch "^3.1.10"
|
|
2901
|
+
sane "^3.0.0"
|
|
2902
|
+
|
|
2903
|
+
jest-jasmine2@^24.0.0:
|
|
2904
|
+
version "24.0.0"
|
|
2905
|
+
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.0.0.tgz#7d87be9d8b32d34ac5980ad646b7ae7f99e33a19"
|
|
2906
|
+
integrity sha512-q1xEV9KHM0bgfBj3yrkrjRF5kxpNDkWPCwVfSPN1DC+pD6J5wrM9/u2BgzhKhALXiaZUUhJ+f/OcEC0Gwpw90A==
|
|
2907
|
+
dependencies:
|
|
2908
|
+
"@babel/traverse" "^7.1.0"
|
|
2933
2909
|
chalk "^2.0.1"
|
|
2934
2910
|
co "^4.6.0"
|
|
2935
|
-
expect "^
|
|
2936
|
-
is-generator-fn "^
|
|
2937
|
-
jest-
|
|
2938
|
-
jest-
|
|
2939
|
-
jest-
|
|
2940
|
-
jest-
|
|
2941
|
-
jest-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
integrity sha512-rosyCHQfBcol4NsckTn01cdelzWLU9Cq7aaigDf8VwwpIRvWE/9zLgX2bON+FkEW69/0UuYslUe22SOdEf2nog==
|
|
2911
|
+
expect "^24.0.0"
|
|
2912
|
+
is-generator-fn "^2.0.0"
|
|
2913
|
+
jest-each "^24.0.0"
|
|
2914
|
+
jest-matcher-utils "^24.0.0"
|
|
2915
|
+
jest-message-util "^24.0.0"
|
|
2916
|
+
jest-snapshot "^24.0.0"
|
|
2917
|
+
jest-util "^24.0.0"
|
|
2918
|
+
pretty-format "^24.0.0"
|
|
2919
|
+
|
|
2920
|
+
jest-leak-detector@^24.0.0:
|
|
2921
|
+
version "24.0.0"
|
|
2922
|
+
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.0.0.tgz#78280119fd05ee98317daee62cddb3aa537a31c6"
|
|
2923
|
+
integrity sha512-ZYHJYFeibxfsDSKowjDP332pStuiFT2xfc5R67Rjm/l+HFJWJgNIOCOlQGeXLCtyUn3A23+VVDdiCcnB6dTTrg==
|
|
2924
|
+
dependencies:
|
|
2925
|
+
pretty-format "^24.0.0"
|
|
2926
|
+
|
|
2927
|
+
jest-matcher-utils@^24.0.0:
|
|
2928
|
+
version "24.0.0"
|
|
2929
|
+
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.0.0.tgz#fc9c41cfc49b2c3ec14e576f53d519c37729d579"
|
|
2930
|
+
integrity sha512-LQTDmO+aWRz1Tf9HJg+HlPHhDh1E1c65kVwRFo5mwCVp5aQDzlkz4+vCvXhOKFjitV2f0kMdHxnODrXVoi+rlA==
|
|
2956
2931
|
dependencies:
|
|
2957
2932
|
chalk "^2.0.1"
|
|
2958
|
-
jest-
|
|
2959
|
-
|
|
2933
|
+
jest-diff "^24.0.0"
|
|
2934
|
+
jest-get-type "^24.0.0"
|
|
2935
|
+
pretty-format "^24.0.0"
|
|
2960
2936
|
|
|
2961
|
-
jest-message-util@^
|
|
2962
|
-
version "
|
|
2963
|
-
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-
|
|
2964
|
-
integrity
|
|
2937
|
+
jest-message-util@^24.0.0:
|
|
2938
|
+
version "24.0.0"
|
|
2939
|
+
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.0.0.tgz#a07a141433b2c992dbaec68d4cbfe470ba289619"
|
|
2940
|
+
integrity sha512-J9ROJIwz/IeC+eV1XSwnRK4oAwPuhmxEyYx1+K5UI+pIYwFZDSrfZaiWTdq0d2xYFw4Xiu+0KQWsdsQpgJMf3Q==
|
|
2965
2941
|
dependencies:
|
|
2966
|
-
"@babel/code-frame" "^7.0.0
|
|
2942
|
+
"@babel/code-frame" "^7.0.0"
|
|
2967
2943
|
chalk "^2.0.1"
|
|
2968
|
-
micromatch "^
|
|
2969
|
-
slash "^
|
|
2944
|
+
micromatch "^3.1.10"
|
|
2945
|
+
slash "^2.0.0"
|
|
2970
2946
|
stack-utils "^1.0.1"
|
|
2971
2947
|
|
|
2972
|
-
jest-mock@^
|
|
2973
|
-
version "
|
|
2974
|
-
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-
|
|
2975
|
-
integrity
|
|
2948
|
+
jest-mock@^24.0.0:
|
|
2949
|
+
version "24.0.0"
|
|
2950
|
+
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.0.0.tgz#9a4b53e01d66a0e780f7d857462d063e024c617d"
|
|
2951
|
+
integrity sha512-sQp0Hu5fcf5NZEh1U9eIW2qD0BwJZjb63Yqd98PQJFvf/zzUTBoUAwv/Dc/HFeNHIw1f3hl/48vNn+j3STaI7A==
|
|
2976
2952
|
|
|
2977
|
-
jest-regex-util@^
|
|
2978
|
-
version "
|
|
2979
|
-
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-
|
|
2980
|
-
integrity
|
|
2953
|
+
jest-regex-util@^24.0.0:
|
|
2954
|
+
version "24.0.0"
|
|
2955
|
+
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.0.0.tgz#4feee8ec4a358f5bee0a654e94eb26163cb9089a"
|
|
2956
|
+
integrity sha512-Jv/uOTCuC+PY7WpJl2mpoI+WbY2ut73qwwO9ByJJNwOCwr1qWhEW2Lyi2S9ZewUdJqeVpEBisdEVZSI+Zxo58Q==
|
|
2981
2957
|
|
|
2982
|
-
jest-resolve-dependencies@^
|
|
2983
|
-
version "
|
|
2984
|
-
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-
|
|
2985
|
-
integrity sha512-
|
|
2958
|
+
jest-resolve-dependencies@^24.0.0:
|
|
2959
|
+
version "24.0.0"
|
|
2960
|
+
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.0.0.tgz#86540611d660bdcaab8b87d069247d3832811d94"
|
|
2961
|
+
integrity sha512-CJGS5ME2g5wL16o3Y22ga9p5ntNT5CUYX40/0lYj9ic9jB5YHm/qMKTgbFt9kowEBiMOFpXy15dWtBTEU54+zg==
|
|
2986
2962
|
dependencies:
|
|
2987
|
-
jest-regex-util "^
|
|
2988
|
-
jest-snapshot "^
|
|
2963
|
+
jest-regex-util "^24.0.0"
|
|
2964
|
+
jest-snapshot "^24.0.0"
|
|
2989
2965
|
|
|
2990
|
-
jest-resolve@^
|
|
2991
|
-
version "
|
|
2992
|
-
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-
|
|
2993
|
-
integrity sha512-
|
|
2966
|
+
jest-resolve@^24.0.0:
|
|
2967
|
+
version "24.0.0"
|
|
2968
|
+
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.0.0.tgz#0206cfe842324f8796b01f706f4075309bf7b405"
|
|
2969
|
+
integrity sha512-uKDGyJqNaBQKox1DJzm27CJobADsIMNgZGusXhtYzl98LKu/fKuokkRsd7EBVgoDA80HKHc3LOPKuYLryMu1vw==
|
|
2994
2970
|
dependencies:
|
|
2995
2971
|
browser-resolve "^1.11.3"
|
|
2996
2972
|
chalk "^2.0.1"
|
|
2997
2973
|
realpath-native "^1.0.0"
|
|
2998
2974
|
|
|
2999
|
-
jest-runner@^
|
|
3000
|
-
version "
|
|
3001
|
-
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-
|
|
3002
|
-
integrity sha512-
|
|
2975
|
+
jest-runner@^24.0.0:
|
|
2976
|
+
version "24.0.0"
|
|
2977
|
+
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.0.0.tgz#00b280d52d23286111a8ed0362ed958283f7f0e3"
|
|
2978
|
+
integrity sha512-XefXm2XimKtwdfi2am4364GfCmLD1tOjiRtDexY65diCXt4Rw23rxj2wiW7p9s8Nh9dzJQNmrheqZ5rzvn762g==
|
|
3003
2979
|
dependencies:
|
|
3004
2980
|
exit "^0.1.2"
|
|
3005
|
-
graceful-fs "^4.1.
|
|
3006
|
-
jest-config "^
|
|
3007
|
-
jest-docblock "^
|
|
3008
|
-
jest-haste-map "^
|
|
3009
|
-
jest-jasmine2 "^
|
|
3010
|
-
jest-leak-detector "^
|
|
3011
|
-
jest-message-util "^
|
|
3012
|
-
jest-runtime "^
|
|
3013
|
-
jest-util "^
|
|
3014
|
-
jest-worker "^
|
|
2981
|
+
graceful-fs "^4.1.15"
|
|
2982
|
+
jest-config "^24.0.0"
|
|
2983
|
+
jest-docblock "^24.0.0"
|
|
2984
|
+
jest-haste-map "^24.0.0"
|
|
2985
|
+
jest-jasmine2 "^24.0.0"
|
|
2986
|
+
jest-leak-detector "^24.0.0"
|
|
2987
|
+
jest-message-util "^24.0.0"
|
|
2988
|
+
jest-runtime "^24.0.0"
|
|
2989
|
+
jest-util "^24.0.0"
|
|
2990
|
+
jest-worker "^24.0.0"
|
|
3015
2991
|
source-map-support "^0.5.6"
|
|
3016
2992
|
throat "^4.0.0"
|
|
3017
2993
|
|
|
3018
|
-
jest-runtime@^
|
|
3019
|
-
version "
|
|
3020
|
-
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-
|
|
3021
|
-
integrity sha512-
|
|
2994
|
+
jest-runtime@^24.0.0:
|
|
2995
|
+
version "24.0.0"
|
|
2996
|
+
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.0.0.tgz#bc80756f5458c2c8e4db86f44b687ff692026c13"
|
|
2997
|
+
integrity sha512-UeVoTGiij8upcqfyBlJvImws7IGY+ZWtgVpt1h4VmVbyei39tVGia/20VoP3yvodS6FdjTwBj+JzVNuoh/9UTw==
|
|
3022
2998
|
dependencies:
|
|
3023
|
-
babel
|
|
3024
|
-
babel-plugin-istanbul "^
|
|
2999
|
+
"@babel/core" "^7.1.0"
|
|
3000
|
+
babel-plugin-istanbul "^5.1.0"
|
|
3025
3001
|
chalk "^2.0.1"
|
|
3026
3002
|
convert-source-map "^1.4.0"
|
|
3027
3003
|
exit "^0.1.2"
|
|
3028
3004
|
fast-json-stable-stringify "^2.0.0"
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
jest-
|
|
3032
|
-
jest-
|
|
3033
|
-
jest-
|
|
3034
|
-
jest-
|
|
3035
|
-
jest-
|
|
3036
|
-
jest-
|
|
3037
|
-
jest-
|
|
3038
|
-
|
|
3005
|
+
glob "^7.1.3"
|
|
3006
|
+
graceful-fs "^4.1.15"
|
|
3007
|
+
jest-config "^24.0.0"
|
|
3008
|
+
jest-haste-map "^24.0.0"
|
|
3009
|
+
jest-message-util "^24.0.0"
|
|
3010
|
+
jest-regex-util "^24.0.0"
|
|
3011
|
+
jest-resolve "^24.0.0"
|
|
3012
|
+
jest-snapshot "^24.0.0"
|
|
3013
|
+
jest-util "^24.0.0"
|
|
3014
|
+
jest-validate "^24.0.0"
|
|
3015
|
+
micromatch "^3.1.10"
|
|
3039
3016
|
realpath-native "^1.0.0"
|
|
3040
|
-
slash "^
|
|
3017
|
+
slash "^2.0.0"
|
|
3041
3018
|
strip-bom "3.0.0"
|
|
3042
|
-
write-file-atomic "^2.
|
|
3043
|
-
yargs "^
|
|
3019
|
+
write-file-atomic "^2.4.2"
|
|
3020
|
+
yargs "^12.0.2"
|
|
3044
3021
|
|
|
3045
|
-
jest-serializer@^
|
|
3046
|
-
version "
|
|
3047
|
-
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-
|
|
3048
|
-
integrity
|
|
3022
|
+
jest-serializer@^24.0.0:
|
|
3023
|
+
version "24.0.0"
|
|
3024
|
+
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.0.0.tgz#522c44a332cdd194d8c0531eb06a1ee5afb4256b"
|
|
3025
|
+
integrity sha512-9FKxQyrFgHtx3ozU+1a8v938ILBE7S8Ko3uiAVjT8Yfi2o91j/fj81jacCQZ/Ihjiff/VsUCXVgQ+iF1XdImOw==
|
|
3049
3026
|
|
|
3050
|
-
jest-snapshot@^
|
|
3051
|
-
version "
|
|
3052
|
-
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-
|
|
3053
|
-
integrity sha512-
|
|
3027
|
+
jest-snapshot@^24.0.0:
|
|
3028
|
+
version "24.0.0"
|
|
3029
|
+
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.0.0.tgz#fb447a753a3271660b3d89d068698014eb14c414"
|
|
3030
|
+
integrity sha512-7OcrckVnfzVYxSGPYl2Sn+HyT30VpDv+FMBFbQxSQ6DV2K9Js6vYT6d4SBPKp6DfDiEL2txNssJBxtlvF+Dymw==
|
|
3054
3031
|
dependencies:
|
|
3055
|
-
babel
|
|
3032
|
+
"@babel/types" "^7.0.0"
|
|
3056
3033
|
chalk "^2.0.1"
|
|
3057
|
-
jest-diff "^
|
|
3058
|
-
jest-matcher-utils "^
|
|
3059
|
-
jest-message-util "^
|
|
3060
|
-
jest-resolve "^
|
|
3034
|
+
jest-diff "^24.0.0"
|
|
3035
|
+
jest-matcher-utils "^24.0.0"
|
|
3036
|
+
jest-message-util "^24.0.0"
|
|
3037
|
+
jest-resolve "^24.0.0"
|
|
3061
3038
|
mkdirp "^0.5.1"
|
|
3062
3039
|
natural-compare "^1.4.0"
|
|
3063
|
-
pretty-format "^
|
|
3040
|
+
pretty-format "^24.0.0"
|
|
3064
3041
|
semver "^5.5.0"
|
|
3065
3042
|
|
|
3066
|
-
jest-util@^
|
|
3067
|
-
version "
|
|
3068
|
-
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-
|
|
3069
|
-
integrity
|
|
3043
|
+
jest-util@^24.0.0:
|
|
3044
|
+
version "24.0.0"
|
|
3045
|
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.0.0.tgz#fd38fcafd6dedbd0af2944d7a227c0d91b68f7d6"
|
|
3046
|
+
integrity sha512-QxsALc4wguYS7cfjdQSOr5HTkmjzkHgmZvIDkcmPfl1ib8PNV8QUWLwbKefCudWS0PRKioV+VbQ0oCUPC691fQ==
|
|
3070
3047
|
dependencies:
|
|
3071
|
-
callsites "^
|
|
3048
|
+
callsites "^3.0.0"
|
|
3072
3049
|
chalk "^2.0.1"
|
|
3073
|
-
graceful-fs "^4.1.
|
|
3074
|
-
is-ci "^
|
|
3075
|
-
jest-message-util "^
|
|
3050
|
+
graceful-fs "^4.1.15"
|
|
3051
|
+
is-ci "^2.0.0"
|
|
3052
|
+
jest-message-util "^24.0.0"
|
|
3076
3053
|
mkdirp "^0.5.1"
|
|
3077
|
-
slash "^
|
|
3054
|
+
slash "^2.0.0"
|
|
3078
3055
|
source-map "^0.6.0"
|
|
3079
3056
|
|
|
3080
|
-
jest-validate@^
|
|
3081
|
-
version "
|
|
3082
|
-
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-
|
|
3083
|
-
integrity sha512-
|
|
3057
|
+
jest-validate@^24.0.0:
|
|
3058
|
+
version "24.0.0"
|
|
3059
|
+
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.0.0.tgz#aa8571a46983a6538328fef20406b4a496b6c020"
|
|
3060
|
+
integrity sha512-vMrKrTOP4BBFIeOWsjpsDgVXATxCspC9S1gqvbJ3Tnn/b9ACsJmteYeVx9830UMV28Cob1RX55x96Qq3Tfad4g==
|
|
3084
3061
|
dependencies:
|
|
3062
|
+
camelcase "^5.0.0"
|
|
3085
3063
|
chalk "^2.0.1"
|
|
3086
|
-
jest-get-type "^
|
|
3064
|
+
jest-get-type "^24.0.0"
|
|
3087
3065
|
leven "^2.1.0"
|
|
3088
|
-
pretty-format "^
|
|
3066
|
+
pretty-format "^24.0.0"
|
|
3089
3067
|
|
|
3090
|
-
jest-watcher@^
|
|
3091
|
-
version "
|
|
3092
|
-
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-
|
|
3093
|
-
integrity
|
|
3068
|
+
jest-watcher@^24.0.0:
|
|
3069
|
+
version "24.0.0"
|
|
3070
|
+
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.0.0.tgz#20d44244d10b0b7312410aefd256c1c1eef68890"
|
|
3071
|
+
integrity sha512-GxkW2QrZ4YxmW1GUWER05McjVDunBlKMFfExu+VsGmXJmpej1saTEKvONdx5RJBlVdpPI5x6E3+EDQSIGgl53g==
|
|
3094
3072
|
dependencies:
|
|
3095
3073
|
ansi-escapes "^3.0.0"
|
|
3096
3074
|
chalk "^2.0.1"
|
|
3075
|
+
jest-util "^24.0.0"
|
|
3097
3076
|
string-length "^2.0.0"
|
|
3098
3077
|
|
|
3099
|
-
jest-worker@^
|
|
3100
|
-
version "
|
|
3101
|
-
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-
|
|
3102
|
-
integrity
|
|
3078
|
+
jest-worker@^24.0.0:
|
|
3079
|
+
version "24.0.0"
|
|
3080
|
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.0.0.tgz#3d3483b077bf04f412f47654a27bba7e947f8b6d"
|
|
3081
|
+
integrity sha512-s64/OThpfQvoCeHG963MiEZOAAxu8kHsaL/rCMF7lpdzo7vgF0CtPml9hfguOMgykgH/eOm4jFP4ibfHLruytg==
|
|
3103
3082
|
dependencies:
|
|
3104
3083
|
merge-stream "^1.0.1"
|
|
3084
|
+
supports-color "^6.1.0"
|
|
3105
3085
|
|
|
3106
|
-
jest@^
|
|
3107
|
-
version "
|
|
3108
|
-
resolved "https://registry.yarnpkg.com/jest/-/jest-
|
|
3109
|
-
integrity sha512-
|
|
3086
|
+
jest@^24.0.0:
|
|
3087
|
+
version "24.0.0"
|
|
3088
|
+
resolved "https://registry.yarnpkg.com/jest/-/jest-24.0.0.tgz#b8e2c8e6274e1092c7f56e57762a1fdc7800201e"
|
|
3089
|
+
integrity sha512-1Z2EblP4BnERbWZGtipGb9zjHDq7nCHgCY7V57F5SYaFRJV4DE1HKoOz+CRC5OrAThN9OVhRlUhTzsTFArg2iQ==
|
|
3110
3090
|
dependencies:
|
|
3111
|
-
import-local "^
|
|
3112
|
-
jest-cli "^
|
|
3091
|
+
import-local "^2.0.0"
|
|
3092
|
+
jest-cli "^24.0.0"
|
|
3113
3093
|
|
|
3114
3094
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
|
3115
3095
|
version "4.0.0"
|
|
3116
3096
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
3117
3097
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
3118
3098
|
|
|
3119
|
-
js-
|
|
3120
|
-
version "3.0.2"
|
|
3121
|
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
|
3122
|
-
integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
|
|
3123
|
-
|
|
3124
|
-
js-yaml@^3.12.0, js-yaml@^3.7.0:
|
|
3099
|
+
js-yaml@^3.12.0:
|
|
3125
3100
|
version "3.12.1"
|
|
3126
3101
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600"
|
|
3127
3102
|
integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA==
|
|
@@ -3166,10 +3141,10 @@ jsdom@^11.5.1:
|
|
|
3166
3141
|
ws "^5.2.0"
|
|
3167
3142
|
xml-name-validator "^3.0.0"
|
|
3168
3143
|
|
|
3169
|
-
jsesc@^
|
|
3170
|
-
version "
|
|
3171
|
-
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-
|
|
3172
|
-
integrity
|
|
3144
|
+
jsesc@^2.5.1:
|
|
3145
|
+
version "2.5.2"
|
|
3146
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
|
|
3147
|
+
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
|
|
3173
3148
|
|
|
3174
3149
|
json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
|
|
3175
3150
|
version "1.0.2"
|
|
@@ -3196,11 +3171,6 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
|
|
|
3196
3171
|
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
|
3197
3172
|
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
|
|
3198
3173
|
|
|
3199
|
-
json5@^0.5.1:
|
|
3200
|
-
version "0.5.1"
|
|
3201
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
|
|
3202
|
-
integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
|
|
3203
|
-
|
|
3204
3174
|
json5@^1.0.1:
|
|
3205
3175
|
version "1.0.1"
|
|
3206
3176
|
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
|
|
@@ -3208,6 +3178,13 @@ json5@^1.0.1:
|
|
|
3208
3178
|
dependencies:
|
|
3209
3179
|
minimist "^1.2.0"
|
|
3210
3180
|
|
|
3181
|
+
json5@^2.1.0:
|
|
3182
|
+
version "2.1.0"
|
|
3183
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850"
|
|
3184
|
+
integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==
|
|
3185
|
+
dependencies:
|
|
3186
|
+
minimist "^1.2.0"
|
|
3187
|
+
|
|
3211
3188
|
jsonfile@^4.0.0:
|
|
3212
3189
|
version "4.0.0"
|
|
3213
3190
|
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
|
|
@@ -3254,10 +3231,10 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
|
3254
3231
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
|
3255
3232
|
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
|
3256
3233
|
|
|
3257
|
-
kleur@^
|
|
3258
|
-
version "
|
|
3259
|
-
resolved "https://registry.yarnpkg.com/kleur/-/kleur-
|
|
3260
|
-
integrity sha512-
|
|
3234
|
+
kleur@^3.0.0:
|
|
3235
|
+
version "3.0.1"
|
|
3236
|
+
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.1.tgz#4f5b313f5fa315432a400f19a24db78d451ede62"
|
|
3237
|
+
integrity sha512-P3kRv+B+Ra070ng2VKQqW4qW7gd/v3iD8sy/zOdcYRsfiD+QBokQNOps/AfP6Hr48cBhIIBFWckB9aO+IZhrWg==
|
|
3261
3238
|
|
|
3262
3239
|
latest-version@^3.0.0:
|
|
3263
3240
|
version "3.1.0"
|
|
@@ -3278,6 +3255,13 @@ lcid@^1.0.0:
|
|
|
3278
3255
|
dependencies:
|
|
3279
3256
|
invert-kv "^1.0.0"
|
|
3280
3257
|
|
|
3258
|
+
lcid@^2.0.0:
|
|
3259
|
+
version "2.0.0"
|
|
3260
|
+
resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
|
|
3261
|
+
integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==
|
|
3262
|
+
dependencies:
|
|
3263
|
+
invert-kv "^2.0.0"
|
|
3264
|
+
|
|
3281
3265
|
left-pad@^1.3.0:
|
|
3282
3266
|
version "1.3.0"
|
|
3283
3267
|
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
|
|
@@ -3430,16 +3414,15 @@ libnpx@^10.2.0:
|
|
|
3430
3414
|
y18n "^4.0.0"
|
|
3431
3415
|
yargs "^11.0.0"
|
|
3432
3416
|
|
|
3433
|
-
load-json-file@^
|
|
3434
|
-
version "
|
|
3435
|
-
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-
|
|
3436
|
-
integrity sha1-
|
|
3417
|
+
load-json-file@^4.0.0:
|
|
3418
|
+
version "4.0.0"
|
|
3419
|
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
|
|
3420
|
+
integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
|
|
3437
3421
|
dependencies:
|
|
3438
3422
|
graceful-fs "^4.1.2"
|
|
3439
|
-
parse-json "^
|
|
3440
|
-
pify "^
|
|
3441
|
-
|
|
3442
|
-
strip-bom "^2.0.0"
|
|
3423
|
+
parse-json "^4.0.0"
|
|
3424
|
+
pify "^3.0.0"
|
|
3425
|
+
strip-bom "^3.0.0"
|
|
3443
3426
|
|
|
3444
3427
|
loader-utils@^1.0.2:
|
|
3445
3428
|
version "1.2.3"
|
|
@@ -3573,7 +3556,7 @@ lodash.without@~4.4.0:
|
|
|
3573
3556
|
resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac"
|
|
3574
3557
|
integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw=
|
|
3575
3558
|
|
|
3576
|
-
lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.
|
|
3559
|
+
lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.5:
|
|
3577
3560
|
version "4.17.11"
|
|
3578
3561
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
|
|
3579
3562
|
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
|
|
@@ -3613,7 +3596,7 @@ lru-cache@^5.1.1:
|
|
|
3613
3596
|
dependencies:
|
|
3614
3597
|
yallist "^3.0.2"
|
|
3615
3598
|
|
|
3616
|
-
make-dir@^1.0.0:
|
|
3599
|
+
make-dir@^1.0.0, make-dir@^1.3.0:
|
|
3617
3600
|
version "1.3.0"
|
|
3618
3601
|
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
|
|
3619
3602
|
integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
|
|
@@ -3644,6 +3627,13 @@ makeerror@1.0.x:
|
|
|
3644
3627
|
dependencies:
|
|
3645
3628
|
tmpl "1.0.x"
|
|
3646
3629
|
|
|
3630
|
+
map-age-cleaner@^0.1.1:
|
|
3631
|
+
version "0.1.3"
|
|
3632
|
+
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
|
3633
|
+
integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
|
|
3634
|
+
dependencies:
|
|
3635
|
+
p-defer "^1.0.0"
|
|
3636
|
+
|
|
3647
3637
|
map-cache@^0.2.2:
|
|
3648
3638
|
version "0.2.2"
|
|
3649
3639
|
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
|
|
@@ -3673,6 +3663,15 @@ mem@^1.1.0:
|
|
|
3673
3663
|
dependencies:
|
|
3674
3664
|
mimic-fn "^1.0.0"
|
|
3675
3665
|
|
|
3666
|
+
mem@^4.0.0:
|
|
3667
|
+
version "4.0.0"
|
|
3668
|
+
resolved "https://registry.yarnpkg.com/mem/-/mem-4.0.0.tgz#6437690d9471678f6cc83659c00cbafcd6b0cdaf"
|
|
3669
|
+
integrity sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==
|
|
3670
|
+
dependencies:
|
|
3671
|
+
map-age-cleaner "^0.1.1"
|
|
3672
|
+
mimic-fn "^1.0.0"
|
|
3673
|
+
p-is-promise "^1.1.0"
|
|
3674
|
+
|
|
3676
3675
|
merge-stream@^1.0.1:
|
|
3677
3676
|
version "1.0.1"
|
|
3678
3677
|
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
|
|
@@ -3704,7 +3703,7 @@ micromatch@^2.3.11:
|
|
|
3704
3703
|
parse-glob "^3.0.4"
|
|
3705
3704
|
regex-cache "^0.4.2"
|
|
3706
3705
|
|
|
3707
|
-
micromatch@^3.1.4:
|
|
3706
|
+
micromatch@^3.1.10, micromatch@^3.1.4:
|
|
3708
3707
|
version "3.1.10"
|
|
3709
3708
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
|
3710
3709
|
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
|
|
@@ -3951,6 +3950,11 @@ node-int64@^0.4.0:
|
|
|
3951
3950
|
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
|
|
3952
3951
|
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
|
|
3953
3952
|
|
|
3953
|
+
node-modules-regexp@^1.0.0:
|
|
3954
|
+
version "1.0.0"
|
|
3955
|
+
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
|
3956
|
+
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
|
3957
|
+
|
|
3954
3958
|
node-notifier@^5.2.1:
|
|
3955
3959
|
version "5.3.0"
|
|
3956
3960
|
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.3.0.tgz#c77a4a7b84038733d5fb351aafd8a268bfe19a01"
|
|
@@ -4382,7 +4386,16 @@ os-locale@^2.0.0:
|
|
|
4382
4386
|
lcid "^1.0.0"
|
|
4383
4387
|
mem "^1.1.0"
|
|
4384
4388
|
|
|
4385
|
-
os-
|
|
4389
|
+
os-locale@^3.0.0:
|
|
4390
|
+
version "3.1.0"
|
|
4391
|
+
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
|
|
4392
|
+
integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
|
|
4393
|
+
dependencies:
|
|
4394
|
+
execa "^1.0.0"
|
|
4395
|
+
lcid "^2.0.0"
|
|
4396
|
+
mem "^4.0.0"
|
|
4397
|
+
|
|
4398
|
+
os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
|
|
4386
4399
|
version "1.0.2"
|
|
4387
4400
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
|
4388
4401
|
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
|
|
@@ -4395,11 +4408,28 @@ osenv@0, osenv@^0.1.4, osenv@^0.1.5:
|
|
|
4395
4408
|
os-homedir "^1.0.0"
|
|
4396
4409
|
os-tmpdir "^1.0.0"
|
|
4397
4410
|
|
|
4411
|
+
p-defer@^1.0.0:
|
|
4412
|
+
version "1.0.0"
|
|
4413
|
+
resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
|
|
4414
|
+
integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
|
|
4415
|
+
|
|
4416
|
+
p-each-series@^1.0.0:
|
|
4417
|
+
version "1.0.0"
|
|
4418
|
+
resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"
|
|
4419
|
+
integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=
|
|
4420
|
+
dependencies:
|
|
4421
|
+
p-reduce "^1.0.0"
|
|
4422
|
+
|
|
4398
4423
|
p-finally@^1.0.0:
|
|
4399
4424
|
version "1.0.0"
|
|
4400
4425
|
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
|
4401
4426
|
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
|
|
4402
4427
|
|
|
4428
|
+
p-is-promise@^1.1.0:
|
|
4429
|
+
version "1.1.0"
|
|
4430
|
+
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
|
|
4431
|
+
integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=
|
|
4432
|
+
|
|
4403
4433
|
p-limit@^1.1.0:
|
|
4404
4434
|
version "1.3.0"
|
|
4405
4435
|
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
|
|
@@ -4428,6 +4458,11 @@ p-locate@^3.0.0:
|
|
|
4428
4458
|
dependencies:
|
|
4429
4459
|
p-limit "^2.0.0"
|
|
4430
4460
|
|
|
4461
|
+
p-reduce@^1.0.0:
|
|
4462
|
+
version "1.0.0"
|
|
4463
|
+
resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
|
|
4464
|
+
integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
|
|
4465
|
+
|
|
4431
4466
|
p-try@^1.0.0:
|
|
4432
4467
|
version "1.0.0"
|
|
4433
4468
|
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
|
@@ -4512,12 +4547,13 @@ parse-glob@^3.0.4:
|
|
|
4512
4547
|
is-extglob "^1.0.0"
|
|
4513
4548
|
is-glob "^2.0.0"
|
|
4514
4549
|
|
|
4515
|
-
parse-json@^
|
|
4516
|
-
version "
|
|
4517
|
-
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-
|
|
4518
|
-
integrity sha1-
|
|
4550
|
+
parse-json@^4.0.0:
|
|
4551
|
+
version "4.0.0"
|
|
4552
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
|
|
4553
|
+
integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
|
|
4519
4554
|
dependencies:
|
|
4520
|
-
error-ex "^1.
|
|
4555
|
+
error-ex "^1.3.1"
|
|
4556
|
+
json-parse-better-errors "^1.0.1"
|
|
4521
4557
|
|
|
4522
4558
|
parse5@4.0.0:
|
|
4523
4559
|
version "4.0.0"
|
|
@@ -4529,19 +4565,12 @@ pascalcase@^0.1.1:
|
|
|
4529
4565
|
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
|
4530
4566
|
integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
|
|
4531
4567
|
|
|
4532
|
-
path-exists@^2.0.0:
|
|
4533
|
-
version "2.1.0"
|
|
4534
|
-
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
|
|
4535
|
-
integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
|
|
4536
|
-
dependencies:
|
|
4537
|
-
pinkie-promise "^2.0.0"
|
|
4538
|
-
|
|
4539
4568
|
path-exists@^3.0.0:
|
|
4540
4569
|
version "3.0.0"
|
|
4541
4570
|
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
|
4542
4571
|
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
|
|
4543
4572
|
|
|
4544
|
-
path-is-absolute@^1.0.0
|
|
4573
|
+
path-is-absolute@^1.0.0:
|
|
4545
4574
|
version "1.0.1"
|
|
4546
4575
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
4547
4576
|
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
|
@@ -4556,19 +4585,17 @@ path-key@^2.0.0, path-key@^2.0.1:
|
|
|
4556
4585
|
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
|
|
4557
4586
|
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
|
|
4558
4587
|
|
|
4559
|
-
path-parse@^1.0.
|
|
4588
|
+
path-parse@^1.0.6:
|
|
4560
4589
|
version "1.0.6"
|
|
4561
4590
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
|
4562
4591
|
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
|
4563
4592
|
|
|
4564
|
-
path-type@^
|
|
4565
|
-
version "
|
|
4566
|
-
resolved "https://registry.yarnpkg.com/path-type/-/path-type-
|
|
4567
|
-
integrity
|
|
4593
|
+
path-type@^3.0.0:
|
|
4594
|
+
version "3.0.0"
|
|
4595
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
|
|
4596
|
+
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
|
|
4568
4597
|
dependencies:
|
|
4569
|
-
|
|
4570
|
-
pify "^2.0.0"
|
|
4571
|
-
pinkie-promise "^2.0.0"
|
|
4598
|
+
pify "^3.0.0"
|
|
4572
4599
|
|
|
4573
4600
|
pathval@^1.1.0:
|
|
4574
4601
|
version "1.1.0"
|
|
@@ -4589,34 +4616,24 @@ performance-now@^2.1.0:
|
|
|
4589
4616
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
|
4590
4617
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
|
4591
4618
|
|
|
4592
|
-
pify@^2.0.0:
|
|
4593
|
-
version "2.3.0"
|
|
4594
|
-
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
|
4595
|
-
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
|
|
4596
|
-
|
|
4597
4619
|
pify@^3.0.0:
|
|
4598
4620
|
version "3.0.0"
|
|
4599
4621
|
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
|
4600
4622
|
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
|
4601
4623
|
|
|
4602
|
-
|
|
4603
|
-
version "
|
|
4604
|
-
resolved "https://registry.yarnpkg.com/
|
|
4605
|
-
integrity
|
|
4624
|
+
pirates@^4.0.0:
|
|
4625
|
+
version "4.0.0"
|
|
4626
|
+
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd"
|
|
4627
|
+
integrity sha512-8t5BsXy1LUIjn3WWOlOuFDuKswhQb/tkak641lvBgmPOBUQHXveORtlMCp6OdPV1dtuTaEahKA8VNz6uLfKBtA==
|
|
4606
4628
|
dependencies:
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
pinkie@^2.0.0:
|
|
4610
|
-
version "2.0.4"
|
|
4611
|
-
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
|
4612
|
-
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
|
|
4629
|
+
node-modules-regexp "^1.0.0"
|
|
4613
4630
|
|
|
4614
|
-
pkg-dir@^
|
|
4615
|
-
version "
|
|
4616
|
-
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-
|
|
4617
|
-
integrity
|
|
4631
|
+
pkg-dir@^3.0.0:
|
|
4632
|
+
version "3.0.0"
|
|
4633
|
+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
|
4634
|
+
integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
|
|
4618
4635
|
dependencies:
|
|
4619
|
-
find-up "^
|
|
4636
|
+
find-up "^3.0.0"
|
|
4620
4637
|
|
|
4621
4638
|
pluralize@^7.0.0:
|
|
4622
4639
|
version "7.0.0"
|
|
@@ -4665,19 +4682,14 @@ prettier@^1.16.1:
|
|
|
4665
4682
|
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.1.tgz#534c2c9d7853f8845e5e078384e71973bd74089f"
|
|
4666
4683
|
integrity sha512-XXUITwIkGb3CPJ2hforHah/zTINRyie5006Jd2HKy2qz7snEJXl0KLfsJZW/wst9g6R2rFvqba3VpNYdu1hDcA==
|
|
4667
4684
|
|
|
4668
|
-
pretty-format@^
|
|
4669
|
-
version "
|
|
4670
|
-
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-
|
|
4671
|
-
integrity sha512-
|
|
4685
|
+
pretty-format@^24.0.0:
|
|
4686
|
+
version "24.0.0"
|
|
4687
|
+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.0.0.tgz#cb6599fd73ac088e37ed682f61291e4678f48591"
|
|
4688
|
+
integrity sha512-LszZaKG665djUcqg5ZQq+XzezHLKrxsA86ZABTozp+oNhkdqa+tG2dX4qa6ERl5c/sRDrAa3lHmwnvKoP+OG/g==
|
|
4672
4689
|
dependencies:
|
|
4673
|
-
ansi-regex "^
|
|
4690
|
+
ansi-regex "^4.0.0"
|
|
4674
4691
|
ansi-styles "^3.2.0"
|
|
4675
4692
|
|
|
4676
|
-
private@^0.1.8:
|
|
4677
|
-
version "0.1.8"
|
|
4678
|
-
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
|
4679
|
-
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
|
4680
|
-
|
|
4681
4693
|
process-nextick-args@~2.0.0:
|
|
4682
4694
|
version "2.0.0"
|
|
4683
4695
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
|
|
@@ -4701,13 +4713,13 @@ promise-retry@^1.1.1:
|
|
|
4701
4713
|
err-code "^1.0.0"
|
|
4702
4714
|
retry "^0.10.0"
|
|
4703
4715
|
|
|
4704
|
-
prompts@^0.1
|
|
4705
|
-
version "0.1
|
|
4706
|
-
resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.
|
|
4707
|
-
integrity sha512-
|
|
4716
|
+
prompts@^2.0.1:
|
|
4717
|
+
version "2.0.1"
|
|
4718
|
+
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.1.tgz#201b3718b4276fb407f037db48c0029d6465245c"
|
|
4719
|
+
integrity sha512-8lnEOSIGQbgbnO47+13S+H204L8ISogGulyi0/NNEFAQ9D1VMNTrJ9SBX2Ra03V4iPn/zt36HQMndRYkaPoWiQ==
|
|
4708
4720
|
dependencies:
|
|
4709
|
-
kleur "^
|
|
4710
|
-
sisteransi "^0.
|
|
4721
|
+
kleur "^3.0.0"
|
|
4722
|
+
sisteransi "^1.0.0"
|
|
4711
4723
|
|
|
4712
4724
|
promzard@^0.3.0:
|
|
4713
4725
|
version "0.3.0"
|
|
@@ -4904,22 +4916,22 @@ read-package-tree@^5.2.1:
|
|
|
4904
4916
|
read-package-json "^2.0.0"
|
|
4905
4917
|
readdir-scoped-modules "^1.0.0"
|
|
4906
4918
|
|
|
4907
|
-
read-pkg-up@^
|
|
4908
|
-
version "
|
|
4909
|
-
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-
|
|
4910
|
-
integrity
|
|
4919
|
+
read-pkg-up@^4.0.0:
|
|
4920
|
+
version "4.0.0"
|
|
4921
|
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
|
|
4922
|
+
integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
|
|
4911
4923
|
dependencies:
|
|
4912
|
-
find-up "^
|
|
4913
|
-
read-pkg "^
|
|
4924
|
+
find-up "^3.0.0"
|
|
4925
|
+
read-pkg "^3.0.0"
|
|
4914
4926
|
|
|
4915
|
-
read-pkg@^
|
|
4916
|
-
version "
|
|
4917
|
-
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-
|
|
4918
|
-
integrity sha1-
|
|
4927
|
+
read-pkg@^3.0.0:
|
|
4928
|
+
version "3.0.0"
|
|
4929
|
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
|
|
4930
|
+
integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
|
|
4919
4931
|
dependencies:
|
|
4920
|
-
load-json-file "^
|
|
4932
|
+
load-json-file "^4.0.0"
|
|
4921
4933
|
normalize-package-data "^2.3.2"
|
|
4922
|
-
path-type "^
|
|
4934
|
+
path-type "^3.0.0"
|
|
4923
4935
|
|
|
4924
4936
|
read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7:
|
|
4925
4937
|
version "1.0.7"
|
|
@@ -4970,7 +4982,7 @@ readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0:
|
|
|
4970
4982
|
graceful-fs "^4.1.2"
|
|
4971
4983
|
once "^1.3.0"
|
|
4972
4984
|
|
|
4973
|
-
realpath-native@^1.0.0:
|
|
4985
|
+
realpath-native@^1.0.0, realpath-native@^1.0.2:
|
|
4974
4986
|
version "1.0.2"
|
|
4975
4987
|
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560"
|
|
4976
4988
|
integrity sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g==
|
|
@@ -5032,13 +5044,6 @@ repeat-string@^1.5.2, repeat-string@^1.6.1:
|
|
|
5032
5044
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
|
5033
5045
|
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
|
5034
5046
|
|
|
5035
|
-
repeating@^2.0.0:
|
|
5036
|
-
version "2.0.1"
|
|
5037
|
-
resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
|
|
5038
|
-
integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
|
|
5039
|
-
dependencies:
|
|
5040
|
-
is-finite "^1.0.0"
|
|
5041
|
-
|
|
5042
5047
|
request-capture-har@^1.2.2:
|
|
5043
5048
|
version "1.2.2"
|
|
5044
5049
|
resolved "https://registry.yarnpkg.com/request-capture-har/-/request-capture-har-1.2.2.tgz#cd692cfb2cc744fd84a3358aac6ee51528cf720d"
|
|
@@ -5123,6 +5128,13 @@ resolve@1.1.7:
|
|
|
5123
5128
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
|
5124
5129
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
|
5125
5130
|
|
|
5131
|
+
resolve@^1.3.2:
|
|
5132
|
+
version "1.10.0"
|
|
5133
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
|
|
5134
|
+
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
|
|
5135
|
+
dependencies:
|
|
5136
|
+
path-parse "^1.0.6"
|
|
5137
|
+
|
|
5126
5138
|
resolve@^1.4.0:
|
|
5127
5139
|
version "1.9.0"
|
|
5128
5140
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06"
|
|
@@ -5208,14 +5220,15 @@ safe-regex@^1.1.0:
|
|
|
5208
5220
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
5209
5221
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
|
5210
5222
|
|
|
5211
|
-
sane@^
|
|
5212
|
-
version "
|
|
5213
|
-
resolved "https://registry.yarnpkg.com/sane/-/sane-
|
|
5214
|
-
integrity
|
|
5223
|
+
sane@^3.0.0:
|
|
5224
|
+
version "3.1.0"
|
|
5225
|
+
resolved "https://registry.yarnpkg.com/sane/-/sane-3.1.0.tgz#995193b7dc1445ef1fe41ddfca2faf9f111854c6"
|
|
5226
|
+
integrity sha512-G5GClRRxT1cELXfdAq7UKtUsv8q/ZC5k8lQGmjEm4HcAl3HzBy68iglyNCmw4+0tiXPCBZntslHlRhbnsSws+Q==
|
|
5215
5227
|
dependencies:
|
|
5216
5228
|
anymatch "^2.0.0"
|
|
5217
5229
|
capture-exit "^1.2.0"
|
|
5218
5230
|
exec-sh "^0.2.0"
|
|
5231
|
+
execa "^1.0.0"
|
|
5219
5232
|
fb-watchman "^2.0.0"
|
|
5220
5233
|
micromatch "^3.1.4"
|
|
5221
5234
|
minimist "^1.1.1"
|
|
@@ -5301,16 +5314,21 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
|
|
|
5301
5314
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
|
5302
5315
|
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
|
|
5303
5316
|
|
|
5304
|
-
sisteransi@^0.
|
|
5305
|
-
version "0.
|
|
5306
|
-
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.
|
|
5307
|
-
integrity sha512-
|
|
5317
|
+
sisteransi@^1.0.0:
|
|
5318
|
+
version "1.0.0"
|
|
5319
|
+
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c"
|
|
5320
|
+
integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ==
|
|
5308
5321
|
|
|
5309
5322
|
slash@^1.0.0:
|
|
5310
5323
|
version "1.0.0"
|
|
5311
5324
|
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
|
5312
5325
|
integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
|
|
5313
5326
|
|
|
5327
|
+
slash@^2.0.0:
|
|
5328
|
+
version "2.0.0"
|
|
5329
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
|
|
5330
|
+
integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
|
|
5331
|
+
|
|
5314
5332
|
slice-ansi@2.0.0:
|
|
5315
5333
|
version "2.0.0"
|
|
5316
5334
|
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz#5373bdb8559b45676e8541c66916cdd6251612e7"
|
|
@@ -5407,13 +5425,6 @@ source-map-resolve@^0.5.0:
|
|
|
5407
5425
|
source-map-url "^0.4.0"
|
|
5408
5426
|
urix "^0.1.0"
|
|
5409
5427
|
|
|
5410
|
-
source-map-support@^0.4.15:
|
|
5411
|
-
version "0.4.18"
|
|
5412
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
|
|
5413
|
-
integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==
|
|
5414
|
-
dependencies:
|
|
5415
|
-
source-map "^0.5.6"
|
|
5416
|
-
|
|
5417
5428
|
source-map-support@^0.5.6:
|
|
5418
5429
|
version "0.5.10"
|
|
5419
5430
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c"
|
|
@@ -5427,7 +5438,7 @@ source-map-url@^0.4.0:
|
|
|
5427
5438
|
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
|
|
5428
5439
|
integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
|
|
5429
5440
|
|
|
5430
|
-
source-map@^0.5.
|
|
5441
|
+
source-map@^0.5.0, source-map@^0.5.6:
|
|
5431
5442
|
version "0.5.7"
|
|
5432
5443
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
|
5433
5444
|
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
|
@@ -5628,13 +5639,6 @@ strip-bom@3.0.0, strip-bom@^3.0.0:
|
|
|
5628
5639
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
|
5629
5640
|
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
|
|
5630
5641
|
|
|
5631
|
-
strip-bom@^2.0.0:
|
|
5632
|
-
version "2.0.0"
|
|
5633
|
-
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
|
|
5634
|
-
integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
|
|
5635
|
-
dependencies:
|
|
5636
|
-
is-utf8 "^0.2.0"
|
|
5637
|
-
|
|
5638
5642
|
strip-eof@^1.0.0:
|
|
5639
5643
|
version "1.0.0"
|
|
5640
5644
|
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
|
|
@@ -5645,25 +5649,20 @@ strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
|
|
|
5645
5649
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
|
5646
5650
|
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
|
5647
5651
|
|
|
5648
|
-
supports-color@^
|
|
5649
|
-
version "2.0.0"
|
|
5650
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
|
5651
|
-
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
|
|
5652
|
-
|
|
5653
|
-
supports-color@^3.1.2:
|
|
5654
|
-
version "3.2.3"
|
|
5655
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
|
|
5656
|
-
integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
|
|
5657
|
-
dependencies:
|
|
5658
|
-
has-flag "^1.0.0"
|
|
5659
|
-
|
|
5660
|
-
supports-color@^5.3.0:
|
|
5652
|
+
supports-color@^5.3.0, supports-color@^5.4.0:
|
|
5661
5653
|
version "5.5.0"
|
|
5662
5654
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
5663
5655
|
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
5664
5656
|
dependencies:
|
|
5665
5657
|
has-flag "^3.0.0"
|
|
5666
5658
|
|
|
5659
|
+
supports-color@^6.1.0:
|
|
5660
|
+
version "6.1.0"
|
|
5661
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
|
|
5662
|
+
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
|
|
5663
|
+
dependencies:
|
|
5664
|
+
has-flag "^3.0.0"
|
|
5665
|
+
|
|
5667
5666
|
symbol-tree@^3.2.2:
|
|
5668
5667
|
version "3.2.2"
|
|
5669
5668
|
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
|
|
@@ -5731,15 +5730,14 @@ term-size@^1.2.0:
|
|
|
5731
5730
|
dependencies:
|
|
5732
5731
|
execa "^0.7.0"
|
|
5733
5732
|
|
|
5734
|
-
test-exclude@^
|
|
5735
|
-
version "
|
|
5736
|
-
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-
|
|
5737
|
-
integrity sha512-
|
|
5733
|
+
test-exclude@^5.0.0:
|
|
5734
|
+
version "5.0.0"
|
|
5735
|
+
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.0.0.tgz#cdce7cece785e0e829cd5c2b27baf18bc583cfb7"
|
|
5736
|
+
integrity sha512-bO3Lj5+qFa9YLfYW2ZcXMOV1pmQvw+KS/DpjqhyX6Y6UZ8zstpZJ+mA2ERkXfpOqhxsJlQiLeVXD3Smsrs6oLw==
|
|
5738
5737
|
dependencies:
|
|
5739
5738
|
arrify "^1.0.1"
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
read-pkg-up "^1.0.1"
|
|
5739
|
+
minimatch "^3.0.4"
|
|
5740
|
+
read-pkg-up "^4.0.0"
|
|
5743
5741
|
require-main-filename "^1.0.1"
|
|
5744
5742
|
|
|
5745
5743
|
text-table@^0.2.0, text-table@~0.2.0:
|
|
@@ -5806,10 +5804,10 @@ to-buffer@^1.1.1:
|
|
|
5806
5804
|
resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80"
|
|
5807
5805
|
integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==
|
|
5808
5806
|
|
|
5809
|
-
to-fast-properties@^
|
|
5810
|
-
version "
|
|
5811
|
-
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-
|
|
5812
|
-
integrity sha1-
|
|
5807
|
+
to-fast-properties@^2.0.0:
|
|
5808
|
+
version "2.0.0"
|
|
5809
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
|
5810
|
+
integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
|
|
5813
5811
|
|
|
5814
5812
|
to-object-path@^0.3.0:
|
|
5815
5813
|
version "0.3.0"
|
|
@@ -6191,7 +6189,7 @@ wrappy@1:
|
|
|
6191
6189
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
6192
6190
|
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
|
6193
6191
|
|
|
6194
|
-
write-file-atomic@^2.0.0, write-file-atomic@^2.
|
|
6192
|
+
write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.2:
|
|
6195
6193
|
version "2.4.2"
|
|
6196
6194
|
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9"
|
|
6197
6195
|
integrity sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==
|
|
@@ -6234,7 +6232,7 @@ y18n@^3.2.1:
|
|
|
6234
6232
|
resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
|
|
6235
6233
|
integrity sha1-bRX7qITAhnnA136I53WegR4H+kE=
|
|
6236
6234
|
|
|
6237
|
-
y18n@^4.0.0:
|
|
6235
|
+
"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0:
|
|
6238
6236
|
version "4.0.0"
|
|
6239
6237
|
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
|
|
6240
6238
|
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
|
|
@@ -6249,6 +6247,14 @@ yallist@^3.0.0, yallist@^3.0.2:
|
|
|
6249
6247
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
|
|
6250
6248
|
integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==
|
|
6251
6249
|
|
|
6250
|
+
yargs-parser@^11.1.1:
|
|
6251
|
+
version "11.1.1"
|
|
6252
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
|
|
6253
|
+
integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==
|
|
6254
|
+
dependencies:
|
|
6255
|
+
camelcase "^5.0.0"
|
|
6256
|
+
decamelize "^1.2.0"
|
|
6257
|
+
|
|
6252
6258
|
yargs-parser@^9.0.2:
|
|
6253
6259
|
version "9.0.2"
|
|
6254
6260
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
|
|
@@ -6274,6 +6280,24 @@ yargs@^11.0.0:
|
|
|
6274
6280
|
y18n "^3.2.1"
|
|
6275
6281
|
yargs-parser "^9.0.2"
|
|
6276
6282
|
|
|
6283
|
+
yargs@^12.0.2:
|
|
6284
|
+
version "12.0.5"
|
|
6285
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
|
|
6286
|
+
integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
|
|
6287
|
+
dependencies:
|
|
6288
|
+
cliui "^4.0.0"
|
|
6289
|
+
decamelize "^1.2.0"
|
|
6290
|
+
find-up "^3.0.0"
|
|
6291
|
+
get-caller-file "^1.0.1"
|
|
6292
|
+
os-locale "^3.0.0"
|
|
6293
|
+
require-directory "^2.1.1"
|
|
6294
|
+
require-main-filename "^1.0.1"
|
|
6295
|
+
set-blocking "^2.0.0"
|
|
6296
|
+
string-width "^2.0.0"
|
|
6297
|
+
which-module "^2.0.0"
|
|
6298
|
+
y18n "^3.2.1 || ^4.0.0"
|
|
6299
|
+
yargs-parser "^11.1.1"
|
|
6300
|
+
|
|
6277
6301
|
yn@^2.0.0:
|
|
6278
6302
|
version "2.0.0"
|
|
6279
6303
|
resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a"
|