rack-queries 0.2.0 → 0.2.1
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/.eslintignore +1 -0
- data/.travis.yml +1 -1
- data/CHANGELOG.md +9 -1
- data/CODE_OF_CONDUCT.md +76 -0
- data/Gemfile.lock +10 -10
- data/LICENSE +1 -1
- data/README.md +1 -0
- data/bin/example +42 -51
- data/docs/screenshot.png +0 -0
- data/lib/rack/queries/static/app.js +8 -9
- data/lib/rack/queries/version.rb +1 -1
- data/package.json +10 -10
- data/rack-queries.gemspec +1 -1
- data/yarn.lock +989 -888
- metadata +5 -4
data/yarn.lock
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
"@babel/cli@^7.
|
|
6
|
-
version "7.
|
|
7
|
-
resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.
|
|
8
|
-
integrity sha512-
|
|
5
|
+
"@babel/cli@^7.5.5":
|
|
6
|
+
version "7.5.5"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.5.5.tgz#bdb6d9169e93e241a08f5f7b0265195bf38ef5ec"
|
|
8
|
+
integrity sha512-UHI+7pHv/tk9g6WXQKYz+kmXTI77YtuY3vqC59KIqcoWEjsJJSG6rAxKaLsgj3LDyadsPrCB929gVOKM6Hui0w==
|
|
9
9
|
dependencies:
|
|
10
10
|
commander "^2.8.1"
|
|
11
11
|
convert-source-map "^1.1.0"
|
|
12
12
|
fs-readdir-recursive "^1.1.0"
|
|
13
13
|
glob "^7.0.0"
|
|
14
|
-
lodash "^4.17.
|
|
14
|
+
lodash "^4.17.13"
|
|
15
15
|
mkdirp "^0.5.1"
|
|
16
16
|
output-file-sync "^2.0.0"
|
|
17
17
|
slash "^2.0.0"
|
|
@@ -26,38 +26,25 @@
|
|
|
26
26
|
dependencies:
|
|
27
27
|
"@babel/highlight" "^7.0.0"
|
|
28
28
|
|
|
29
|
-
"@babel/
|
|
30
|
-
version "7.
|
|
31
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
|
32
|
-
integrity sha512-
|
|
29
|
+
"@babel/code-frame@^7.5.5":
|
|
30
|
+
version "7.5.5"
|
|
31
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
|
|
32
|
+
integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
|
|
33
33
|
dependencies:
|
|
34
|
-
"@babel/
|
|
35
|
-
"@babel/generator" "^7.3.4"
|
|
36
|
-
"@babel/helpers" "^7.2.0"
|
|
37
|
-
"@babel/parser" "^7.3.4"
|
|
38
|
-
"@babel/template" "^7.2.2"
|
|
39
|
-
"@babel/traverse" "^7.3.4"
|
|
40
|
-
"@babel/types" "^7.3.4"
|
|
41
|
-
convert-source-map "^1.1.0"
|
|
42
|
-
debug "^4.1.0"
|
|
43
|
-
json5 "^2.1.0"
|
|
44
|
-
lodash "^4.17.11"
|
|
45
|
-
resolve "^1.3.2"
|
|
46
|
-
semver "^5.4.1"
|
|
47
|
-
source-map "^0.5.0"
|
|
34
|
+
"@babel/highlight" "^7.0.0"
|
|
48
35
|
|
|
49
|
-
"@babel/core@^7.4.
|
|
50
|
-
version "7.4.
|
|
51
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.
|
|
52
|
-
integrity sha512-
|
|
36
|
+
"@babel/core@^7.1.0", "@babel/core@^7.4.5":
|
|
37
|
+
version "7.4.5"
|
|
38
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a"
|
|
39
|
+
integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA==
|
|
53
40
|
dependencies:
|
|
54
41
|
"@babel/code-frame" "^7.0.0"
|
|
55
|
-
"@babel/generator" "^7.4.
|
|
56
|
-
"@babel/helpers" "^7.4.
|
|
57
|
-
"@babel/parser" "^7.4.
|
|
58
|
-
"@babel/template" "^7.4.
|
|
59
|
-
"@babel/traverse" "^7.4.
|
|
60
|
-
"@babel/types" "^7.4.
|
|
42
|
+
"@babel/generator" "^7.4.4"
|
|
43
|
+
"@babel/helpers" "^7.4.4"
|
|
44
|
+
"@babel/parser" "^7.4.5"
|
|
45
|
+
"@babel/template" "^7.4.4"
|
|
46
|
+
"@babel/traverse" "^7.4.5"
|
|
47
|
+
"@babel/types" "^7.4.4"
|
|
61
48
|
convert-source-map "^1.1.0"
|
|
62
49
|
debug "^4.1.0"
|
|
63
50
|
json5 "^2.1.0"
|
|
@@ -66,22 +53,22 @@
|
|
|
66
53
|
semver "^5.4.1"
|
|
67
54
|
source-map "^0.5.0"
|
|
68
55
|
|
|
69
|
-
"@babel/core@^7.
|
|
70
|
-
version "7.
|
|
71
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
|
72
|
-
integrity sha512-
|
|
56
|
+
"@babel/core@^7.5.5":
|
|
57
|
+
version "7.5.5"
|
|
58
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30"
|
|
59
|
+
integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==
|
|
73
60
|
dependencies:
|
|
74
|
-
"@babel/code-frame" "^7.
|
|
75
|
-
"@babel/generator" "^7.
|
|
76
|
-
"@babel/helpers" "^7.
|
|
77
|
-
"@babel/parser" "^7.
|
|
61
|
+
"@babel/code-frame" "^7.5.5"
|
|
62
|
+
"@babel/generator" "^7.5.5"
|
|
63
|
+
"@babel/helpers" "^7.5.5"
|
|
64
|
+
"@babel/parser" "^7.5.5"
|
|
78
65
|
"@babel/template" "^7.4.4"
|
|
79
|
-
"@babel/traverse" "^7.
|
|
80
|
-
"@babel/types" "^7.
|
|
66
|
+
"@babel/traverse" "^7.5.5"
|
|
67
|
+
"@babel/types" "^7.5.5"
|
|
81
68
|
convert-source-map "^1.1.0"
|
|
82
69
|
debug "^4.1.0"
|
|
83
70
|
json5 "^2.1.0"
|
|
84
|
-
lodash "^4.17.
|
|
71
|
+
lodash "^4.17.13"
|
|
85
72
|
resolve "^1.3.2"
|
|
86
73
|
semver "^5.4.1"
|
|
87
74
|
source-map "^0.5.0"
|
|
@@ -108,17 +95,6 @@
|
|
|
108
95
|
source-map "^0.5.0"
|
|
109
96
|
trim-right "^1.0.1"
|
|
110
97
|
|
|
111
|
-
"@babel/generator@^7.4.0":
|
|
112
|
-
version "7.4.0"
|
|
113
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.0.tgz#c230e79589ae7a729fd4631b9ded4dc220418196"
|
|
114
|
-
integrity sha512-/v5I+a1jhGSKLgZDcmAUZ4K/VePi43eRkUs3yePW1HB1iANOD5tqJXwGSG4BZhSksP8J9ejSlwGeTiiOFZOrXQ==
|
|
115
|
-
dependencies:
|
|
116
|
-
"@babel/types" "^7.4.0"
|
|
117
|
-
jsesc "^2.5.1"
|
|
118
|
-
lodash "^4.17.11"
|
|
119
|
-
source-map "^0.5.0"
|
|
120
|
-
trim-right "^1.0.1"
|
|
121
|
-
|
|
122
98
|
"@babel/generator@^7.4.4":
|
|
123
99
|
version "7.4.4"
|
|
124
100
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041"
|
|
@@ -130,6 +106,17 @@
|
|
|
130
106
|
source-map "^0.5.0"
|
|
131
107
|
trim-right "^1.0.1"
|
|
132
108
|
|
|
109
|
+
"@babel/generator@^7.5.5":
|
|
110
|
+
version "7.5.5"
|
|
111
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
|
|
112
|
+
integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
|
|
113
|
+
dependencies:
|
|
114
|
+
"@babel/types" "^7.5.5"
|
|
115
|
+
jsesc "^2.5.1"
|
|
116
|
+
lodash "^4.17.13"
|
|
117
|
+
source-map "^0.5.0"
|
|
118
|
+
trim-right "^1.0.1"
|
|
119
|
+
|
|
133
120
|
"@babel/helper-annotate-as-pure@^7.0.0":
|
|
134
121
|
version "7.0.0"
|
|
135
122
|
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
|
|
@@ -162,14 +149,14 @@
|
|
|
162
149
|
"@babel/traverse" "^7.4.4"
|
|
163
150
|
"@babel/types" "^7.4.4"
|
|
164
151
|
|
|
165
|
-
"@babel/helper-define-map@^7.
|
|
166
|
-
version "7.
|
|
167
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.
|
|
168
|
-
integrity sha512-
|
|
152
|
+
"@babel/helper-define-map@^7.5.5":
|
|
153
|
+
version "7.5.5"
|
|
154
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369"
|
|
155
|
+
integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg==
|
|
169
156
|
dependencies:
|
|
170
157
|
"@babel/helper-function-name" "^7.1.0"
|
|
171
|
-
"@babel/types" "^7.
|
|
172
|
-
lodash "^4.17.
|
|
158
|
+
"@babel/types" "^7.5.5"
|
|
159
|
+
lodash "^4.17.13"
|
|
173
160
|
|
|
174
161
|
"@babel/helper-explode-assignable-expression@^7.1.0":
|
|
175
162
|
version "7.1.0"
|
|
@@ -202,12 +189,12 @@
|
|
|
202
189
|
dependencies:
|
|
203
190
|
"@babel/types" "^7.4.4"
|
|
204
191
|
|
|
205
|
-
"@babel/helper-member-expression-to-functions@^7.
|
|
206
|
-
version "7.
|
|
207
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
|
208
|
-
integrity sha512-
|
|
192
|
+
"@babel/helper-member-expression-to-functions@^7.5.5":
|
|
193
|
+
version "7.5.5"
|
|
194
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590"
|
|
195
|
+
integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==
|
|
209
196
|
dependencies:
|
|
210
|
-
"@babel/types" "^7.
|
|
197
|
+
"@babel/types" "^7.5.5"
|
|
211
198
|
|
|
212
199
|
"@babel/helper-module-imports@^7.0.0":
|
|
213
200
|
version "7.0.0"
|
|
@@ -277,25 +264,15 @@
|
|
|
277
264
|
"@babel/traverse" "^7.1.0"
|
|
278
265
|
"@babel/types" "^7.0.0"
|
|
279
266
|
|
|
280
|
-
"@babel/helper-replace-supers@^7.
|
|
281
|
-
version "7.
|
|
282
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
|
283
|
-
integrity sha512-
|
|
267
|
+
"@babel/helper-replace-supers@^7.5.5":
|
|
268
|
+
version "7.5.5"
|
|
269
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2"
|
|
270
|
+
integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==
|
|
284
271
|
dependencies:
|
|
285
|
-
"@babel/helper-member-expression-to-functions" "^7.
|
|
272
|
+
"@babel/helper-member-expression-to-functions" "^7.5.5"
|
|
286
273
|
"@babel/helper-optimise-call-expression" "^7.0.0"
|
|
287
|
-
"@babel/traverse" "^7.
|
|
288
|
-
"@babel/types" "^7.
|
|
289
|
-
|
|
290
|
-
"@babel/helper-replace-supers@^7.4.4":
|
|
291
|
-
version "7.4.4"
|
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27"
|
|
293
|
-
integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==
|
|
294
|
-
dependencies:
|
|
295
|
-
"@babel/helper-member-expression-to-functions" "^7.0.0"
|
|
296
|
-
"@babel/helper-optimise-call-expression" "^7.0.0"
|
|
297
|
-
"@babel/traverse" "^7.4.4"
|
|
298
|
-
"@babel/types" "^7.4.4"
|
|
274
|
+
"@babel/traverse" "^7.5.5"
|
|
275
|
+
"@babel/types" "^7.5.5"
|
|
299
276
|
|
|
300
277
|
"@babel/helper-simple-access@^7.1.0":
|
|
301
278
|
version "7.1.0"
|
|
@@ -312,13 +289,6 @@
|
|
|
312
289
|
dependencies:
|
|
313
290
|
"@babel/types" "^7.0.0"
|
|
314
291
|
|
|
315
|
-
"@babel/helper-split-export-declaration@^7.4.0":
|
|
316
|
-
version "7.4.0"
|
|
317
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz#571bfd52701f492920d63b7f735030e9a3e10b55"
|
|
318
|
-
integrity sha512-7Cuc6JZiYShaZnybDmfwhY4UYHzI6rlqhWjaIqbsJGsIqPimEYy5uh3akSRLMg65LSdSEnJ8a8/bWQN6u2oMGw==
|
|
319
|
-
dependencies:
|
|
320
|
-
"@babel/types" "^7.4.0"
|
|
321
|
-
|
|
322
292
|
"@babel/helper-split-export-declaration@^7.4.4":
|
|
323
293
|
version "7.4.4"
|
|
324
294
|
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
|
|
@@ -336,24 +306,6 @@
|
|
|
336
306
|
"@babel/traverse" "^7.1.0"
|
|
337
307
|
"@babel/types" "^7.2.0"
|
|
338
308
|
|
|
339
|
-
"@babel/helpers@^7.2.0":
|
|
340
|
-
version "7.3.1"
|
|
341
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9"
|
|
342
|
-
integrity sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA==
|
|
343
|
-
dependencies:
|
|
344
|
-
"@babel/template" "^7.1.2"
|
|
345
|
-
"@babel/traverse" "^7.1.5"
|
|
346
|
-
"@babel/types" "^7.3.0"
|
|
347
|
-
|
|
348
|
-
"@babel/helpers@^7.4.3":
|
|
349
|
-
version "7.4.3"
|
|
350
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.3.tgz#7b1d354363494b31cb9a2417ae86af32b7853a3b"
|
|
351
|
-
integrity sha512-BMh7X0oZqb36CfyhvtbSmcWc3GXocfxv3yNsAEuM0l+fAqSO22rQrUpijr3oE/10jCTrB6/0b9kzmG4VetCj8Q==
|
|
352
|
-
dependencies:
|
|
353
|
-
"@babel/template" "^7.4.0"
|
|
354
|
-
"@babel/traverse" "^7.4.3"
|
|
355
|
-
"@babel/types" "^7.4.0"
|
|
356
|
-
|
|
357
309
|
"@babel/helpers@^7.4.4":
|
|
358
310
|
version "7.4.4"
|
|
359
311
|
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5"
|
|
@@ -363,6 +315,15 @@
|
|
|
363
315
|
"@babel/traverse" "^7.4.4"
|
|
364
316
|
"@babel/types" "^7.4.4"
|
|
365
317
|
|
|
318
|
+
"@babel/helpers@^7.5.5":
|
|
319
|
+
version "7.5.5"
|
|
320
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e"
|
|
321
|
+
integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==
|
|
322
|
+
dependencies:
|
|
323
|
+
"@babel/template" "^7.4.4"
|
|
324
|
+
"@babel/traverse" "^7.5.5"
|
|
325
|
+
"@babel/types" "^7.5.5"
|
|
326
|
+
|
|
366
327
|
"@babel/highlight@^7.0.0":
|
|
367
328
|
version "7.0.0"
|
|
368
329
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
|
|
@@ -377,7 +338,7 @@
|
|
|
377
338
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
|
|
378
339
|
integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
|
|
379
340
|
|
|
380
|
-
"@babel/parser@^7.1.0"
|
|
341
|
+
"@babel/parser@^7.1.0":
|
|
381
342
|
version "7.4.3"
|
|
382
343
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.3.tgz#eb3ac80f64aa101c907d4ce5406360fe75b7895b"
|
|
383
344
|
integrity sha512-gxpEUhTS1sGA63EGQGuA+WESPR/6tz6ng7tSHFCmaTJK/cGK8y37cBTspX+U2xCAue2IQVvF6Z0oigmjwD8YGQ==
|
|
@@ -392,6 +353,16 @@
|
|
|
392
353
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.4.tgz#5977129431b8fe33471730d255ce8654ae1250b6"
|
|
393
354
|
integrity sha512-5pCS4mOsL+ANsFZGdvNLybx4wtqAZJ0MJjMHxvzI3bvIsz6sQvzW8XX92EYIkiPtIvcfG3Aj+Ir5VNyjnZhP7w==
|
|
394
355
|
|
|
356
|
+
"@babel/parser@^7.4.5":
|
|
357
|
+
version "7.4.5"
|
|
358
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872"
|
|
359
|
+
integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==
|
|
360
|
+
|
|
361
|
+
"@babel/parser@^7.5.5":
|
|
362
|
+
version "7.5.5"
|
|
363
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
|
|
364
|
+
integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
|
|
365
|
+
|
|
395
366
|
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
|
|
396
367
|
version "7.2.0"
|
|
397
368
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
|
|
@@ -401,6 +372,14 @@
|
|
|
401
372
|
"@babel/helper-remap-async-to-generator" "^7.1.0"
|
|
402
373
|
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
|
403
374
|
|
|
375
|
+
"@babel/plugin-proposal-dynamic-import@^7.5.0":
|
|
376
|
+
version "7.5.0"
|
|
377
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506"
|
|
378
|
+
integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==
|
|
379
|
+
dependencies:
|
|
380
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
|
381
|
+
"@babel/plugin-syntax-dynamic-import" "^7.2.0"
|
|
382
|
+
|
|
404
383
|
"@babel/plugin-proposal-json-strings@^7.2.0":
|
|
405
384
|
version "7.2.0"
|
|
406
385
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317"
|
|
@@ -409,10 +388,10 @@
|
|
|
409
388
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
410
389
|
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
|
411
390
|
|
|
412
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
|
413
|
-
version "7.
|
|
414
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
|
415
|
-
integrity sha512-
|
|
391
|
+
"@babel/plugin-proposal-object-rest-spread@^7.5.5":
|
|
392
|
+
version "7.5.5"
|
|
393
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58"
|
|
394
|
+
integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw==
|
|
416
395
|
dependencies:
|
|
417
396
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
418
397
|
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
|
@@ -441,6 +420,13 @@
|
|
|
441
420
|
dependencies:
|
|
442
421
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
443
422
|
|
|
423
|
+
"@babel/plugin-syntax-dynamic-import@^7.2.0":
|
|
424
|
+
version "7.2.0"
|
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
|
|
426
|
+
integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
|
|
427
|
+
dependencies:
|
|
428
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
|
429
|
+
|
|
444
430
|
"@babel/plugin-syntax-json-strings@^7.2.0":
|
|
445
431
|
version "7.2.0"
|
|
446
432
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470"
|
|
@@ -476,10 +462,10 @@
|
|
|
476
462
|
dependencies:
|
|
477
463
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
478
464
|
|
|
479
|
-
"@babel/plugin-transform-async-to-generator@^7.
|
|
480
|
-
version "7.
|
|
481
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
|
482
|
-
integrity sha512-
|
|
465
|
+
"@babel/plugin-transform-async-to-generator@^7.5.0":
|
|
466
|
+
version "7.5.0"
|
|
467
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e"
|
|
468
|
+
integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==
|
|
483
469
|
dependencies:
|
|
484
470
|
"@babel/helper-module-imports" "^7.0.0"
|
|
485
471
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
@@ -492,25 +478,25 @@
|
|
|
492
478
|
dependencies:
|
|
493
479
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
494
480
|
|
|
495
|
-
"@babel/plugin-transform-block-scoping@^7.
|
|
496
|
-
version "7.
|
|
497
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
|
498
|
-
integrity sha512-
|
|
481
|
+
"@babel/plugin-transform-block-scoping@^7.5.5":
|
|
482
|
+
version "7.5.5"
|
|
483
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.5.5.tgz#a35f395e5402822f10d2119f6f8e045e3639a2ce"
|
|
484
|
+
integrity sha512-82A3CLRRdYubkG85lKwhZB0WZoHxLGsJdux/cOVaJCJpvYFl1LVzAIFyRsa7CvXqW8rBM4Zf3Bfn8PHt5DP0Sg==
|
|
499
485
|
dependencies:
|
|
500
486
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
501
|
-
lodash "^4.17.
|
|
487
|
+
lodash "^4.17.13"
|
|
502
488
|
|
|
503
|
-
"@babel/plugin-transform-classes@^7.
|
|
504
|
-
version "7.
|
|
505
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
|
506
|
-
integrity sha512
|
|
489
|
+
"@babel/plugin-transform-classes@^7.5.5":
|
|
490
|
+
version "7.5.5"
|
|
491
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9"
|
|
492
|
+
integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg==
|
|
507
493
|
dependencies:
|
|
508
494
|
"@babel/helper-annotate-as-pure" "^7.0.0"
|
|
509
|
-
"@babel/helper-define-map" "^7.
|
|
495
|
+
"@babel/helper-define-map" "^7.5.5"
|
|
510
496
|
"@babel/helper-function-name" "^7.1.0"
|
|
511
497
|
"@babel/helper-optimise-call-expression" "^7.0.0"
|
|
512
498
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
513
|
-
"@babel/helper-replace-supers" "^7.
|
|
499
|
+
"@babel/helper-replace-supers" "^7.5.5"
|
|
514
500
|
"@babel/helper-split-export-declaration" "^7.4.4"
|
|
515
501
|
globals "^11.1.0"
|
|
516
502
|
|
|
@@ -521,10 +507,10 @@
|
|
|
521
507
|
dependencies:
|
|
522
508
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
523
509
|
|
|
524
|
-
"@babel/plugin-transform-destructuring@^7.
|
|
525
|
-
version "7.
|
|
526
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
|
527
|
-
integrity sha512
|
|
510
|
+
"@babel/plugin-transform-destructuring@^7.5.0":
|
|
511
|
+
version "7.5.0"
|
|
512
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.5.0.tgz#f6c09fdfe3f94516ff074fe877db7bc9ef05855a"
|
|
513
|
+
integrity sha512-YbYgbd3TryYYLGyC7ZR+Tq8H/+bCmwoaxHfJHupom5ECstzbRLTch6gOQbhEY9Z4hiCNHEURgq06ykFv9JZ/QQ==
|
|
528
514
|
dependencies:
|
|
529
515
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
530
516
|
|
|
@@ -537,10 +523,10 @@
|
|
|
537
523
|
"@babel/helper-regex" "^7.4.4"
|
|
538
524
|
regexpu-core "^4.5.4"
|
|
539
525
|
|
|
540
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
|
541
|
-
version "7.
|
|
542
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
|
543
|
-
integrity sha512-
|
|
526
|
+
"@babel/plugin-transform-duplicate-keys@^7.5.0":
|
|
527
|
+
version "7.5.0"
|
|
528
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853"
|
|
529
|
+
integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ==
|
|
544
530
|
dependencies:
|
|
545
531
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
546
532
|
|
|
@@ -581,30 +567,33 @@
|
|
|
581
567
|
dependencies:
|
|
582
568
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
583
569
|
|
|
584
|
-
"@babel/plugin-transform-modules-amd@^7.
|
|
585
|
-
version "7.
|
|
586
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
|
587
|
-
integrity sha512-
|
|
570
|
+
"@babel/plugin-transform-modules-amd@^7.5.0":
|
|
571
|
+
version "7.5.0"
|
|
572
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91"
|
|
573
|
+
integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==
|
|
588
574
|
dependencies:
|
|
589
575
|
"@babel/helper-module-transforms" "^7.1.0"
|
|
590
576
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
577
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
|
591
578
|
|
|
592
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
|
593
|
-
version "7.
|
|
594
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
|
595
|
-
integrity sha512-
|
|
579
|
+
"@babel/plugin-transform-modules-commonjs@^7.5.0":
|
|
580
|
+
version "7.5.0"
|
|
581
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.5.0.tgz#425127e6045231360858eeaa47a71d75eded7a74"
|
|
582
|
+
integrity sha512-xmHq0B+ytyrWJvQTc5OWAC4ii6Dhr0s22STOoydokG51JjWhyYo5mRPXoi+ZmtHQhZZwuXNN+GG5jy5UZZJxIQ==
|
|
596
583
|
dependencies:
|
|
597
584
|
"@babel/helper-module-transforms" "^7.4.4"
|
|
598
585
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
599
586
|
"@babel/helper-simple-access" "^7.1.0"
|
|
587
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
|
600
588
|
|
|
601
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
|
602
|
-
version "7.
|
|
603
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
|
604
|
-
integrity sha512-
|
|
589
|
+
"@babel/plugin-transform-modules-systemjs@^7.5.0":
|
|
590
|
+
version "7.5.0"
|
|
591
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249"
|
|
592
|
+
integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==
|
|
605
593
|
dependencies:
|
|
606
594
|
"@babel/helper-hoist-variables" "^7.4.4"
|
|
607
595
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
596
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
|
608
597
|
|
|
609
598
|
"@babel/plugin-transform-modules-umd@^7.2.0":
|
|
610
599
|
version "7.2.0"
|
|
@@ -614,12 +603,12 @@
|
|
|
614
603
|
"@babel/helper-module-transforms" "^7.1.0"
|
|
615
604
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
616
605
|
|
|
617
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.4.
|
|
618
|
-
version "7.4.
|
|
619
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.
|
|
620
|
-
integrity sha512-
|
|
606
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5":
|
|
607
|
+
version "7.4.5"
|
|
608
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106"
|
|
609
|
+
integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==
|
|
621
610
|
dependencies:
|
|
622
|
-
regexp-tree "^0.1.
|
|
611
|
+
regexp-tree "^0.1.6"
|
|
623
612
|
|
|
624
613
|
"@babel/plugin-transform-new-target@^7.4.4":
|
|
625
614
|
version "7.4.4"
|
|
@@ -628,13 +617,13 @@
|
|
|
628
617
|
dependencies:
|
|
629
618
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
630
619
|
|
|
631
|
-
"@babel/plugin-transform-object-super@^7.
|
|
632
|
-
version "7.
|
|
633
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
|
634
|
-
integrity sha512-
|
|
620
|
+
"@babel/plugin-transform-object-super@^7.5.5":
|
|
621
|
+
version "7.5.5"
|
|
622
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9"
|
|
623
|
+
integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ==
|
|
635
624
|
dependencies:
|
|
636
625
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
637
|
-
"@babel/helper-replace-supers" "^7.
|
|
626
|
+
"@babel/helper-replace-supers" "^7.5.5"
|
|
638
627
|
|
|
639
628
|
"@babel/plugin-transform-parameters@^7.4.4":
|
|
640
629
|
version "7.4.4"
|
|
@@ -684,12 +673,12 @@
|
|
|
684
673
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
685
674
|
"@babel/plugin-syntax-jsx" "^7.2.0"
|
|
686
675
|
|
|
687
|
-
"@babel/plugin-transform-regenerator@^7.4.
|
|
688
|
-
version "7.4.
|
|
689
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.
|
|
690
|
-
integrity sha512-
|
|
676
|
+
"@babel/plugin-transform-regenerator@^7.4.5":
|
|
677
|
+
version "7.4.5"
|
|
678
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f"
|
|
679
|
+
integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==
|
|
691
680
|
dependencies:
|
|
692
|
-
regenerator-transform "^0.
|
|
681
|
+
regenerator-transform "^0.14.0"
|
|
693
682
|
|
|
694
683
|
"@babel/plugin-transform-reserved-words@^7.2.0":
|
|
695
684
|
version "7.2.0"
|
|
@@ -744,46 +733,48 @@
|
|
|
744
733
|
"@babel/helper-regex" "^7.4.4"
|
|
745
734
|
regexpu-core "^4.5.4"
|
|
746
735
|
|
|
747
|
-
"@babel/preset-env@^7.
|
|
748
|
-
version "7.
|
|
749
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
|
750
|
-
integrity sha512-
|
|
736
|
+
"@babel/preset-env@^7.5.5":
|
|
737
|
+
version "7.5.5"
|
|
738
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.5.5.tgz#bc470b53acaa48df4b8db24a570d6da1fef53c9a"
|
|
739
|
+
integrity sha512-GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A==
|
|
751
740
|
dependencies:
|
|
752
741
|
"@babel/helper-module-imports" "^7.0.0"
|
|
753
742
|
"@babel/helper-plugin-utils" "^7.0.0"
|
|
754
743
|
"@babel/plugin-proposal-async-generator-functions" "^7.2.0"
|
|
744
|
+
"@babel/plugin-proposal-dynamic-import" "^7.5.0"
|
|
755
745
|
"@babel/plugin-proposal-json-strings" "^7.2.0"
|
|
756
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
|
746
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.5.5"
|
|
757
747
|
"@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
|
|
758
748
|
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
|
759
749
|
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
|
750
|
+
"@babel/plugin-syntax-dynamic-import" "^7.2.0"
|
|
760
751
|
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
|
761
752
|
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
|
762
753
|
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
|
763
754
|
"@babel/plugin-transform-arrow-functions" "^7.2.0"
|
|
764
|
-
"@babel/plugin-transform-async-to-generator" "^7.
|
|
755
|
+
"@babel/plugin-transform-async-to-generator" "^7.5.0"
|
|
765
756
|
"@babel/plugin-transform-block-scoped-functions" "^7.2.0"
|
|
766
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
|
767
|
-
"@babel/plugin-transform-classes" "^7.
|
|
757
|
+
"@babel/plugin-transform-block-scoping" "^7.5.5"
|
|
758
|
+
"@babel/plugin-transform-classes" "^7.5.5"
|
|
768
759
|
"@babel/plugin-transform-computed-properties" "^7.2.0"
|
|
769
|
-
"@babel/plugin-transform-destructuring" "^7.
|
|
760
|
+
"@babel/plugin-transform-destructuring" "^7.5.0"
|
|
770
761
|
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
|
771
|
-
"@babel/plugin-transform-duplicate-keys" "^7.
|
|
762
|
+
"@babel/plugin-transform-duplicate-keys" "^7.5.0"
|
|
772
763
|
"@babel/plugin-transform-exponentiation-operator" "^7.2.0"
|
|
773
764
|
"@babel/plugin-transform-for-of" "^7.4.4"
|
|
774
765
|
"@babel/plugin-transform-function-name" "^7.4.4"
|
|
775
766
|
"@babel/plugin-transform-literals" "^7.2.0"
|
|
776
767
|
"@babel/plugin-transform-member-expression-literals" "^7.2.0"
|
|
777
|
-
"@babel/plugin-transform-modules-amd" "^7.
|
|
778
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
|
779
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
|
768
|
+
"@babel/plugin-transform-modules-amd" "^7.5.0"
|
|
769
|
+
"@babel/plugin-transform-modules-commonjs" "^7.5.0"
|
|
770
|
+
"@babel/plugin-transform-modules-systemjs" "^7.5.0"
|
|
780
771
|
"@babel/plugin-transform-modules-umd" "^7.2.0"
|
|
781
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.4.
|
|
772
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5"
|
|
782
773
|
"@babel/plugin-transform-new-target" "^7.4.4"
|
|
783
|
-
"@babel/plugin-transform-object-super" "^7.
|
|
774
|
+
"@babel/plugin-transform-object-super" "^7.5.5"
|
|
784
775
|
"@babel/plugin-transform-parameters" "^7.4.4"
|
|
785
776
|
"@babel/plugin-transform-property-literals" "^7.2.0"
|
|
786
|
-
"@babel/plugin-transform-regenerator" "^7.4.
|
|
777
|
+
"@babel/plugin-transform-regenerator" "^7.4.5"
|
|
787
778
|
"@babel/plugin-transform-reserved-words" "^7.2.0"
|
|
788
779
|
"@babel/plugin-transform-shorthand-properties" "^7.2.0"
|
|
789
780
|
"@babel/plugin-transform-spread" "^7.2.0"
|
|
@@ -791,9 +782,9 @@
|
|
|
791
782
|
"@babel/plugin-transform-template-literals" "^7.4.4"
|
|
792
783
|
"@babel/plugin-transform-typeof-symbol" "^7.2.0"
|
|
793
784
|
"@babel/plugin-transform-unicode-regex" "^7.4.4"
|
|
794
|
-
"@babel/types" "^7.
|
|
795
|
-
browserslist "^4.
|
|
796
|
-
core-js-compat "^3.
|
|
785
|
+
"@babel/types" "^7.5.5"
|
|
786
|
+
browserslist "^4.6.0"
|
|
787
|
+
core-js-compat "^3.1.1"
|
|
797
788
|
invariant "^2.2.2"
|
|
798
789
|
js-levenshtein "^1.1.3"
|
|
799
790
|
semver "^5.5.0"
|
|
@@ -809,14 +800,14 @@
|
|
|
809
800
|
"@babel/plugin-transform-react-jsx-self" "^7.0.0"
|
|
810
801
|
"@babel/plugin-transform-react-jsx-source" "^7.0.0"
|
|
811
802
|
|
|
812
|
-
"@babel/runtime@^7.
|
|
813
|
-
version "7.
|
|
814
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
|
815
|
-
integrity sha512-
|
|
803
|
+
"@babel/runtime@^7.5.5":
|
|
804
|
+
version "7.5.5"
|
|
805
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132"
|
|
806
|
+
integrity sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==
|
|
816
807
|
dependencies:
|
|
817
808
|
regenerator-runtime "^0.13.2"
|
|
818
809
|
|
|
819
|
-
"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.
|
|
810
|
+
"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.2.2":
|
|
820
811
|
version "7.2.2"
|
|
821
812
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
|
|
822
813
|
integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
|
|
@@ -825,15 +816,6 @@
|
|
|
825
816
|
"@babel/parser" "^7.2.2"
|
|
826
817
|
"@babel/types" "^7.2.2"
|
|
827
818
|
|
|
828
|
-
"@babel/template@^7.4.0":
|
|
829
|
-
version "7.4.0"
|
|
830
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.0.tgz#12474e9c077bae585c5d835a95c0b0b790c25c8b"
|
|
831
|
-
integrity sha512-SOWwxxClTTh5NdbbYZ0BmaBVzxzTh2tO/TeLTbF6MO6EzVhHTnff8CdBXx3mEtazFBoysmEM6GU/wF+SuSx4Fw==
|
|
832
|
-
dependencies:
|
|
833
|
-
"@babel/code-frame" "^7.0.0"
|
|
834
|
-
"@babel/parser" "^7.4.0"
|
|
835
|
-
"@babel/types" "^7.4.0"
|
|
836
|
-
|
|
837
819
|
"@babel/template@^7.4.4":
|
|
838
820
|
version "7.4.4"
|
|
839
821
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
|
|
@@ -843,7 +825,7 @@
|
|
|
843
825
|
"@babel/parser" "^7.4.4"
|
|
844
826
|
"@babel/types" "^7.4.4"
|
|
845
827
|
|
|
846
|
-
"@babel/traverse@^7.0.0"
|
|
828
|
+
"@babel/traverse@^7.0.0":
|
|
847
829
|
version "7.3.4"
|
|
848
830
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06"
|
|
849
831
|
integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==
|
|
@@ -858,7 +840,7 @@
|
|
|
858
840
|
globals "^11.1.0"
|
|
859
841
|
lodash "^4.17.11"
|
|
860
842
|
|
|
861
|
-
"@babel/traverse@^7.1.0"
|
|
843
|
+
"@babel/traverse@^7.1.0":
|
|
862
844
|
version "7.2.3"
|
|
863
845
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8"
|
|
864
846
|
integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==
|
|
@@ -873,36 +855,51 @@
|
|
|
873
855
|
globals "^11.1.0"
|
|
874
856
|
lodash "^4.17.10"
|
|
875
857
|
|
|
876
|
-
"@babel/traverse@^7.4.
|
|
877
|
-
version "7.4.
|
|
878
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.
|
|
879
|
-
integrity sha512-
|
|
858
|
+
"@babel/traverse@^7.4.4":
|
|
859
|
+
version "7.4.4"
|
|
860
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.4.tgz#0776f038f6d78361860b6823887d4f3937133fe8"
|
|
861
|
+
integrity sha512-Gw6qqkw/e6AGzlyj9KnkabJX7VcubqPtkUQVAwkc0wUMldr3A/hezNB3Rc5eIvId95iSGkGIOe5hh1kMKf951A==
|
|
880
862
|
dependencies:
|
|
881
863
|
"@babel/code-frame" "^7.0.0"
|
|
882
|
-
"@babel/generator" "^7.4.
|
|
864
|
+
"@babel/generator" "^7.4.4"
|
|
883
865
|
"@babel/helper-function-name" "^7.1.0"
|
|
884
|
-
"@babel/helper-split-export-declaration" "^7.4.
|
|
885
|
-
"@babel/parser" "^7.4.
|
|
886
|
-
"@babel/types" "^7.4.
|
|
866
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
|
867
|
+
"@babel/parser" "^7.4.4"
|
|
868
|
+
"@babel/types" "^7.4.4"
|
|
887
869
|
debug "^4.1.0"
|
|
888
870
|
globals "^11.1.0"
|
|
889
871
|
lodash "^4.17.11"
|
|
890
872
|
|
|
891
|
-
"@babel/traverse@^7.4.
|
|
892
|
-
version "7.4.
|
|
893
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.
|
|
894
|
-
integrity sha512-
|
|
873
|
+
"@babel/traverse@^7.4.5":
|
|
874
|
+
version "7.4.5"
|
|
875
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216"
|
|
876
|
+
integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==
|
|
895
877
|
dependencies:
|
|
896
878
|
"@babel/code-frame" "^7.0.0"
|
|
897
879
|
"@babel/generator" "^7.4.4"
|
|
898
880
|
"@babel/helper-function-name" "^7.1.0"
|
|
899
881
|
"@babel/helper-split-export-declaration" "^7.4.4"
|
|
900
|
-
"@babel/parser" "^7.4.
|
|
882
|
+
"@babel/parser" "^7.4.5"
|
|
901
883
|
"@babel/types" "^7.4.4"
|
|
902
884
|
debug "^4.1.0"
|
|
903
885
|
globals "^11.1.0"
|
|
904
886
|
lodash "^4.17.11"
|
|
905
887
|
|
|
888
|
+
"@babel/traverse@^7.5.5":
|
|
889
|
+
version "7.5.5"
|
|
890
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
|
|
891
|
+
integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
|
|
892
|
+
dependencies:
|
|
893
|
+
"@babel/code-frame" "^7.5.5"
|
|
894
|
+
"@babel/generator" "^7.5.5"
|
|
895
|
+
"@babel/helper-function-name" "^7.1.0"
|
|
896
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
|
897
|
+
"@babel/parser" "^7.5.5"
|
|
898
|
+
"@babel/types" "^7.5.5"
|
|
899
|
+
debug "^4.1.0"
|
|
900
|
+
globals "^11.1.0"
|
|
901
|
+
lodash "^4.17.13"
|
|
902
|
+
|
|
906
903
|
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
|
|
907
904
|
version "7.3.3"
|
|
908
905
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.3.tgz#6c44d1cdac2a7625b624216657d5bc6c107ab436"
|
|
@@ -921,15 +918,6 @@
|
|
|
921
918
|
lodash "^4.17.11"
|
|
922
919
|
to-fast-properties "^2.0.0"
|
|
923
920
|
|
|
924
|
-
"@babel/types@^7.4.0":
|
|
925
|
-
version "7.4.0"
|
|
926
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.0.tgz#670724f77d24cce6cc7d8cf64599d511d164894c"
|
|
927
|
-
integrity sha512-aPvkXyU2SPOnztlgo8n9cEiXW755mgyvueUPcpStqdzoSPm0fjO0vQBjLkt3JKJW7ufikfcnMTTPsN1xaTsBPA==
|
|
928
|
-
dependencies:
|
|
929
|
-
esutils "^2.0.2"
|
|
930
|
-
lodash "^4.17.11"
|
|
931
|
-
to-fast-properties "^2.0.0"
|
|
932
|
-
|
|
933
921
|
"@babel/types@^7.4.4":
|
|
934
922
|
version "7.4.4"
|
|
935
923
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0"
|
|
@@ -939,6 +927,15 @@
|
|
|
939
927
|
lodash "^4.17.11"
|
|
940
928
|
to-fast-properties "^2.0.0"
|
|
941
929
|
|
|
930
|
+
"@babel/types@^7.5.5":
|
|
931
|
+
version "7.5.5"
|
|
932
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a"
|
|
933
|
+
integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==
|
|
934
|
+
dependencies:
|
|
935
|
+
esutils "^2.0.2"
|
|
936
|
+
lodash "^4.17.13"
|
|
937
|
+
to-fast-properties "^2.0.0"
|
|
938
|
+
|
|
942
939
|
"@cnakazawa/watch@^1.0.3":
|
|
943
940
|
version "1.0.3"
|
|
944
941
|
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
|
|
@@ -947,30 +944,30 @@
|
|
|
947
944
|
exec-sh "^0.3.2"
|
|
948
945
|
minimist "^1.2.0"
|
|
949
946
|
|
|
950
|
-
"@culturehq/eslint-config@^
|
|
951
|
-
version "
|
|
952
|
-
resolved "https://registry.yarnpkg.com/@culturehq/eslint-config/-/eslint-config-
|
|
953
|
-
integrity sha512-
|
|
947
|
+
"@culturehq/eslint-config@^2.1.0":
|
|
948
|
+
version "2.1.0"
|
|
949
|
+
resolved "https://registry.yarnpkg.com/@culturehq/eslint-config/-/eslint-config-2.1.0.tgz#609634a745aa5c99302993c74560d6a753b5e942"
|
|
950
|
+
integrity sha512-bszPOBZCWsEFX8XzIu/pKmP2wenii9sCqvwo+9C4G3Xgb/4BVZDGslkcd52o1b7vAUkMuNScLtNSrWbZWNLedw==
|
|
954
951
|
dependencies:
|
|
955
952
|
babel-eslint "^10.0.1"
|
|
956
953
|
eslint-config-airbnb "^17.1.0"
|
|
957
954
|
eslint-plugin-filenames "^1.3.2"
|
|
958
|
-
eslint-plugin-import "^2.
|
|
955
|
+
eslint-plugin-import "^2.18.0"
|
|
959
956
|
eslint-plugin-jsx-a11y "^6.2.1"
|
|
960
|
-
eslint-plugin-react "^7.
|
|
961
|
-
eslint-plugin-react-hooks "^1.
|
|
957
|
+
eslint-plugin-react "^7.14.2"
|
|
958
|
+
eslint-plugin-react-hooks "^1.6.1"
|
|
962
959
|
|
|
963
|
-
"@culturehq/scripts@^
|
|
964
|
-
version "
|
|
965
|
-
resolved "https://registry.yarnpkg.com/@culturehq/scripts/-/scripts-
|
|
966
|
-
integrity sha512-
|
|
960
|
+
"@culturehq/scripts@^2.2.0":
|
|
961
|
+
version "2.2.0"
|
|
962
|
+
resolved "https://registry.yarnpkg.com/@culturehq/scripts/-/scripts-2.2.0.tgz#fd3feec6d067f9854ed2a9e51258847d1f04c4c4"
|
|
963
|
+
integrity sha512-ZL7jtTbS3i4S/92+6k8rXSy54nXaiMJD0ge6Xz9JoG55DZKKsDu3Dhtl0IOVxBRBIQdmzgYswaCyFUnl3TO3yA==
|
|
967
964
|
dependencies:
|
|
968
|
-
"@babel/core" "^7.4.
|
|
969
|
-
"@culturehq/eslint-config" "^
|
|
970
|
-
babel-jest "^24.
|
|
971
|
-
eslint "^
|
|
972
|
-
jest "^24.
|
|
973
|
-
yargs-parser "^13.
|
|
965
|
+
"@babel/core" "^7.4.5"
|
|
966
|
+
"@culturehq/eslint-config" "^2.1.0"
|
|
967
|
+
babel-jest "^24.8.0"
|
|
968
|
+
eslint "^6.0.0"
|
|
969
|
+
jest "^24.8.0"
|
|
970
|
+
yargs-parser "^13.1.0"
|
|
974
971
|
|
|
975
972
|
"@jest/console@^24.7.1":
|
|
976
973
|
version "24.7.1"
|
|
@@ -981,32 +978,32 @@
|
|
|
981
978
|
chalk "^2.0.1"
|
|
982
979
|
slash "^2.0.0"
|
|
983
980
|
|
|
984
|
-
"@jest/core@^24.
|
|
985
|
-
version "24.
|
|
986
|
-
resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.
|
|
987
|
-
integrity sha512-
|
|
981
|
+
"@jest/core@^24.8.0":
|
|
982
|
+
version "24.8.0"
|
|
983
|
+
resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b"
|
|
984
|
+
integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==
|
|
988
985
|
dependencies:
|
|
989
986
|
"@jest/console" "^24.7.1"
|
|
990
|
-
"@jest/reporters" "^24.
|
|
991
|
-
"@jest/test-result" "^24.
|
|
992
|
-
"@jest/transform" "^24.
|
|
993
|
-
"@jest/types" "^24.
|
|
987
|
+
"@jest/reporters" "^24.8.0"
|
|
988
|
+
"@jest/test-result" "^24.8.0"
|
|
989
|
+
"@jest/transform" "^24.8.0"
|
|
990
|
+
"@jest/types" "^24.8.0"
|
|
994
991
|
ansi-escapes "^3.0.0"
|
|
995
992
|
chalk "^2.0.1"
|
|
996
993
|
exit "^0.1.2"
|
|
997
994
|
graceful-fs "^4.1.15"
|
|
998
|
-
jest-changed-files "^24.
|
|
999
|
-
jest-config "^24.
|
|
1000
|
-
jest-haste-map "^24.
|
|
1001
|
-
jest-message-util "^24.
|
|
995
|
+
jest-changed-files "^24.8.0"
|
|
996
|
+
jest-config "^24.8.0"
|
|
997
|
+
jest-haste-map "^24.8.0"
|
|
998
|
+
jest-message-util "^24.8.0"
|
|
1002
999
|
jest-regex-util "^24.3.0"
|
|
1003
|
-
jest-resolve-dependencies "^24.
|
|
1004
|
-
jest-runner "^24.
|
|
1005
|
-
jest-runtime "^24.
|
|
1006
|
-
jest-snapshot "^24.
|
|
1007
|
-
jest-util "^24.
|
|
1008
|
-
jest-validate "^24.
|
|
1009
|
-
jest-watcher "^24.
|
|
1000
|
+
jest-resolve-dependencies "^24.8.0"
|
|
1001
|
+
jest-runner "^24.8.0"
|
|
1002
|
+
jest-runtime "^24.8.0"
|
|
1003
|
+
jest-snapshot "^24.8.0"
|
|
1004
|
+
jest-util "^24.8.0"
|
|
1005
|
+
jest-validate "^24.8.0"
|
|
1006
|
+
jest-watcher "^24.8.0"
|
|
1010
1007
|
micromatch "^3.1.10"
|
|
1011
1008
|
p-each-series "^1.0.0"
|
|
1012
1009
|
pirates "^4.0.1"
|
|
@@ -1014,45 +1011,46 @@
|
|
|
1014
1011
|
rimraf "^2.5.4"
|
|
1015
1012
|
strip-ansi "^5.0.0"
|
|
1016
1013
|
|
|
1017
|
-
"@jest/environment@^24.
|
|
1018
|
-
version "24.
|
|
1019
|
-
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.
|
|
1020
|
-
integrity sha512-
|
|
1021
|
-
dependencies:
|
|
1022
|
-
"@jest/fake-timers" "^24.
|
|
1023
|
-
"@jest/transform" "^24.
|
|
1024
|
-
"@jest/types" "^24.
|
|
1025
|
-
jest-mock "^24.
|
|
1026
|
-
|
|
1027
|
-
"@jest/fake-timers@^24.
|
|
1028
|
-
version "24.
|
|
1029
|
-
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.
|
|
1030
|
-
integrity sha512-
|
|
1031
|
-
dependencies:
|
|
1032
|
-
"@jest/types" "^24.
|
|
1033
|
-
jest-message-util "^24.
|
|
1034
|
-
jest-mock "^24.
|
|
1035
|
-
|
|
1036
|
-
"@jest/reporters@^24.
|
|
1037
|
-
version "24.
|
|
1038
|
-
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.
|
|
1039
|
-
integrity sha512-
|
|
1040
|
-
dependencies:
|
|
1041
|
-
"@jest/environment" "^24.
|
|
1042
|
-
"@jest/test-result" "^24.
|
|
1043
|
-
"@jest/transform" "^24.
|
|
1044
|
-
"@jest/types" "^24.
|
|
1014
|
+
"@jest/environment@^24.8.0":
|
|
1015
|
+
version "24.8.0"
|
|
1016
|
+
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac"
|
|
1017
|
+
integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==
|
|
1018
|
+
dependencies:
|
|
1019
|
+
"@jest/fake-timers" "^24.8.0"
|
|
1020
|
+
"@jest/transform" "^24.8.0"
|
|
1021
|
+
"@jest/types" "^24.8.0"
|
|
1022
|
+
jest-mock "^24.8.0"
|
|
1023
|
+
|
|
1024
|
+
"@jest/fake-timers@^24.8.0":
|
|
1025
|
+
version "24.8.0"
|
|
1026
|
+
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1"
|
|
1027
|
+
integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==
|
|
1028
|
+
dependencies:
|
|
1029
|
+
"@jest/types" "^24.8.0"
|
|
1030
|
+
jest-message-util "^24.8.0"
|
|
1031
|
+
jest-mock "^24.8.0"
|
|
1032
|
+
|
|
1033
|
+
"@jest/reporters@^24.8.0":
|
|
1034
|
+
version "24.8.0"
|
|
1035
|
+
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729"
|
|
1036
|
+
integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==
|
|
1037
|
+
dependencies:
|
|
1038
|
+
"@jest/environment" "^24.8.0"
|
|
1039
|
+
"@jest/test-result" "^24.8.0"
|
|
1040
|
+
"@jest/transform" "^24.8.0"
|
|
1041
|
+
"@jest/types" "^24.8.0"
|
|
1045
1042
|
chalk "^2.0.1"
|
|
1046
1043
|
exit "^0.1.2"
|
|
1047
1044
|
glob "^7.1.2"
|
|
1048
|
-
istanbul-api "^2.1.1"
|
|
1049
1045
|
istanbul-lib-coverage "^2.0.2"
|
|
1050
1046
|
istanbul-lib-instrument "^3.0.1"
|
|
1047
|
+
istanbul-lib-report "^2.0.4"
|
|
1051
1048
|
istanbul-lib-source-maps "^3.0.1"
|
|
1052
|
-
|
|
1053
|
-
jest-
|
|
1054
|
-
jest-
|
|
1055
|
-
jest-
|
|
1049
|
+
istanbul-reports "^2.1.1"
|
|
1050
|
+
jest-haste-map "^24.8.0"
|
|
1051
|
+
jest-resolve "^24.8.0"
|
|
1052
|
+
jest-runtime "^24.8.0"
|
|
1053
|
+
jest-util "^24.8.0"
|
|
1056
1054
|
jest-worker "^24.6.0"
|
|
1057
1055
|
node-notifier "^5.2.1"
|
|
1058
1056
|
slash "^2.0.0"
|
|
@@ -1068,52 +1066,53 @@
|
|
|
1068
1066
|
graceful-fs "^4.1.15"
|
|
1069
1067
|
source-map "^0.6.0"
|
|
1070
1068
|
|
|
1071
|
-
"@jest/test-result@^24.
|
|
1072
|
-
version "24.
|
|
1073
|
-
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.
|
|
1074
|
-
integrity sha512
|
|
1069
|
+
"@jest/test-result@^24.8.0":
|
|
1070
|
+
version "24.8.0"
|
|
1071
|
+
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3"
|
|
1072
|
+
integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==
|
|
1075
1073
|
dependencies:
|
|
1076
1074
|
"@jest/console" "^24.7.1"
|
|
1077
|
-
"@jest/types" "^24.
|
|
1075
|
+
"@jest/types" "^24.8.0"
|
|
1078
1076
|
"@types/istanbul-lib-coverage" "^2.0.0"
|
|
1079
1077
|
|
|
1080
|
-
"@jest/test-sequencer@^24.
|
|
1081
|
-
version "24.
|
|
1082
|
-
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.
|
|
1083
|
-
integrity sha512-
|
|
1078
|
+
"@jest/test-sequencer@^24.8.0":
|
|
1079
|
+
version "24.8.0"
|
|
1080
|
+
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b"
|
|
1081
|
+
integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==
|
|
1084
1082
|
dependencies:
|
|
1085
|
-
"@jest/test-result" "^24.
|
|
1086
|
-
jest-haste-map "^24.
|
|
1087
|
-
jest-runner "^24.
|
|
1088
|
-
jest-runtime "^24.
|
|
1083
|
+
"@jest/test-result" "^24.8.0"
|
|
1084
|
+
jest-haste-map "^24.8.0"
|
|
1085
|
+
jest-runner "^24.8.0"
|
|
1086
|
+
jest-runtime "^24.8.0"
|
|
1089
1087
|
|
|
1090
|
-
"@jest/transform@^24.
|
|
1091
|
-
version "24.
|
|
1092
|
-
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.
|
|
1093
|
-
integrity sha512-
|
|
1088
|
+
"@jest/transform@^24.8.0":
|
|
1089
|
+
version "24.8.0"
|
|
1090
|
+
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5"
|
|
1091
|
+
integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==
|
|
1094
1092
|
dependencies:
|
|
1095
1093
|
"@babel/core" "^7.1.0"
|
|
1096
|
-
"@jest/types" "^24.
|
|
1094
|
+
"@jest/types" "^24.8.0"
|
|
1097
1095
|
babel-plugin-istanbul "^5.1.0"
|
|
1098
1096
|
chalk "^2.0.1"
|
|
1099
1097
|
convert-source-map "^1.4.0"
|
|
1100
1098
|
fast-json-stable-stringify "^2.0.0"
|
|
1101
1099
|
graceful-fs "^4.1.15"
|
|
1102
|
-
jest-haste-map "^24.
|
|
1100
|
+
jest-haste-map "^24.8.0"
|
|
1103
1101
|
jest-regex-util "^24.3.0"
|
|
1104
|
-
jest-util "^24.
|
|
1102
|
+
jest-util "^24.8.0"
|
|
1105
1103
|
micromatch "^3.1.10"
|
|
1106
1104
|
realpath-native "^1.1.0"
|
|
1107
1105
|
slash "^2.0.0"
|
|
1108
1106
|
source-map "^0.6.1"
|
|
1109
1107
|
write-file-atomic "2.4.1"
|
|
1110
1108
|
|
|
1111
|
-
"@jest/types@^24.
|
|
1112
|
-
version "24.
|
|
1113
|
-
resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.
|
|
1114
|
-
integrity sha512-
|
|
1109
|
+
"@jest/types@^24.8.0":
|
|
1110
|
+
version "24.8.0"
|
|
1111
|
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad"
|
|
1112
|
+
integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==
|
|
1115
1113
|
dependencies:
|
|
1116
1114
|
"@types/istanbul-lib-coverage" "^2.0.0"
|
|
1115
|
+
"@types/istanbul-reports" "^1.1.1"
|
|
1117
1116
|
"@types/yargs" "^12.0.9"
|
|
1118
1117
|
|
|
1119
1118
|
"@sheerun/mutationobserver-shim@^0.3.2":
|
|
@@ -1121,6 +1120,25 @@
|
|
|
1121
1120
|
resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#8013f2af54a2b7d735f71560ff360d3a8176a87b"
|
|
1122
1121
|
integrity sha512-vTCdPp/T/Q3oSqwHmZ5Kpa9oI7iLtGl3RQaA/NyLHikvcrPxACkkKVr/XzkSPJWXHRhKGzVvb0urJsbMlRxi1Q==
|
|
1123
1122
|
|
|
1123
|
+
"@testing-library/dom@^5.6.1":
|
|
1124
|
+
version "5.6.1"
|
|
1125
|
+
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-5.6.1.tgz#705a1cb4a039b877c1e69e916824038e837ab637"
|
|
1126
|
+
integrity sha512-Y1T2bjtvQMewffn1CJ28kpgnuvPYKsBcZMagEH0ppfEMZPDc8AkkEnTk4smrGZKw0cblNB3lhM2FMnpfLExlHg==
|
|
1127
|
+
dependencies:
|
|
1128
|
+
"@babel/runtime" "^7.5.5"
|
|
1129
|
+
"@sheerun/mutationobserver-shim" "^0.3.2"
|
|
1130
|
+
aria-query "3.0.0"
|
|
1131
|
+
pretty-format "^24.8.0"
|
|
1132
|
+
wait-for-expect "^1.2.0"
|
|
1133
|
+
|
|
1134
|
+
"@testing-library/react@^8.0.9":
|
|
1135
|
+
version "8.0.9"
|
|
1136
|
+
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-8.0.9.tgz#1ecd96bc3471b06dd2f9763b6e53a7ace28a54a2"
|
|
1137
|
+
integrity sha512-I7zd+MW5wk8rQA5VopZgBfxGKUd91jgZ6Vzj2gMqFf2iGGtKwvI5SVTrIJcSFaOXK88T2EUsbsIKugDtoqOcZQ==
|
|
1138
|
+
dependencies:
|
|
1139
|
+
"@babel/runtime" "^7.5.5"
|
|
1140
|
+
"@testing-library/dom" "^5.6.1"
|
|
1141
|
+
|
|
1124
1142
|
"@types/babel__core@^7.1.0":
|
|
1125
1143
|
version "7.1.0"
|
|
1126
1144
|
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz#710f2487dda4dcfd010ca6abb2b4dc7394365c51"
|
|
@@ -1154,11 +1172,31 @@
|
|
|
1154
1172
|
dependencies:
|
|
1155
1173
|
"@babel/types" "^7.3.0"
|
|
1156
1174
|
|
|
1175
|
+
"@types/istanbul-lib-coverage@*":
|
|
1176
|
+
version "2.0.1"
|
|
1177
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
|
|
1178
|
+
integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
|
|
1179
|
+
|
|
1157
1180
|
"@types/istanbul-lib-coverage@^2.0.0":
|
|
1158
1181
|
version "2.0.0"
|
|
1159
1182
|
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.0.tgz#1eb8c033e98cf4e1a4cedcaf8bcafe8cb7591e85"
|
|
1160
1183
|
integrity sha512-eAtOAFZefEnfJiRFQBGw1eYqa5GTLCZ1y86N0XSI/D6EB+E8z6VPV/UL7Gi5UEclFqoQk+6NRqEDsfmDLXn8sg==
|
|
1161
1184
|
|
|
1185
|
+
"@types/istanbul-lib-report@*":
|
|
1186
|
+
version "1.1.1"
|
|
1187
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c"
|
|
1188
|
+
integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==
|
|
1189
|
+
dependencies:
|
|
1190
|
+
"@types/istanbul-lib-coverage" "*"
|
|
1191
|
+
|
|
1192
|
+
"@types/istanbul-reports@^1.1.1":
|
|
1193
|
+
version "1.1.1"
|
|
1194
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
|
|
1195
|
+
integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
|
|
1196
|
+
dependencies:
|
|
1197
|
+
"@types/istanbul-lib-coverage" "*"
|
|
1198
|
+
"@types/istanbul-lib-report" "*"
|
|
1199
|
+
|
|
1162
1200
|
"@types/stack-utils@^1.0.1":
|
|
1163
1201
|
version "1.0.1"
|
|
1164
1202
|
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
|
|
@@ -1335,11 +1373,6 @@ abbrev@1:
|
|
|
1335
1373
|
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
|
1336
1374
|
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
|
1337
1375
|
|
|
1338
|
-
acorn-dynamic-import@^4.0.0:
|
|
1339
|
-
version "4.0.0"
|
|
1340
|
-
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948"
|
|
1341
|
-
integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==
|
|
1342
|
-
|
|
1343
1376
|
acorn-globals@^4.1.0:
|
|
1344
1377
|
version "4.3.0"
|
|
1345
1378
|
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103"
|
|
@@ -1363,25 +1396,25 @@ acorn@^5.5.3:
|
|
|
1363
1396
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
|
|
1364
1397
|
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
|
|
1365
1398
|
|
|
1366
|
-
acorn@^6.0.1, acorn@^6.0.
|
|
1367
|
-
version "6.1
|
|
1368
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.
|
|
1369
|
-
integrity sha512-
|
|
1399
|
+
acorn@^6.0.1, acorn@^6.0.7, acorn@^6.2.1:
|
|
1400
|
+
version "6.2.1"
|
|
1401
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51"
|
|
1402
|
+
integrity sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q==
|
|
1370
1403
|
|
|
1371
1404
|
ajv-errors@^1.0.0:
|
|
1372
1405
|
version "1.0.1"
|
|
1373
1406
|
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
|
|
1374
1407
|
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
|
|
1375
1408
|
|
|
1376
|
-
ajv-keywords@^3.1.0:
|
|
1377
|
-
version "3.4.
|
|
1378
|
-
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.
|
|
1379
|
-
integrity sha512-
|
|
1409
|
+
ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
|
|
1410
|
+
version "3.4.1"
|
|
1411
|
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
|
|
1412
|
+
integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
|
|
1380
1413
|
|
|
1381
|
-
ajv@^6.1.0, ajv@^6.5.5, ajv@^6.9.1:
|
|
1382
|
-
version "6.
|
|
1383
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.
|
|
1384
|
-
integrity sha512-
|
|
1414
|
+
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1:
|
|
1415
|
+
version "6.10.2"
|
|
1416
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
|
|
1417
|
+
integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
|
|
1385
1418
|
dependencies:
|
|
1386
1419
|
fast-deep-equal "^2.0.1"
|
|
1387
1420
|
fast-json-stable-stringify "^2.0.0"
|
|
@@ -1408,6 +1441,11 @@ ansi-regex@^4.0.0:
|
|
|
1408
1441
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9"
|
|
1409
1442
|
integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==
|
|
1410
1443
|
|
|
1444
|
+
ansi-regex@^4.1.0:
|
|
1445
|
+
version "4.1.0"
|
|
1446
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
|
1447
|
+
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
|
1448
|
+
|
|
1411
1449
|
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
1412
1450
|
version "3.2.1"
|
|
1413
1451
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
@@ -1423,13 +1461,6 @@ anymatch@^2.0.0:
|
|
|
1423
1461
|
micromatch "^3.1.4"
|
|
1424
1462
|
normalize-path "^2.1.1"
|
|
1425
1463
|
|
|
1426
|
-
append-transform@^1.0.0:
|
|
1427
|
-
version "1.0.0"
|
|
1428
|
-
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
|
|
1429
|
-
integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==
|
|
1430
|
-
dependencies:
|
|
1431
|
-
default-require-extensions "^2.0.0"
|
|
1432
|
-
|
|
1433
1464
|
aproba@^1.0.3, aproba@^1.1.1:
|
|
1434
1465
|
version "1.2.0"
|
|
1435
1466
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
|
@@ -1450,7 +1481,7 @@ argparse@^1.0.7:
|
|
|
1450
1481
|
dependencies:
|
|
1451
1482
|
sprintf-js "~1.0.2"
|
|
1452
1483
|
|
|
1453
|
-
aria-query@^3.0.0:
|
|
1484
|
+
aria-query@3.0.0, aria-query@^3.0.0:
|
|
1454
1485
|
version "3.0.0"
|
|
1455
1486
|
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"
|
|
1456
1487
|
integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=
|
|
@@ -1549,7 +1580,7 @@ async-limiter@~1.0.0:
|
|
|
1549
1580
|
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
|
|
1550
1581
|
integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==
|
|
1551
1582
|
|
|
1552
|
-
async@^2.5.0
|
|
1583
|
+
async@^2.5.0:
|
|
1553
1584
|
version "2.6.2"
|
|
1554
1585
|
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
|
|
1555
1586
|
integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==
|
|
@@ -1595,13 +1626,13 @@ babel-eslint@^10.0.1:
|
|
|
1595
1626
|
eslint-scope "3.7.1"
|
|
1596
1627
|
eslint-visitor-keys "^1.0.0"
|
|
1597
1628
|
|
|
1598
|
-
babel-jest@^24.
|
|
1599
|
-
version "24.
|
|
1600
|
-
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.
|
|
1601
|
-
integrity sha512
|
|
1629
|
+
babel-jest@^24.8.0:
|
|
1630
|
+
version "24.8.0"
|
|
1631
|
+
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589"
|
|
1632
|
+
integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==
|
|
1602
1633
|
dependencies:
|
|
1603
|
-
"@jest/transform" "^24.
|
|
1604
|
-
"@jest/types" "^24.
|
|
1634
|
+
"@jest/transform" "^24.8.0"
|
|
1635
|
+
"@jest/types" "^24.8.0"
|
|
1605
1636
|
"@types/babel__core" "^7.1.0"
|
|
1606
1637
|
babel-plugin-istanbul "^5.1.0"
|
|
1607
1638
|
babel-preset-jest "^24.6.0"
|
|
@@ -1618,6 +1649,13 @@ babel-loader@^8.0.6:
|
|
|
1618
1649
|
mkdirp "^0.5.1"
|
|
1619
1650
|
pify "^4.0.1"
|
|
1620
1651
|
|
|
1652
|
+
babel-plugin-dynamic-import-node@^2.3.0:
|
|
1653
|
+
version "2.3.0"
|
|
1654
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
|
|
1655
|
+
integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
|
|
1656
|
+
dependencies:
|
|
1657
|
+
object.assign "^4.1.0"
|
|
1658
|
+
|
|
1621
1659
|
babel-plugin-istanbul@^5.1.0:
|
|
1622
1660
|
version "5.1.1"
|
|
1623
1661
|
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893"
|
|
@@ -1682,10 +1720,10 @@ binary-extensions@^1.0.0:
|
|
|
1682
1720
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1"
|
|
1683
1721
|
integrity sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==
|
|
1684
1722
|
|
|
1685
|
-
bluebird@^3.5.
|
|
1686
|
-
version "3.5.
|
|
1687
|
-
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.
|
|
1688
|
-
integrity sha512
|
|
1723
|
+
bluebird@^3.5.5:
|
|
1724
|
+
version "3.5.5"
|
|
1725
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f"
|
|
1726
|
+
integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
|
|
1689
1727
|
|
|
1690
1728
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
|
1691
1729
|
version "4.11.8"
|
|
@@ -1792,14 +1830,14 @@ browserify-zlib@^0.2.0:
|
|
|
1792
1830
|
dependencies:
|
|
1793
1831
|
pako "~1.0.5"
|
|
1794
1832
|
|
|
1795
|
-
browserslist@^4.
|
|
1796
|
-
version "4.
|
|
1797
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
|
1798
|
-
integrity sha512-
|
|
1833
|
+
browserslist@^4.6.0:
|
|
1834
|
+
version "4.6.0"
|
|
1835
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.0.tgz#5274028c26f4d933d5b1323307c1d1da5084c9ff"
|
|
1836
|
+
integrity sha512-Jk0YFwXBuMOOol8n6FhgkDzn3mY9PYLYGk29zybF05SbRTsMgPqmTNeQQhOghCxq5oFqAXE3u4sYddr4C0uRhg==
|
|
1799
1837
|
dependencies:
|
|
1800
|
-
caniuse-lite "^1.0.
|
|
1801
|
-
electron-to-chromium "^1.3.
|
|
1802
|
-
node-releases "^1.1.
|
|
1838
|
+
caniuse-lite "^1.0.30000967"
|
|
1839
|
+
electron-to-chromium "^1.3.133"
|
|
1840
|
+
node-releases "^1.1.19"
|
|
1803
1841
|
|
|
1804
1842
|
bser@^2.0.0:
|
|
1805
1843
|
version "2.0.0"
|
|
@@ -1832,22 +1870,23 @@ builtin-status-codes@^3.0.0:
|
|
|
1832
1870
|
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
|
1833
1871
|
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
|
|
1834
1872
|
|
|
1835
|
-
cacache@^
|
|
1836
|
-
version "
|
|
1837
|
-
resolved "https://registry.yarnpkg.com/cacache/-/cacache-
|
|
1838
|
-
integrity sha512-
|
|
1873
|
+
cacache@^12.0.2:
|
|
1874
|
+
version "12.0.2"
|
|
1875
|
+
resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.2.tgz#8db03205e36089a3df6954c66ce92541441ac46c"
|
|
1876
|
+
integrity sha512-ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg==
|
|
1839
1877
|
dependencies:
|
|
1840
|
-
bluebird "^3.5.
|
|
1878
|
+
bluebird "^3.5.5"
|
|
1841
1879
|
chownr "^1.1.1"
|
|
1842
1880
|
figgy-pudding "^3.5.1"
|
|
1843
|
-
glob "^7.1.
|
|
1881
|
+
glob "^7.1.4"
|
|
1844
1882
|
graceful-fs "^4.1.15"
|
|
1883
|
+
infer-owner "^1.0.3"
|
|
1845
1884
|
lru-cache "^5.1.1"
|
|
1846
1885
|
mississippi "^3.0.0"
|
|
1847
1886
|
mkdirp "^0.5.1"
|
|
1848
1887
|
move-concurrently "^1.0.1"
|
|
1849
1888
|
promise-inflight "^1.0.1"
|
|
1850
|
-
rimraf "^2.6.
|
|
1889
|
+
rimraf "^2.6.3"
|
|
1851
1890
|
ssri "^6.0.1"
|
|
1852
1891
|
unique-filename "^1.1.1"
|
|
1853
1892
|
y18n "^4.0.0"
|
|
@@ -1877,10 +1916,10 @@ camelcase@^5.0.0:
|
|
|
1877
1916
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
|
|
1878
1917
|
integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
|
|
1879
1918
|
|
|
1880
|
-
caniuse-lite@^1.0.
|
|
1881
|
-
version "1.0.
|
|
1882
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
|
1883
|
-
integrity sha512-
|
|
1919
|
+
caniuse-lite@^1.0.30000967:
|
|
1920
|
+
version "1.0.30000971"
|
|
1921
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000971.tgz#d1000e4546486a6977756547352bc96a4cfd2b13"
|
|
1922
|
+
integrity sha512-TQFYFhRS0O5rdsmSbF1Wn+16latXYsQJat66f7S7lizXW1PVpWJeZw9wqqVLIjuxDRz7s7xRUj13QCfd8hKn6g==
|
|
1884
1923
|
|
|
1885
1924
|
capture-exit@^2.0.0:
|
|
1886
1925
|
version "2.0.0"
|
|
@@ -1894,7 +1933,7 @@ caseless@~0.12.0:
|
|
|
1894
1933
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
|
1895
1934
|
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
|
|
1896
1935
|
|
|
1897
|
-
chalk
|
|
1936
|
+
chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2:
|
|
1898
1937
|
version "2.4.2"
|
|
1899
1938
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
1900
1939
|
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
|
@@ -1951,10 +1990,10 @@ chownr@^1.1.1:
|
|
|
1951
1990
|
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
|
|
1952
1991
|
integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==
|
|
1953
1992
|
|
|
1954
|
-
chrome-trace-event@^1.0.
|
|
1955
|
-
version "1.0.
|
|
1956
|
-
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.
|
|
1957
|
-
integrity sha512-
|
|
1993
|
+
chrome-trace-event@^1.0.2:
|
|
1994
|
+
version "1.0.2"
|
|
1995
|
+
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
|
|
1996
|
+
integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
|
|
1958
1997
|
dependencies:
|
|
1959
1998
|
tslib "^1.9.0"
|
|
1960
1999
|
|
|
@@ -2002,6 +2041,15 @@ cliui@^4.0.0:
|
|
|
2002
2041
|
strip-ansi "^4.0.0"
|
|
2003
2042
|
wrap-ansi "^2.0.0"
|
|
2004
2043
|
|
|
2044
|
+
cliui@^5.0.0:
|
|
2045
|
+
version "5.0.0"
|
|
2046
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
|
|
2047
|
+
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
|
|
2048
|
+
dependencies:
|
|
2049
|
+
string-width "^3.1.0"
|
|
2050
|
+
strip-ansi "^5.2.0"
|
|
2051
|
+
wrap-ansi "^5.1.0"
|
|
2052
|
+
|
|
2005
2053
|
co@^4.6.0:
|
|
2006
2054
|
version "4.6.0"
|
|
2007
2055
|
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
|
@@ -2044,6 +2092,11 @@ commander@^2.11.0, commander@^2.8.1:
|
|
|
2044
2092
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
|
|
2045
2093
|
integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
|
|
2046
2094
|
|
|
2095
|
+
commander@^2.20.0:
|
|
2096
|
+
version "2.20.0"
|
|
2097
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
|
|
2098
|
+
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
|
|
2099
|
+
|
|
2047
2100
|
commander@~2.17.1:
|
|
2048
2101
|
version "2.17.1"
|
|
2049
2102
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
|
|
@@ -2054,11 +2107,6 @@ commondir@^1.0.1:
|
|
|
2054
2107
|
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
|
2055
2108
|
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
|
|
2056
2109
|
|
|
2057
|
-
compare-versions@^3.2.1:
|
|
2058
|
-
version "3.4.0"
|
|
2059
|
-
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26"
|
|
2060
|
-
integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg==
|
|
2061
|
-
|
|
2062
2110
|
component-emitter@^1.2.1:
|
|
2063
2111
|
version "1.2.1"
|
|
2064
2112
|
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
|
|
@@ -2125,25 +2173,19 @@ copy-descriptor@^0.1.0:
|
|
|
2125
2173
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
|
2126
2174
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
|
2127
2175
|
|
|
2128
|
-
core-js-compat@^3.
|
|
2129
|
-
version "3.
|
|
2130
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
|
2131
|
-
integrity sha512-
|
|
2176
|
+
core-js-compat@^3.1.1:
|
|
2177
|
+
version "3.1.3"
|
|
2178
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz#0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14"
|
|
2179
|
+
integrity sha512-EP018pVhgwsKHz3YoN1hTq49aRe+h017Kjz0NQz3nXV0cCRMvH3fLQl+vEPGr4r4J5sk4sU3tUC7U1aqTCeJeA==
|
|
2132
2180
|
dependencies:
|
|
2133
|
-
browserslist "^4.
|
|
2134
|
-
core-js "3.
|
|
2135
|
-
|
|
2136
|
-
semver "^6.0.0"
|
|
2181
|
+
browserslist "^4.6.0"
|
|
2182
|
+
core-js-pure "3.1.3"
|
|
2183
|
+
semver "^6.1.0"
|
|
2137
2184
|
|
|
2138
|
-
core-js-pure@3.
|
|
2139
|
-
version "3.
|
|
2140
|
-
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.
|
|
2141
|
-
integrity sha512-
|
|
2142
|
-
|
|
2143
|
-
core-js@3.0.1:
|
|
2144
|
-
version "3.0.1"
|
|
2145
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.0.1.tgz#1343182634298f7f38622f95e73f54e48ddf4738"
|
|
2146
|
-
integrity sha512-sco40rF+2KlE0ROMvydjkrVMMG1vYilP2ALoRXcYR4obqbYIuV3Bg+51GEDW+HF8n7NRA+iaA4qD0nD9lo9mew==
|
|
2185
|
+
core-js-pure@3.1.3:
|
|
2186
|
+
version "3.1.3"
|
|
2187
|
+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz#4c90752d5b9471f641514f3728f51c1e0783d0b5"
|
|
2188
|
+
integrity sha512-k3JWTrcQBKqjkjI0bkfXS0lbpWPxYuHWfMMjC1VDmzU4Q58IwSbuXSo99YO/hUHlw/EB4AlfA2PVxOGkrIq6dA==
|
|
2147
2189
|
|
|
2148
2190
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
|
2149
2191
|
version "1.0.2"
|
|
@@ -2181,7 +2223,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
|
|
|
2181
2223
|
safe-buffer "^5.0.1"
|
|
2182
2224
|
sha.js "^2.4.8"
|
|
2183
2225
|
|
|
2184
|
-
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
|
|
2226
|
+
cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
|
|
2185
2227
|
version "6.0.5"
|
|
2186
2228
|
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
|
|
2187
2229
|
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
|
|
@@ -2286,13 +2328,6 @@ deep-is@~0.1.3:
|
|
|
2286
2328
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
|
2287
2329
|
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
|
2288
2330
|
|
|
2289
|
-
default-require-extensions@^2.0.0:
|
|
2290
|
-
version "2.0.0"
|
|
2291
|
-
resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
|
|
2292
|
-
integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=
|
|
2293
|
-
dependencies:
|
|
2294
|
-
strip-bom "^3.0.0"
|
|
2295
|
-
|
|
2296
2331
|
define-properties@^1.1.2, define-properties@^1.1.3:
|
|
2297
2332
|
version "1.1.3"
|
|
2298
2333
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
|
@@ -2391,16 +2426,6 @@ doctrine@^3.0.0:
|
|
|
2391
2426
|
dependencies:
|
|
2392
2427
|
esutils "^2.0.2"
|
|
2393
2428
|
|
|
2394
|
-
dom-testing-library@^4.0.0:
|
|
2395
|
-
version "4.1.0"
|
|
2396
|
-
resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-4.1.0.tgz#273264e62e9e63f4e404f7349ddd7b9356aacd23"
|
|
2397
|
-
integrity sha512-654GHd0oPC31S+ll1bJH9NUOBRzcHcrf23/XzJh41o6g67uGUpF9tn23qmbcwjNauoRqKQfAdHCDwr/Ez/Ot7A==
|
|
2398
|
-
dependencies:
|
|
2399
|
-
"@babel/runtime" "^7.4.3"
|
|
2400
|
-
"@sheerun/mutationobserver-shim" "^0.3.2"
|
|
2401
|
-
pretty-format "^24.7.0"
|
|
2402
|
-
wait-for-expect "^1.1.1"
|
|
2403
|
-
|
|
2404
2429
|
domain-browser@^1.1.1:
|
|
2405
2430
|
version "1.2.0"
|
|
2406
2431
|
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
|
|
@@ -2431,10 +2456,10 @@ ecc-jsbn@~0.1.1:
|
|
|
2431
2456
|
jsbn "~0.1.0"
|
|
2432
2457
|
safer-buffer "^2.1.0"
|
|
2433
2458
|
|
|
2434
|
-
electron-to-chromium@^1.3.
|
|
2435
|
-
version "1.3.
|
|
2436
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
|
2437
|
-
integrity sha512-
|
|
2459
|
+
electron-to-chromium@^1.3.133:
|
|
2460
|
+
version "1.3.137"
|
|
2461
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.137.tgz#ba7c88024984c038a5c5c434529aabcea7b42944"
|
|
2462
|
+
integrity sha512-kGi32g42a8vS/WnYE7ELJyejRT7hbr3UeOOu0WeuYuQ29gCpg9Lrf6RdcTQVXSt/v0bjCfnlb/EWOOsiKpTmkw==
|
|
2438
2463
|
|
|
2439
2464
|
elliptic@^6.0.0:
|
|
2440
2465
|
version "6.4.1"
|
|
@@ -2466,7 +2491,7 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0:
|
|
|
2466
2491
|
dependencies:
|
|
2467
2492
|
once "^1.4.0"
|
|
2468
2493
|
|
|
2469
|
-
enhanced-resolve@^4.1.0:
|
|
2494
|
+
enhanced-resolve@4.1.0, enhanced-resolve@^4.1.0:
|
|
2470
2495
|
version "4.1.0"
|
|
2471
2496
|
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f"
|
|
2472
2497
|
integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==
|
|
@@ -2553,10 +2578,10 @@ eslint-import-resolver-node@^0.3.2:
|
|
|
2553
2578
|
debug "^2.6.9"
|
|
2554
2579
|
resolve "^1.5.0"
|
|
2555
2580
|
|
|
2556
|
-
eslint-module-utils@^2.
|
|
2557
|
-
version "2.
|
|
2558
|
-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.
|
|
2559
|
-
integrity sha512-
|
|
2581
|
+
eslint-module-utils@^2.4.0:
|
|
2582
|
+
version "2.4.0"
|
|
2583
|
+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a"
|
|
2584
|
+
integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw==
|
|
2560
2585
|
dependencies:
|
|
2561
2586
|
debug "^2.6.8"
|
|
2562
2587
|
pkg-dir "^2.0.0"
|
|
@@ -2571,21 +2596,22 @@ eslint-plugin-filenames@^1.3.2:
|
|
|
2571
2596
|
lodash.snakecase "4.1.1"
|
|
2572
2597
|
lodash.upperfirst "4.3.1"
|
|
2573
2598
|
|
|
2574
|
-
eslint-plugin-import@^2.
|
|
2575
|
-
version "2.
|
|
2576
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.
|
|
2577
|
-
integrity sha512-
|
|
2599
|
+
eslint-plugin-import@^2.18.0:
|
|
2600
|
+
version "2.18.0"
|
|
2601
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.0.tgz#7a5ba8d32622fb35eb9c8db195c2090bd18a3678"
|
|
2602
|
+
integrity sha512-PZpAEC4gj/6DEMMoU2Df01C5c50r7zdGIN52Yfi7CvvWaYssG7Jt5R9nFG5gmqodxNOz9vQS87xk6Izdtpdrig==
|
|
2578
2603
|
dependencies:
|
|
2604
|
+
array-includes "^3.0.3"
|
|
2579
2605
|
contains-path "^0.1.0"
|
|
2580
2606
|
debug "^2.6.9"
|
|
2581
2607
|
doctrine "1.5.0"
|
|
2582
2608
|
eslint-import-resolver-node "^0.3.2"
|
|
2583
|
-
eslint-module-utils "^2.
|
|
2609
|
+
eslint-module-utils "^2.4.0"
|
|
2584
2610
|
has "^1.0.3"
|
|
2585
2611
|
lodash "^4.17.11"
|
|
2586
2612
|
minimatch "^3.0.4"
|
|
2587
2613
|
read-pkg-up "^2.0.0"
|
|
2588
|
-
resolve "^1.
|
|
2614
|
+
resolve "^1.11.0"
|
|
2589
2615
|
|
|
2590
2616
|
eslint-plugin-jsx-a11y@^6.2.1:
|
|
2591
2617
|
version "6.2.1"
|
|
@@ -2601,23 +2627,25 @@ eslint-plugin-jsx-a11y@^6.2.1:
|
|
|
2601
2627
|
has "^1.0.3"
|
|
2602
2628
|
jsx-ast-utils "^2.0.1"
|
|
2603
2629
|
|
|
2604
|
-
eslint-plugin-react-hooks@^1.
|
|
2605
|
-
version "1.6.
|
|
2606
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.6.
|
|
2607
|
-
integrity sha512-
|
|
2630
|
+
eslint-plugin-react-hooks@^1.6.1:
|
|
2631
|
+
version "1.6.1"
|
|
2632
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.6.1.tgz#3c66a5515ea3e0a221ffc5d4e75c971c217b1a4c"
|
|
2633
|
+
integrity sha512-wHhmGJyVuijnYIJXZJHDUF2WM+rJYTjulUTqF9k61d3BTk8etydz+M4dXUVH7M76ZRS85rqBTCx0Es/lLsrjnA==
|
|
2608
2634
|
|
|
2609
|
-
eslint-plugin-react@^7.
|
|
2610
|
-
version "7.
|
|
2611
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.
|
|
2612
|
-
integrity sha512-
|
|
2635
|
+
eslint-plugin-react@^7.14.2:
|
|
2636
|
+
version "7.14.2"
|
|
2637
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.2.tgz#94c193cc77a899ac0ecbb2766fbef88685b7ecc1"
|
|
2638
|
+
integrity sha512-jZdnKe3ip7FQOdjxks9XPN0pjUKZYq48OggNMd16Sk+8VXx6JOvXmlElxROCgp7tiUsTsze3jd78s/9AFJP2mA==
|
|
2613
2639
|
dependencies:
|
|
2614
2640
|
array-includes "^3.0.3"
|
|
2615
2641
|
doctrine "^2.1.0"
|
|
2616
2642
|
has "^1.0.3"
|
|
2617
|
-
jsx-ast-utils "^2.0
|
|
2643
|
+
jsx-ast-utils "^2.1.0"
|
|
2644
|
+
object.entries "^1.1.0"
|
|
2618
2645
|
object.fromentries "^2.0.0"
|
|
2619
|
-
|
|
2620
|
-
|
|
2646
|
+
object.values "^1.1.0"
|
|
2647
|
+
prop-types "^15.7.2"
|
|
2648
|
+
resolve "^1.10.1"
|
|
2621
2649
|
|
|
2622
2650
|
eslint-restricted-globals@^0.1.1:
|
|
2623
2651
|
version "0.1.1"
|
|
@@ -2632,14 +2660,6 @@ eslint-scope@3.7.1:
|
|
|
2632
2660
|
esrecurse "^4.1.0"
|
|
2633
2661
|
estraverse "^4.1.1"
|
|
2634
2662
|
|
|
2635
|
-
eslint-scope@^4.0.0:
|
|
2636
|
-
version "4.0.0"
|
|
2637
|
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172"
|
|
2638
|
-
integrity sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==
|
|
2639
|
-
dependencies:
|
|
2640
|
-
esrecurse "^4.1.0"
|
|
2641
|
-
estraverse "^4.1.1"
|
|
2642
|
-
|
|
2643
2663
|
eslint-scope@^4.0.3:
|
|
2644
2664
|
version "4.0.3"
|
|
2645
2665
|
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
|
|
@@ -2658,13 +2678,13 @@ eslint-visitor-keys@^1.0.0:
|
|
|
2658
2678
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
|
2659
2679
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
|
2660
2680
|
|
|
2661
|
-
eslint@^
|
|
2662
|
-
version "
|
|
2663
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-
|
|
2664
|
-
integrity sha512-
|
|
2681
|
+
eslint@^6.0.0:
|
|
2682
|
+
version "6.0.1"
|
|
2683
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.0.1.tgz#4a32181d72cb999d6f54151df7d337131f81cda7"
|
|
2684
|
+
integrity sha512-DyQRaMmORQ+JsWShYsSg4OPTjY56u1nCjAmICrE8vLWqyLKxhFXOthwMj1SA8xwfrv0CofLNVnqbfyhwCkaO0w==
|
|
2665
2685
|
dependencies:
|
|
2666
2686
|
"@babel/code-frame" "^7.0.0"
|
|
2667
|
-
ajv "^6.
|
|
2687
|
+
ajv "^6.10.0"
|
|
2668
2688
|
chalk "^2.1.0"
|
|
2669
2689
|
cross-spawn "^6.0.5"
|
|
2670
2690
|
debug "^4.0.1"
|
|
@@ -2672,18 +2692,19 @@ eslint@^5.16.0:
|
|
|
2672
2692
|
eslint-scope "^4.0.3"
|
|
2673
2693
|
eslint-utils "^1.3.1"
|
|
2674
2694
|
eslint-visitor-keys "^1.0.0"
|
|
2675
|
-
espree "^
|
|
2695
|
+
espree "^6.0.0"
|
|
2676
2696
|
esquery "^1.0.1"
|
|
2677
2697
|
esutils "^2.0.2"
|
|
2678
2698
|
file-entry-cache "^5.0.1"
|
|
2679
2699
|
functional-red-black-tree "^1.0.1"
|
|
2680
|
-
glob "^
|
|
2700
|
+
glob-parent "^3.1.0"
|
|
2681
2701
|
globals "^11.7.0"
|
|
2682
2702
|
ignore "^4.0.6"
|
|
2683
2703
|
import-fresh "^3.0.0"
|
|
2684
2704
|
imurmurhash "^0.1.4"
|
|
2685
2705
|
inquirer "^6.2.2"
|
|
2686
|
-
|
|
2706
|
+
is-glob "^4.0.0"
|
|
2707
|
+
js-yaml "^3.13.1"
|
|
2687
2708
|
json-stable-stringify-without-jsonify "^1.0.1"
|
|
2688
2709
|
levn "^0.3.0"
|
|
2689
2710
|
lodash "^4.17.11"
|
|
@@ -2691,7 +2712,6 @@ eslint@^5.16.0:
|
|
|
2691
2712
|
mkdirp "^0.5.1"
|
|
2692
2713
|
natural-compare "^1.4.0"
|
|
2693
2714
|
optionator "^0.8.2"
|
|
2694
|
-
path-is-inside "^1.0.2"
|
|
2695
2715
|
progress "^2.0.0"
|
|
2696
2716
|
regexpp "^2.0.1"
|
|
2697
2717
|
semver "^5.5.1"
|
|
@@ -2700,10 +2720,10 @@ eslint@^5.16.0:
|
|
|
2700
2720
|
table "^5.2.3"
|
|
2701
2721
|
text-table "^0.2.0"
|
|
2702
2722
|
|
|
2703
|
-
espree@^
|
|
2704
|
-
version "
|
|
2705
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-
|
|
2706
|
-
integrity sha512-
|
|
2723
|
+
espree@^6.0.0:
|
|
2724
|
+
version "6.0.0"
|
|
2725
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-6.0.0.tgz#716fc1f5a245ef5b9a7fdb1d7b0d3f02322e75f6"
|
|
2726
|
+
integrity sha512-lJvCS6YbCn3ImT3yKkPe0+tJ+mH6ljhGNjHQH9mRtiO6gjhVAOhVXW1yjnwqGwTkK3bGbye+hb00nFNmu0l/1Q==
|
|
2707
2727
|
dependencies:
|
|
2708
2728
|
acorn "^6.0.7"
|
|
2709
2729
|
acorn-jsx "^5.0.0"
|
|
@@ -2799,16 +2819,16 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
|
|
|
2799
2819
|
dependencies:
|
|
2800
2820
|
homedir-polyfill "^1.0.1"
|
|
2801
2821
|
|
|
2802
|
-
expect@^24.
|
|
2803
|
-
version "24.
|
|
2804
|
-
resolved "https://registry.yarnpkg.com/expect/-/expect-24.
|
|
2805
|
-
integrity sha512
|
|
2822
|
+
expect@^24.8.0:
|
|
2823
|
+
version "24.8.0"
|
|
2824
|
+
resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d"
|
|
2825
|
+
integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==
|
|
2806
2826
|
dependencies:
|
|
2807
|
-
"@jest/types" "^24.
|
|
2827
|
+
"@jest/types" "^24.8.0"
|
|
2808
2828
|
ansi-styles "^3.2.0"
|
|
2809
|
-
jest-get-type "^24.
|
|
2810
|
-
jest-matcher-utils "^24.
|
|
2811
|
-
jest-message-util "^24.
|
|
2829
|
+
jest-get-type "^24.8.0"
|
|
2830
|
+
jest-matcher-utils "^24.8.0"
|
|
2831
|
+
jest-message-util "^24.8.0"
|
|
2812
2832
|
jest-regex-util "^24.3.0"
|
|
2813
2833
|
|
|
2814
2834
|
extend-shallow@^2.0.1:
|
|
@@ -2905,14 +2925,6 @@ file-entry-cache@^5.0.1:
|
|
|
2905
2925
|
dependencies:
|
|
2906
2926
|
flat-cache "^2.0.1"
|
|
2907
2927
|
|
|
2908
|
-
fileset@^2.0.3:
|
|
2909
|
-
version "2.0.3"
|
|
2910
|
-
resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
|
|
2911
|
-
integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
|
|
2912
|
-
dependencies:
|
|
2913
|
-
glob "^7.0.3"
|
|
2914
|
-
minimatch "^3.0.3"
|
|
2915
|
-
|
|
2916
2928
|
fill-range@^4.0.0:
|
|
2917
2929
|
version "4.0.0"
|
|
2918
2930
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
|
|
@@ -2932,6 +2944,15 @@ find-cache-dir@^2.0.0:
|
|
|
2932
2944
|
make-dir "^1.0.0"
|
|
2933
2945
|
pkg-dir "^3.0.0"
|
|
2934
2946
|
|
|
2947
|
+
find-cache-dir@^2.1.0:
|
|
2948
|
+
version "2.1.0"
|
|
2949
|
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
|
|
2950
|
+
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
|
|
2951
|
+
dependencies:
|
|
2952
|
+
commondir "^1.0.1"
|
|
2953
|
+
make-dir "^2.0.0"
|
|
2954
|
+
pkg-dir "^3.0.0"
|
|
2955
|
+
|
|
2935
2956
|
find-up@^2.0.0, find-up@^2.1.0:
|
|
2936
2957
|
version "2.1.0"
|
|
2937
2958
|
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
|
@@ -2946,13 +2967,13 @@ find-up@^3.0.0:
|
|
|
2946
2967
|
dependencies:
|
|
2947
2968
|
locate-path "^3.0.0"
|
|
2948
2969
|
|
|
2949
|
-
findup-sync
|
|
2950
|
-
version "
|
|
2951
|
-
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-
|
|
2952
|
-
integrity
|
|
2970
|
+
findup-sync@3.0.0:
|
|
2971
|
+
version "3.0.0"
|
|
2972
|
+
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"
|
|
2973
|
+
integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==
|
|
2953
2974
|
dependencies:
|
|
2954
2975
|
detect-file "^1.0.0"
|
|
2955
|
-
is-glob "^
|
|
2976
|
+
is-glob "^4.0.0"
|
|
2956
2977
|
micromatch "^3.0.4"
|
|
2957
2978
|
resolve-dir "^1.0.1"
|
|
2958
2979
|
|
|
@@ -3076,6 +3097,11 @@ get-caller-file@^1.0.1:
|
|
|
3076
3097
|
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
|
|
3077
3098
|
integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
|
|
3078
3099
|
|
|
3100
|
+
get-caller-file@^2.0.1:
|
|
3101
|
+
version "2.0.5"
|
|
3102
|
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
|
3103
|
+
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
|
3104
|
+
|
|
3079
3105
|
get-stream@^4.0.0:
|
|
3080
3106
|
version "4.1.0"
|
|
3081
3107
|
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
|
|
@@ -3103,7 +3129,7 @@ glob-parent@^3.1.0:
|
|
|
3103
3129
|
is-glob "^3.1.0"
|
|
3104
3130
|
path-dirname "^1.0.0"
|
|
3105
3131
|
|
|
3106
|
-
glob@^7.0.0, glob@^7.
|
|
3132
|
+
glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
|
|
3107
3133
|
version "7.1.3"
|
|
3108
3134
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
|
|
3109
3135
|
integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
|
|
@@ -3115,6 +3141,25 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
|
|
|
3115
3141
|
once "^1.3.0"
|
|
3116
3142
|
path-is-absolute "^1.0.0"
|
|
3117
3143
|
|
|
3144
|
+
glob@^7.1.4:
|
|
3145
|
+
version "7.1.4"
|
|
3146
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
|
|
3147
|
+
integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
|
|
3148
|
+
dependencies:
|
|
3149
|
+
fs.realpath "^1.0.0"
|
|
3150
|
+
inflight "^1.0.4"
|
|
3151
|
+
inherits "2"
|
|
3152
|
+
minimatch "^3.0.4"
|
|
3153
|
+
once "^1.3.0"
|
|
3154
|
+
path-is-absolute "^1.0.0"
|
|
3155
|
+
|
|
3156
|
+
global-modules@2.0.0:
|
|
3157
|
+
version "2.0.0"
|
|
3158
|
+
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
|
|
3159
|
+
integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
|
|
3160
|
+
dependencies:
|
|
3161
|
+
global-prefix "^3.0.0"
|
|
3162
|
+
|
|
3118
3163
|
global-modules@^1.0.0:
|
|
3119
3164
|
version "1.0.0"
|
|
3120
3165
|
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
|
|
@@ -3135,6 +3180,15 @@ global-prefix@^1.0.1:
|
|
|
3135
3180
|
is-windows "^1.0.1"
|
|
3136
3181
|
which "^1.2.14"
|
|
3137
3182
|
|
|
3183
|
+
global-prefix@^3.0.0:
|
|
3184
|
+
version "3.0.0"
|
|
3185
|
+
resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
|
|
3186
|
+
integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
|
|
3187
|
+
dependencies:
|
|
3188
|
+
ini "^1.3.5"
|
|
3189
|
+
kind-of "^6.0.2"
|
|
3190
|
+
which "^1.3.1"
|
|
3191
|
+
|
|
3138
3192
|
globals@^11.1.0, globals@^11.7.0:
|
|
3139
3193
|
version "11.11.0"
|
|
3140
3194
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e"
|
|
@@ -3322,7 +3376,7 @@ import-fresh@^3.0.0:
|
|
|
3322
3376
|
parent-module "^1.0.0"
|
|
3323
3377
|
resolve-from "^4.0.0"
|
|
3324
3378
|
|
|
3325
|
-
import-local@^2.0.0:
|
|
3379
|
+
import-local@2.0.0, import-local@^2.0.0:
|
|
3326
3380
|
version "2.0.0"
|
|
3327
3381
|
resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
|
|
3328
3382
|
integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
|
|
@@ -3335,10 +3389,10 @@ imurmurhash@^0.1.4:
|
|
|
3335
3389
|
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
|
3336
3390
|
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
|
|
3337
3391
|
|
|
3338
|
-
|
|
3339
|
-
version "
|
|
3340
|
-
resolved "https://registry.yarnpkg.com/
|
|
3341
|
-
integrity
|
|
3392
|
+
infer-owner@^1.0.3:
|
|
3393
|
+
version "1.0.4"
|
|
3394
|
+
resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
|
|
3395
|
+
integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
|
|
3342
3396
|
|
|
3343
3397
|
inflight@^1.0.4:
|
|
3344
3398
|
version "1.0.6"
|
|
@@ -3358,7 +3412,7 @@ inherits@2.0.1:
|
|
|
3358
3412
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
|
|
3359
3413
|
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
|
|
3360
3414
|
|
|
3361
|
-
ini@^1.3.4, ini@~1.3.0:
|
|
3415
|
+
ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
|
|
3362
3416
|
version "1.3.5"
|
|
3363
3417
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
|
3364
3418
|
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
|
|
@@ -3382,7 +3436,7 @@ inquirer@^6.2.2:
|
|
|
3382
3436
|
strip-ansi "^5.0.0"
|
|
3383
3437
|
through "^2.3.6"
|
|
3384
3438
|
|
|
3385
|
-
interpret
|
|
3439
|
+
interpret@1.2.0:
|
|
3386
3440
|
version "1.2.0"
|
|
3387
3441
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
|
|
3388
3442
|
integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
|
|
@@ -3612,38 +3666,12 @@ isstream@~0.1.2:
|
|
|
3612
3666
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
|
3613
3667
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
|
3614
3668
|
|
|
3615
|
-
istanbul-api@^2.1.1:
|
|
3616
|
-
version "2.1.1"
|
|
3617
|
-
resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0"
|
|
3618
|
-
integrity sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw==
|
|
3619
|
-
dependencies:
|
|
3620
|
-
async "^2.6.1"
|
|
3621
|
-
compare-versions "^3.2.1"
|
|
3622
|
-
fileset "^2.0.3"
|
|
3623
|
-
istanbul-lib-coverage "^2.0.3"
|
|
3624
|
-
istanbul-lib-hook "^2.0.3"
|
|
3625
|
-
istanbul-lib-instrument "^3.1.0"
|
|
3626
|
-
istanbul-lib-report "^2.0.4"
|
|
3627
|
-
istanbul-lib-source-maps "^3.0.2"
|
|
3628
|
-
istanbul-reports "^2.1.1"
|
|
3629
|
-
js-yaml "^3.12.0"
|
|
3630
|
-
make-dir "^1.3.0"
|
|
3631
|
-
minimatch "^3.0.4"
|
|
3632
|
-
once "^1.4.0"
|
|
3633
|
-
|
|
3634
3669
|
istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3:
|
|
3635
3670
|
version "2.0.3"
|
|
3636
3671
|
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba"
|
|
3637
3672
|
integrity sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==
|
|
3638
3673
|
|
|
3639
|
-
istanbul-lib-
|
|
3640
|
-
version "2.0.3"
|
|
3641
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz#e0e581e461c611be5d0e5ef31c5f0109759916fb"
|
|
3642
|
-
integrity sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA==
|
|
3643
|
-
dependencies:
|
|
3644
|
-
append-transform "^1.0.0"
|
|
3645
|
-
|
|
3646
|
-
istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.1.0:
|
|
3674
|
+
istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1:
|
|
3647
3675
|
version "3.1.0"
|
|
3648
3676
|
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz#a2b5484a7d445f1f311e93190813fa56dfb62971"
|
|
3649
3677
|
integrity sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA==
|
|
@@ -3665,7 +3693,7 @@ istanbul-lib-report@^2.0.4:
|
|
|
3665
3693
|
make-dir "^1.3.0"
|
|
3666
3694
|
supports-color "^6.0.0"
|
|
3667
3695
|
|
|
3668
|
-
istanbul-lib-source-maps@^3.0.1
|
|
3696
|
+
istanbul-lib-source-maps@^3.0.1:
|
|
3669
3697
|
version "3.0.2"
|
|
3670
3698
|
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz#f1e817229a9146e8424a28e5d69ba220fda34156"
|
|
3671
3699
|
integrity sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ==
|
|
@@ -3683,66 +3711,66 @@ istanbul-reports@^2.1.1:
|
|
|
3683
3711
|
dependencies:
|
|
3684
3712
|
handlebars "^4.1.0"
|
|
3685
3713
|
|
|
3686
|
-
jest-changed-files@^24.
|
|
3687
|
-
version "24.
|
|
3688
|
-
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.
|
|
3689
|
-
integrity sha512-
|
|
3714
|
+
jest-changed-files@^24.8.0:
|
|
3715
|
+
version "24.8.0"
|
|
3716
|
+
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b"
|
|
3717
|
+
integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==
|
|
3690
3718
|
dependencies:
|
|
3691
|
-
"@jest/types" "^24.
|
|
3719
|
+
"@jest/types" "^24.8.0"
|
|
3692
3720
|
execa "^1.0.0"
|
|
3693
3721
|
throat "^4.0.0"
|
|
3694
3722
|
|
|
3695
|
-
jest-cli@^24.
|
|
3696
|
-
version "24.
|
|
3697
|
-
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.
|
|
3698
|
-
integrity sha512
|
|
3723
|
+
jest-cli@^24.8.0:
|
|
3724
|
+
version "24.8.0"
|
|
3725
|
+
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989"
|
|
3726
|
+
integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==
|
|
3699
3727
|
dependencies:
|
|
3700
|
-
"@jest/core" "^24.
|
|
3701
|
-
"@jest/test-result" "^24.
|
|
3702
|
-
"@jest/types" "^24.
|
|
3728
|
+
"@jest/core" "^24.8.0"
|
|
3729
|
+
"@jest/test-result" "^24.8.0"
|
|
3730
|
+
"@jest/types" "^24.8.0"
|
|
3703
3731
|
chalk "^2.0.1"
|
|
3704
3732
|
exit "^0.1.2"
|
|
3705
3733
|
import-local "^2.0.0"
|
|
3706
3734
|
is-ci "^2.0.0"
|
|
3707
|
-
jest-config "^24.
|
|
3708
|
-
jest-util "^24.
|
|
3709
|
-
jest-validate "^24.
|
|
3735
|
+
jest-config "^24.8.0"
|
|
3736
|
+
jest-util "^24.8.0"
|
|
3737
|
+
jest-validate "^24.8.0"
|
|
3710
3738
|
prompts "^2.0.1"
|
|
3711
3739
|
realpath-native "^1.1.0"
|
|
3712
3740
|
yargs "^12.0.2"
|
|
3713
3741
|
|
|
3714
|
-
jest-config@^24.
|
|
3715
|
-
version "24.
|
|
3716
|
-
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.
|
|
3717
|
-
integrity sha512-
|
|
3742
|
+
jest-config@^24.8.0:
|
|
3743
|
+
version "24.8.0"
|
|
3744
|
+
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f"
|
|
3745
|
+
integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==
|
|
3718
3746
|
dependencies:
|
|
3719
3747
|
"@babel/core" "^7.1.0"
|
|
3720
|
-
"@jest/test-sequencer" "^24.
|
|
3721
|
-
"@jest/types" "^24.
|
|
3722
|
-
babel-jest "^24.
|
|
3748
|
+
"@jest/test-sequencer" "^24.8.0"
|
|
3749
|
+
"@jest/types" "^24.8.0"
|
|
3750
|
+
babel-jest "^24.8.0"
|
|
3723
3751
|
chalk "^2.0.1"
|
|
3724
3752
|
glob "^7.1.1"
|
|
3725
|
-
jest-environment-jsdom "^24.
|
|
3726
|
-
jest-environment-node "^24.
|
|
3727
|
-
jest-get-type "^24.
|
|
3728
|
-
jest-jasmine2 "^24.
|
|
3753
|
+
jest-environment-jsdom "^24.8.0"
|
|
3754
|
+
jest-environment-node "^24.8.0"
|
|
3755
|
+
jest-get-type "^24.8.0"
|
|
3756
|
+
jest-jasmine2 "^24.8.0"
|
|
3729
3757
|
jest-regex-util "^24.3.0"
|
|
3730
|
-
jest-resolve "^24.
|
|
3731
|
-
jest-util "^24.
|
|
3732
|
-
jest-validate "^24.
|
|
3758
|
+
jest-resolve "^24.8.0"
|
|
3759
|
+
jest-util "^24.8.0"
|
|
3760
|
+
jest-validate "^24.8.0"
|
|
3733
3761
|
micromatch "^3.1.10"
|
|
3734
|
-
pretty-format "^24.
|
|
3762
|
+
pretty-format "^24.8.0"
|
|
3735
3763
|
realpath-native "^1.1.0"
|
|
3736
3764
|
|
|
3737
|
-
jest-diff@^24.
|
|
3738
|
-
version "24.
|
|
3739
|
-
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.
|
|
3740
|
-
integrity sha512-
|
|
3765
|
+
jest-diff@^24.8.0:
|
|
3766
|
+
version "24.8.0"
|
|
3767
|
+
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172"
|
|
3768
|
+
integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==
|
|
3741
3769
|
dependencies:
|
|
3742
3770
|
chalk "^2.0.1"
|
|
3743
3771
|
diff-sequences "^24.3.0"
|
|
3744
|
-
jest-get-type "^24.
|
|
3745
|
-
pretty-format "^24.
|
|
3772
|
+
jest-get-type "^24.8.0"
|
|
3773
|
+
pretty-format "^24.8.0"
|
|
3746
3774
|
|
|
3747
3775
|
jest-docblock@^24.3.0:
|
|
3748
3776
|
version "24.3.0"
|
|
@@ -3751,57 +3779,57 @@ jest-docblock@^24.3.0:
|
|
|
3751
3779
|
dependencies:
|
|
3752
3780
|
detect-newline "^2.1.0"
|
|
3753
3781
|
|
|
3754
|
-
jest-each@^24.
|
|
3755
|
-
version "24.
|
|
3756
|
-
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.
|
|
3757
|
-
integrity sha512-
|
|
3782
|
+
jest-each@^24.8.0:
|
|
3783
|
+
version "24.8.0"
|
|
3784
|
+
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775"
|
|
3785
|
+
integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==
|
|
3758
3786
|
dependencies:
|
|
3759
|
-
"@jest/types" "^24.
|
|
3787
|
+
"@jest/types" "^24.8.0"
|
|
3760
3788
|
chalk "^2.0.1"
|
|
3761
|
-
jest-get-type "^24.
|
|
3762
|
-
jest-util "^24.
|
|
3763
|
-
pretty-format "^24.
|
|
3764
|
-
|
|
3765
|
-
jest-environment-jsdom@^24.
|
|
3766
|
-
version "24.
|
|
3767
|
-
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.
|
|
3768
|
-
integrity sha512-
|
|
3769
|
-
dependencies:
|
|
3770
|
-
"@jest/environment" "^24.
|
|
3771
|
-
"@jest/fake-timers" "^24.
|
|
3772
|
-
"@jest/types" "^24.
|
|
3773
|
-
jest-mock "^24.
|
|
3774
|
-
jest-util "^24.
|
|
3789
|
+
jest-get-type "^24.8.0"
|
|
3790
|
+
jest-util "^24.8.0"
|
|
3791
|
+
pretty-format "^24.8.0"
|
|
3792
|
+
|
|
3793
|
+
jest-environment-jsdom@^24.8.0:
|
|
3794
|
+
version "24.8.0"
|
|
3795
|
+
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857"
|
|
3796
|
+
integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==
|
|
3797
|
+
dependencies:
|
|
3798
|
+
"@jest/environment" "^24.8.0"
|
|
3799
|
+
"@jest/fake-timers" "^24.8.0"
|
|
3800
|
+
"@jest/types" "^24.8.0"
|
|
3801
|
+
jest-mock "^24.8.0"
|
|
3802
|
+
jest-util "^24.8.0"
|
|
3775
3803
|
jsdom "^11.5.1"
|
|
3776
3804
|
|
|
3777
|
-
jest-environment-node@^24.
|
|
3778
|
-
version "24.
|
|
3779
|
-
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.
|
|
3780
|
-
integrity sha512-
|
|
3805
|
+
jest-environment-node@^24.8.0:
|
|
3806
|
+
version "24.8.0"
|
|
3807
|
+
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231"
|
|
3808
|
+
integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==
|
|
3781
3809
|
dependencies:
|
|
3782
|
-
"@jest/environment" "^24.
|
|
3783
|
-
"@jest/fake-timers" "^24.
|
|
3784
|
-
"@jest/types" "^24.
|
|
3785
|
-
jest-mock "^24.
|
|
3786
|
-
jest-util "^24.
|
|
3810
|
+
"@jest/environment" "^24.8.0"
|
|
3811
|
+
"@jest/fake-timers" "^24.8.0"
|
|
3812
|
+
"@jest/types" "^24.8.0"
|
|
3813
|
+
jest-mock "^24.8.0"
|
|
3814
|
+
jest-util "^24.8.0"
|
|
3787
3815
|
|
|
3788
|
-
jest-get-type@^24.
|
|
3789
|
-
version "24.
|
|
3790
|
-
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.
|
|
3791
|
-
integrity sha512-
|
|
3816
|
+
jest-get-type@^24.8.0:
|
|
3817
|
+
version "24.8.0"
|
|
3818
|
+
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc"
|
|
3819
|
+
integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==
|
|
3792
3820
|
|
|
3793
|
-
jest-haste-map@^24.
|
|
3794
|
-
version "24.
|
|
3795
|
-
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.
|
|
3796
|
-
integrity sha512-
|
|
3821
|
+
jest-haste-map@^24.8.0:
|
|
3822
|
+
version "24.8.0"
|
|
3823
|
+
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.0.tgz#51794182d877b3ddfd6e6d23920e3fe72f305800"
|
|
3824
|
+
integrity sha512-ZBPRGHdPt1rHajWelXdqygIDpJx8u3xOoLyUBWRW28r3tagrgoepPrzAozW7kW9HrQfhvmiv1tncsxqHJO1onQ==
|
|
3797
3825
|
dependencies:
|
|
3798
|
-
"@jest/types" "^24.
|
|
3826
|
+
"@jest/types" "^24.8.0"
|
|
3799
3827
|
anymatch "^2.0.0"
|
|
3800
3828
|
fb-watchman "^2.0.0"
|
|
3801
3829
|
graceful-fs "^4.1.15"
|
|
3802
3830
|
invariant "^2.2.4"
|
|
3803
3831
|
jest-serializer "^24.4.0"
|
|
3804
|
-
jest-util "^24.
|
|
3832
|
+
jest-util "^24.8.0"
|
|
3805
3833
|
jest-worker "^24.6.0"
|
|
3806
3834
|
micromatch "^3.1.10"
|
|
3807
3835
|
sane "^4.0.3"
|
|
@@ -3809,65 +3837,65 @@ jest-haste-map@^24.7.1:
|
|
|
3809
3837
|
optionalDependencies:
|
|
3810
3838
|
fsevents "^1.2.7"
|
|
3811
3839
|
|
|
3812
|
-
jest-jasmine2@^24.
|
|
3813
|
-
version "24.
|
|
3814
|
-
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.
|
|
3815
|
-
integrity sha512-
|
|
3840
|
+
jest-jasmine2@^24.8.0:
|
|
3841
|
+
version "24.8.0"
|
|
3842
|
+
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898"
|
|
3843
|
+
integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==
|
|
3816
3844
|
dependencies:
|
|
3817
3845
|
"@babel/traverse" "^7.1.0"
|
|
3818
|
-
"@jest/environment" "^24.
|
|
3819
|
-
"@jest/test-result" "^24.
|
|
3820
|
-
"@jest/types" "^24.
|
|
3846
|
+
"@jest/environment" "^24.8.0"
|
|
3847
|
+
"@jest/test-result" "^24.8.0"
|
|
3848
|
+
"@jest/types" "^24.8.0"
|
|
3821
3849
|
chalk "^2.0.1"
|
|
3822
3850
|
co "^4.6.0"
|
|
3823
|
-
expect "^24.
|
|
3851
|
+
expect "^24.8.0"
|
|
3824
3852
|
is-generator-fn "^2.0.0"
|
|
3825
|
-
jest-each "^24.
|
|
3826
|
-
jest-matcher-utils "^24.
|
|
3827
|
-
jest-message-util "^24.
|
|
3828
|
-
jest-runtime "^24.
|
|
3829
|
-
jest-snapshot "^24.
|
|
3830
|
-
jest-util "^24.
|
|
3831
|
-
pretty-format "^24.
|
|
3853
|
+
jest-each "^24.8.0"
|
|
3854
|
+
jest-matcher-utils "^24.8.0"
|
|
3855
|
+
jest-message-util "^24.8.0"
|
|
3856
|
+
jest-runtime "^24.8.0"
|
|
3857
|
+
jest-snapshot "^24.8.0"
|
|
3858
|
+
jest-util "^24.8.0"
|
|
3859
|
+
pretty-format "^24.8.0"
|
|
3832
3860
|
throat "^4.0.0"
|
|
3833
3861
|
|
|
3834
|
-
jest-leak-detector@^24.
|
|
3835
|
-
version "24.
|
|
3836
|
-
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.
|
|
3837
|
-
integrity sha512-
|
|
3862
|
+
jest-leak-detector@^24.8.0:
|
|
3863
|
+
version "24.8.0"
|
|
3864
|
+
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980"
|
|
3865
|
+
integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==
|
|
3838
3866
|
dependencies:
|
|
3839
|
-
pretty-format "^24.
|
|
3867
|
+
pretty-format "^24.8.0"
|
|
3840
3868
|
|
|
3841
|
-
jest-matcher-utils@^24.
|
|
3842
|
-
version "24.
|
|
3843
|
-
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.
|
|
3844
|
-
integrity sha512-
|
|
3869
|
+
jest-matcher-utils@^24.8.0:
|
|
3870
|
+
version "24.8.0"
|
|
3871
|
+
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495"
|
|
3872
|
+
integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==
|
|
3845
3873
|
dependencies:
|
|
3846
3874
|
chalk "^2.0.1"
|
|
3847
|
-
jest-diff "^24.
|
|
3848
|
-
jest-get-type "^24.
|
|
3849
|
-
pretty-format "^24.
|
|
3875
|
+
jest-diff "^24.8.0"
|
|
3876
|
+
jest-get-type "^24.8.0"
|
|
3877
|
+
pretty-format "^24.8.0"
|
|
3850
3878
|
|
|
3851
|
-
jest-message-util@^24.
|
|
3852
|
-
version "24.
|
|
3853
|
-
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.
|
|
3854
|
-
integrity sha512-
|
|
3879
|
+
jest-message-util@^24.8.0:
|
|
3880
|
+
version "24.8.0"
|
|
3881
|
+
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b"
|
|
3882
|
+
integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==
|
|
3855
3883
|
dependencies:
|
|
3856
3884
|
"@babel/code-frame" "^7.0.0"
|
|
3857
|
-
"@jest/test-result" "^24.
|
|
3858
|
-
"@jest/types" "^24.
|
|
3885
|
+
"@jest/test-result" "^24.8.0"
|
|
3886
|
+
"@jest/types" "^24.8.0"
|
|
3859
3887
|
"@types/stack-utils" "^1.0.1"
|
|
3860
3888
|
chalk "^2.0.1"
|
|
3861
3889
|
micromatch "^3.1.10"
|
|
3862
3890
|
slash "^2.0.0"
|
|
3863
3891
|
stack-utils "^1.0.1"
|
|
3864
3892
|
|
|
3865
|
-
jest-mock@^24.
|
|
3866
|
-
version "24.
|
|
3867
|
-
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.
|
|
3868
|
-
integrity sha512-
|
|
3893
|
+
jest-mock@^24.8.0:
|
|
3894
|
+
version "24.8.0"
|
|
3895
|
+
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56"
|
|
3896
|
+
integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==
|
|
3869
3897
|
dependencies:
|
|
3870
|
-
"@jest/types" "^24.
|
|
3898
|
+
"@jest/types" "^24.8.0"
|
|
3871
3899
|
|
|
3872
3900
|
jest-pnp-resolver@^1.2.1:
|
|
3873
3901
|
version "1.2.1"
|
|
@@ -3879,75 +3907,75 @@ jest-regex-util@^24.3.0:
|
|
|
3879
3907
|
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36"
|
|
3880
3908
|
integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==
|
|
3881
3909
|
|
|
3882
|
-
jest-resolve-dependencies@^24.
|
|
3883
|
-
version "24.
|
|
3884
|
-
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.
|
|
3885
|
-
integrity sha512-
|
|
3910
|
+
jest-resolve-dependencies@^24.8.0:
|
|
3911
|
+
version "24.8.0"
|
|
3912
|
+
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0"
|
|
3913
|
+
integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==
|
|
3886
3914
|
dependencies:
|
|
3887
|
-
"@jest/types" "^24.
|
|
3915
|
+
"@jest/types" "^24.8.0"
|
|
3888
3916
|
jest-regex-util "^24.3.0"
|
|
3889
|
-
jest-snapshot "^24.
|
|
3917
|
+
jest-snapshot "^24.8.0"
|
|
3890
3918
|
|
|
3891
|
-
jest-resolve@^24.
|
|
3892
|
-
version "24.
|
|
3893
|
-
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.
|
|
3894
|
-
integrity sha512
|
|
3919
|
+
jest-resolve@^24.8.0:
|
|
3920
|
+
version "24.8.0"
|
|
3921
|
+
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f"
|
|
3922
|
+
integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==
|
|
3895
3923
|
dependencies:
|
|
3896
|
-
"@jest/types" "^24.
|
|
3924
|
+
"@jest/types" "^24.8.0"
|
|
3897
3925
|
browser-resolve "^1.11.3"
|
|
3898
3926
|
chalk "^2.0.1"
|
|
3899
3927
|
jest-pnp-resolver "^1.2.1"
|
|
3900
3928
|
realpath-native "^1.1.0"
|
|
3901
3929
|
|
|
3902
|
-
jest-runner@^24.
|
|
3903
|
-
version "24.
|
|
3904
|
-
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.
|
|
3905
|
-
integrity sha512-
|
|
3930
|
+
jest-runner@^24.8.0:
|
|
3931
|
+
version "24.8.0"
|
|
3932
|
+
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb"
|
|
3933
|
+
integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==
|
|
3906
3934
|
dependencies:
|
|
3907
3935
|
"@jest/console" "^24.7.1"
|
|
3908
|
-
"@jest/environment" "^24.
|
|
3909
|
-
"@jest/test-result" "^24.
|
|
3910
|
-
"@jest/types" "^24.
|
|
3936
|
+
"@jest/environment" "^24.8.0"
|
|
3937
|
+
"@jest/test-result" "^24.8.0"
|
|
3938
|
+
"@jest/types" "^24.8.0"
|
|
3911
3939
|
chalk "^2.4.2"
|
|
3912
3940
|
exit "^0.1.2"
|
|
3913
3941
|
graceful-fs "^4.1.15"
|
|
3914
|
-
jest-config "^24.
|
|
3942
|
+
jest-config "^24.8.0"
|
|
3915
3943
|
jest-docblock "^24.3.0"
|
|
3916
|
-
jest-haste-map "^24.
|
|
3917
|
-
jest-jasmine2 "^24.
|
|
3918
|
-
jest-leak-detector "^24.
|
|
3919
|
-
jest-message-util "^24.
|
|
3920
|
-
jest-resolve "^24.
|
|
3921
|
-
jest-runtime "^24.
|
|
3922
|
-
jest-util "^24.
|
|
3944
|
+
jest-haste-map "^24.8.0"
|
|
3945
|
+
jest-jasmine2 "^24.8.0"
|
|
3946
|
+
jest-leak-detector "^24.8.0"
|
|
3947
|
+
jest-message-util "^24.8.0"
|
|
3948
|
+
jest-resolve "^24.8.0"
|
|
3949
|
+
jest-runtime "^24.8.0"
|
|
3950
|
+
jest-util "^24.8.0"
|
|
3923
3951
|
jest-worker "^24.6.0"
|
|
3924
3952
|
source-map-support "^0.5.6"
|
|
3925
3953
|
throat "^4.0.0"
|
|
3926
3954
|
|
|
3927
|
-
jest-runtime@^24.
|
|
3928
|
-
version "24.
|
|
3929
|
-
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.
|
|
3930
|
-
integrity sha512-
|
|
3955
|
+
jest-runtime@^24.8.0:
|
|
3956
|
+
version "24.8.0"
|
|
3957
|
+
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620"
|
|
3958
|
+
integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==
|
|
3931
3959
|
dependencies:
|
|
3932
3960
|
"@jest/console" "^24.7.1"
|
|
3933
|
-
"@jest/environment" "^24.
|
|
3961
|
+
"@jest/environment" "^24.8.0"
|
|
3934
3962
|
"@jest/source-map" "^24.3.0"
|
|
3935
|
-
"@jest/transform" "^24.
|
|
3936
|
-
"@jest/types" "^24.
|
|
3963
|
+
"@jest/transform" "^24.8.0"
|
|
3964
|
+
"@jest/types" "^24.8.0"
|
|
3937
3965
|
"@types/yargs" "^12.0.2"
|
|
3938
3966
|
chalk "^2.0.1"
|
|
3939
3967
|
exit "^0.1.2"
|
|
3940
3968
|
glob "^7.1.3"
|
|
3941
3969
|
graceful-fs "^4.1.15"
|
|
3942
|
-
jest-config "^24.
|
|
3943
|
-
jest-haste-map "^24.
|
|
3944
|
-
jest-message-util "^24.
|
|
3945
|
-
jest-mock "^24.
|
|
3970
|
+
jest-config "^24.8.0"
|
|
3971
|
+
jest-haste-map "^24.8.0"
|
|
3972
|
+
jest-message-util "^24.8.0"
|
|
3973
|
+
jest-mock "^24.8.0"
|
|
3946
3974
|
jest-regex-util "^24.3.0"
|
|
3947
|
-
jest-resolve "^24.
|
|
3948
|
-
jest-snapshot "^24.
|
|
3949
|
-
jest-util "^24.
|
|
3950
|
-
jest-validate "^24.
|
|
3975
|
+
jest-resolve "^24.8.0"
|
|
3976
|
+
jest-snapshot "^24.8.0"
|
|
3977
|
+
jest-util "^24.8.0"
|
|
3978
|
+
jest-validate "^24.8.0"
|
|
3951
3979
|
realpath-native "^1.1.0"
|
|
3952
3980
|
slash "^2.0.0"
|
|
3953
3981
|
strip-bom "^3.0.0"
|
|
@@ -3958,34 +3986,34 @@ jest-serializer@^24.4.0:
|
|
|
3958
3986
|
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3"
|
|
3959
3987
|
integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==
|
|
3960
3988
|
|
|
3961
|
-
jest-snapshot@^24.
|
|
3962
|
-
version "24.
|
|
3963
|
-
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.
|
|
3964
|
-
integrity sha512-
|
|
3989
|
+
jest-snapshot@^24.8.0:
|
|
3990
|
+
version "24.8.0"
|
|
3991
|
+
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6"
|
|
3992
|
+
integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==
|
|
3965
3993
|
dependencies:
|
|
3966
3994
|
"@babel/types" "^7.0.0"
|
|
3967
|
-
"@jest/types" "^24.
|
|
3995
|
+
"@jest/types" "^24.8.0"
|
|
3968
3996
|
chalk "^2.0.1"
|
|
3969
|
-
expect "^24.
|
|
3970
|
-
jest-diff "^24.
|
|
3971
|
-
jest-matcher-utils "^24.
|
|
3972
|
-
jest-message-util "^24.
|
|
3973
|
-
jest-resolve "^24.
|
|
3997
|
+
expect "^24.8.0"
|
|
3998
|
+
jest-diff "^24.8.0"
|
|
3999
|
+
jest-matcher-utils "^24.8.0"
|
|
4000
|
+
jest-message-util "^24.8.0"
|
|
4001
|
+
jest-resolve "^24.8.0"
|
|
3974
4002
|
mkdirp "^0.5.1"
|
|
3975
4003
|
natural-compare "^1.4.0"
|
|
3976
|
-
pretty-format "^24.
|
|
4004
|
+
pretty-format "^24.8.0"
|
|
3977
4005
|
semver "^5.5.0"
|
|
3978
4006
|
|
|
3979
|
-
jest-util@^24.
|
|
3980
|
-
version "24.
|
|
3981
|
-
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.
|
|
3982
|
-
integrity sha512
|
|
4007
|
+
jest-util@^24.8.0:
|
|
4008
|
+
version "24.8.0"
|
|
4009
|
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1"
|
|
4010
|
+
integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==
|
|
3983
4011
|
dependencies:
|
|
3984
4012
|
"@jest/console" "^24.7.1"
|
|
3985
|
-
"@jest/fake-timers" "^24.
|
|
4013
|
+
"@jest/fake-timers" "^24.8.0"
|
|
3986
4014
|
"@jest/source-map" "^24.3.0"
|
|
3987
|
-
"@jest/test-result" "^24.
|
|
3988
|
-
"@jest/types" "^24.
|
|
4015
|
+
"@jest/test-result" "^24.8.0"
|
|
4016
|
+
"@jest/types" "^24.8.0"
|
|
3989
4017
|
callsites "^3.0.0"
|
|
3990
4018
|
chalk "^2.0.1"
|
|
3991
4019
|
graceful-fs "^4.1.15"
|
|
@@ -3994,29 +4022,29 @@ jest-util@^24.7.1:
|
|
|
3994
4022
|
slash "^2.0.0"
|
|
3995
4023
|
source-map "^0.6.0"
|
|
3996
4024
|
|
|
3997
|
-
jest-validate@^24.
|
|
3998
|
-
version "24.
|
|
3999
|
-
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.
|
|
4000
|
-
integrity sha512
|
|
4025
|
+
jest-validate@^24.8.0:
|
|
4026
|
+
version "24.8.0"
|
|
4027
|
+
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849"
|
|
4028
|
+
integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==
|
|
4001
4029
|
dependencies:
|
|
4002
|
-
"@jest/types" "^24.
|
|
4030
|
+
"@jest/types" "^24.8.0"
|
|
4003
4031
|
camelcase "^5.0.0"
|
|
4004
4032
|
chalk "^2.0.1"
|
|
4005
|
-
jest-get-type "^24.
|
|
4033
|
+
jest-get-type "^24.8.0"
|
|
4006
4034
|
leven "^2.1.0"
|
|
4007
|
-
pretty-format "^24.
|
|
4035
|
+
pretty-format "^24.8.0"
|
|
4008
4036
|
|
|
4009
|
-
jest-watcher@^24.
|
|
4010
|
-
version "24.
|
|
4011
|
-
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.
|
|
4012
|
-
integrity sha512-
|
|
4037
|
+
jest-watcher@^24.8.0:
|
|
4038
|
+
version "24.8.0"
|
|
4039
|
+
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4"
|
|
4040
|
+
integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==
|
|
4013
4041
|
dependencies:
|
|
4014
|
-
"@jest/test-result" "^24.
|
|
4015
|
-
"@jest/types" "^24.
|
|
4042
|
+
"@jest/test-result" "^24.8.0"
|
|
4043
|
+
"@jest/types" "^24.8.0"
|
|
4016
4044
|
"@types/yargs" "^12.0.9"
|
|
4017
4045
|
ansi-escapes "^3.0.0"
|
|
4018
4046
|
chalk "^2.0.1"
|
|
4019
|
-
jest-util "^24.
|
|
4047
|
+
jest-util "^24.8.0"
|
|
4020
4048
|
string-length "^2.0.0"
|
|
4021
4049
|
|
|
4022
4050
|
jest-worker@^24.6.0:
|
|
@@ -4027,13 +4055,13 @@ jest-worker@^24.6.0:
|
|
|
4027
4055
|
merge-stream "^1.0.1"
|
|
4028
4056
|
supports-color "^6.1.0"
|
|
4029
4057
|
|
|
4030
|
-
jest@^24.
|
|
4031
|
-
version "24.
|
|
4032
|
-
resolved "https://registry.yarnpkg.com/jest/-/jest-24.
|
|
4033
|
-
integrity sha512-
|
|
4058
|
+
jest@^24.8.0:
|
|
4059
|
+
version "24.8.0"
|
|
4060
|
+
resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081"
|
|
4061
|
+
integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==
|
|
4034
4062
|
dependencies:
|
|
4035
4063
|
import-local "^2.0.0"
|
|
4036
|
-
jest-cli "^24.
|
|
4064
|
+
jest-cli "^24.8.0"
|
|
4037
4065
|
|
|
4038
4066
|
js-levenshtein@^1.1.3:
|
|
4039
4067
|
version "1.1.6"
|
|
@@ -4045,15 +4073,7 @@ js-levenshtein@^1.1.3:
|
|
|
4045
4073
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
4046
4074
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
4047
4075
|
|
|
4048
|
-
js-yaml@^3.
|
|
4049
|
-
version "3.12.2"
|
|
4050
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc"
|
|
4051
|
-
integrity sha512-QHn/Lh/7HhZ/Twc7vJYQTkjuCa0kaCcDcjK5Zlk2rvnUpy7DxMJ23+Jc2dcyvltwQVg1nygAVlB2oRDFHoRS5Q==
|
|
4052
|
-
dependencies:
|
|
4053
|
-
argparse "^1.0.7"
|
|
4054
|
-
esprima "^4.0.0"
|
|
4055
|
-
|
|
4056
|
-
js-yaml@^3.13.0:
|
|
4076
|
+
js-yaml@^3.13.1:
|
|
4057
4077
|
version "3.13.1"
|
|
4058
4078
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
|
|
4059
4079
|
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
|
|
@@ -4164,6 +4184,13 @@ jsx-ast-utils@^2.0.1:
|
|
|
4164
4184
|
dependencies:
|
|
4165
4185
|
array-includes "^3.0.3"
|
|
4166
4186
|
|
|
4187
|
+
jsx-ast-utils@^2.1.0:
|
|
4188
|
+
version "2.1.0"
|
|
4189
|
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.1.0.tgz#0ee4e2c971fb9601c67b5641b71be80faecf0b36"
|
|
4190
|
+
integrity sha512-yDGDG2DS4JcqhA6blsuYbtsT09xL8AoLuUR2Gb5exrw7UEM19sBcOTq+YBBhrNbl0PUC4R4LnFu+dHg2HKeVvA==
|
|
4191
|
+
dependencies:
|
|
4192
|
+
array-includes "^3.0.3"
|
|
4193
|
+
|
|
4167
4194
|
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
|
|
4168
4195
|
version "3.2.2"
|
|
4169
4196
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
|
@@ -4238,12 +4265,12 @@ load-json-file@^4.0.0:
|
|
|
4238
4265
|
pify "^3.0.0"
|
|
4239
4266
|
strip-bom "^3.0.0"
|
|
4240
4267
|
|
|
4241
|
-
loader-runner@^2.
|
|
4268
|
+
loader-runner@^2.4.0:
|
|
4242
4269
|
version "2.4.0"
|
|
4243
4270
|
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
|
4244
4271
|
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
|
|
4245
4272
|
|
|
4246
|
-
loader-utils@^1.0.2, loader-utils@^1.
|
|
4273
|
+
loader-utils@1.2.3, loader-utils@^1.0.2, loader-utils@^1.2.3:
|
|
4247
4274
|
version "1.2.3"
|
|
4248
4275
|
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
|
|
4249
4276
|
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
|
@@ -4294,9 +4321,14 @@ lodash.upperfirst@4.3.1:
|
|
|
4294
4321
|
integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=
|
|
4295
4322
|
|
|
4296
4323
|
lodash@^4.17.10, lodash@^4.17.11:
|
|
4297
|
-
version "4.17.
|
|
4298
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
|
4299
|
-
integrity sha512-
|
|
4324
|
+
version "4.17.14"
|
|
4325
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
|
|
4326
|
+
integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
|
|
4327
|
+
|
|
4328
|
+
lodash@^4.17.13:
|
|
4329
|
+
version "4.17.15"
|
|
4330
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
|
4331
|
+
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
|
4300
4332
|
|
|
4301
4333
|
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
|
|
4302
4334
|
version "1.4.0"
|
|
@@ -4319,6 +4351,14 @@ make-dir@^1.0.0, make-dir@^1.3.0:
|
|
|
4319
4351
|
dependencies:
|
|
4320
4352
|
pify "^3.0.0"
|
|
4321
4353
|
|
|
4354
|
+
make-dir@^2.0.0:
|
|
4355
|
+
version "2.1.0"
|
|
4356
|
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
|
4357
|
+
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
|
|
4358
|
+
dependencies:
|
|
4359
|
+
pify "^4.0.1"
|
|
4360
|
+
semver "^5.6.0"
|
|
4361
|
+
|
|
4322
4362
|
makeerror@1.0.x:
|
|
4323
4363
|
version "1.0.11"
|
|
4324
4364
|
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
|
|
@@ -4368,7 +4408,7 @@ mem@^4.0.0:
|
|
|
4368
4408
|
mimic-fn "^1.0.0"
|
|
4369
4409
|
p-is-promise "^2.0.0"
|
|
4370
4410
|
|
|
4371
|
-
memory-fs@^0.4.0, memory-fs
|
|
4411
|
+
memory-fs@^0.4.0, memory-fs@^0.4.1:
|
|
4372
4412
|
version "0.4.1"
|
|
4373
4413
|
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
|
|
4374
4414
|
integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
|
|
@@ -4383,7 +4423,7 @@ merge-stream@^1.0.1:
|
|
|
4383
4423
|
dependencies:
|
|
4384
4424
|
readable-stream "^2.0.1"
|
|
4385
4425
|
|
|
4386
|
-
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4
|
|
4426
|
+
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
|
4387
4427
|
version "3.1.10"
|
|
4388
4428
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
|
4389
4429
|
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
|
|
@@ -4437,7 +4477,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
|
|
4437
4477
|
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
|
4438
4478
|
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
|
|
4439
4479
|
|
|
4440
|
-
minimatch@^3.0.
|
|
4480
|
+
minimatch@^3.0.4:
|
|
4441
4481
|
version "3.0.4"
|
|
4442
4482
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
|
4443
4483
|
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
|
|
@@ -4498,7 +4538,7 @@ mixin-deep@^1.2.0:
|
|
|
4498
4538
|
for-in "^1.0.2"
|
|
4499
4539
|
is-extendable "^1.0.1"
|
|
4500
4540
|
|
|
4501
|
-
mkdirp@^0.5.0, mkdirp@^0.5.1
|
|
4541
|
+
mkdirp@^0.5.0, mkdirp@^0.5.1:
|
|
4502
4542
|
version "0.5.1"
|
|
4503
4543
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
|
4504
4544
|
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
|
|
@@ -4568,10 +4608,10 @@ needle@^2.2.1:
|
|
|
4568
4608
|
iconv-lite "^0.4.4"
|
|
4569
4609
|
sax "^1.2.4"
|
|
4570
4610
|
|
|
4571
|
-
neo-async@^2.5.0:
|
|
4572
|
-
version "2.6.
|
|
4573
|
-
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.
|
|
4574
|
-
integrity sha512-
|
|
4611
|
+
neo-async@^2.5.0, neo-async@^2.6.1:
|
|
4612
|
+
version "2.6.1"
|
|
4613
|
+
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
|
|
4614
|
+
integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
|
|
4575
4615
|
|
|
4576
4616
|
nice-try@^1.0.4:
|
|
4577
4617
|
version "1.0.5"
|
|
@@ -4583,10 +4623,10 @@ node-int64@^0.4.0:
|
|
|
4583
4623
|
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
|
|
4584
4624
|
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
|
|
4585
4625
|
|
|
4586
|
-
node-libs-browser@^2.
|
|
4587
|
-
version "2.2.
|
|
4588
|
-
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.
|
|
4589
|
-
integrity sha512-
|
|
4626
|
+
node-libs-browser@^2.2.1:
|
|
4627
|
+
version "2.2.1"
|
|
4628
|
+
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
|
|
4629
|
+
integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
|
|
4590
4630
|
dependencies:
|
|
4591
4631
|
assert "^1.1.1"
|
|
4592
4632
|
browserify-zlib "^0.2.0"
|
|
@@ -4598,7 +4638,7 @@ node-libs-browser@^2.0.0:
|
|
|
4598
4638
|
events "^3.0.0"
|
|
4599
4639
|
https-browserify "^1.0.0"
|
|
4600
4640
|
os-browserify "^0.3.0"
|
|
4601
|
-
path-browserify "0.0.
|
|
4641
|
+
path-browserify "0.0.1"
|
|
4602
4642
|
process "^0.11.10"
|
|
4603
4643
|
punycode "^1.2.4"
|
|
4604
4644
|
querystring-es3 "^0.2.0"
|
|
@@ -4610,7 +4650,7 @@ node-libs-browser@^2.0.0:
|
|
|
4610
4650
|
tty-browserify "0.0.0"
|
|
4611
4651
|
url "^0.11.0"
|
|
4612
4652
|
util "^0.11.0"
|
|
4613
|
-
vm-browserify "
|
|
4653
|
+
vm-browserify "^1.0.1"
|
|
4614
4654
|
|
|
4615
4655
|
node-modules-regexp@^1.0.0:
|
|
4616
4656
|
version "1.0.0"
|
|
@@ -4644,10 +4684,10 @@ node-pre-gyp@^0.10.0:
|
|
|
4644
4684
|
semver "^5.3.0"
|
|
4645
4685
|
tar "^4"
|
|
4646
4686
|
|
|
4647
|
-
node-releases@^1.1.
|
|
4648
|
-
version "1.1.
|
|
4649
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
|
4650
|
-
integrity sha512-
|
|
4687
|
+
node-releases@^1.1.19:
|
|
4688
|
+
version "1.1.21"
|
|
4689
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.21.tgz#46c86f9adaceae4d63c75d3c2f2e6eee618e55f3"
|
|
4690
|
+
integrity sha512-TwnURTCjc8a+ElJUjmDqU6+12jhli1Q61xOQmdZ7ECZVBZuQpN/1UnembiIHDM1wCcfLvh5wrWXUF5H6ufX64Q==
|
|
4651
4691
|
dependencies:
|
|
4652
4692
|
semver "^5.3.0"
|
|
4653
4693
|
|
|
@@ -4762,7 +4802,7 @@ object.assign@^4.1.0:
|
|
|
4762
4802
|
has-symbols "^1.0.0"
|
|
4763
4803
|
object-keys "^1.0.11"
|
|
4764
4804
|
|
|
4765
|
-
object.entries@^1.0.4:
|
|
4805
|
+
object.entries@^1.0.4, object.entries@^1.1.0:
|
|
4766
4806
|
version "1.1.0"
|
|
4767
4807
|
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
|
|
4768
4808
|
integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==
|
|
@@ -4797,6 +4837,16 @@ object.pick@^1.3.0:
|
|
|
4797
4837
|
dependencies:
|
|
4798
4838
|
isobject "^3.0.1"
|
|
4799
4839
|
|
|
4840
|
+
object.values@^1.1.0:
|
|
4841
|
+
version "1.1.0"
|
|
4842
|
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
|
|
4843
|
+
integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
|
|
4844
|
+
dependencies:
|
|
4845
|
+
define-properties "^1.1.3"
|
|
4846
|
+
es-abstract "^1.12.0"
|
|
4847
|
+
function-bind "^1.1.1"
|
|
4848
|
+
has "^1.0.3"
|
|
4849
|
+
|
|
4800
4850
|
once@^1.3.0, once@^1.3.1, once@^1.4.0:
|
|
4801
4851
|
version "1.4.0"
|
|
4802
4852
|
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
@@ -4841,7 +4891,7 @@ os-homedir@^1.0.0:
|
|
|
4841
4891
|
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
|
4842
4892
|
integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
|
|
4843
4893
|
|
|
4844
|
-
os-locale@^3.0.0:
|
|
4894
|
+
os-locale@^3.0.0, os-locale@^3.1.0:
|
|
4845
4895
|
version "3.1.0"
|
|
4846
4896
|
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
|
|
4847
4897
|
integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
|
|
@@ -5000,10 +5050,10 @@ pascalcase@^0.1.1:
|
|
|
5000
5050
|
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
|
5001
5051
|
integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
|
|
5002
5052
|
|
|
5003
|
-
path-browserify@0.0.
|
|
5004
|
-
version "0.0.
|
|
5005
|
-
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.
|
|
5006
|
-
integrity
|
|
5053
|
+
path-browserify@0.0.1:
|
|
5054
|
+
version "0.0.1"
|
|
5055
|
+
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
|
|
5056
|
+
integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
|
|
5007
5057
|
|
|
5008
5058
|
path-dirname@^1.0.0:
|
|
5009
5059
|
version "1.0.2"
|
|
@@ -5020,11 +5070,6 @@ path-is-absolute@^1.0.0:
|
|
|
5020
5070
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
5021
5071
|
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
|
5022
5072
|
|
|
5023
|
-
path-is-inside@^1.0.2:
|
|
5024
|
-
version "1.0.2"
|
|
5025
|
-
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
|
5026
|
-
integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
|
|
5027
|
-
|
|
5028
5073
|
path-key@^2.0.0, path-key@^2.0.1:
|
|
5029
5074
|
version "2.0.1"
|
|
5030
5075
|
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
|
|
@@ -5116,12 +5161,12 @@ prelude-ls@~1.1.2:
|
|
|
5116
5161
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
|
5117
5162
|
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
|
|
5118
5163
|
|
|
5119
|
-
pretty-format@^24.
|
|
5120
|
-
version "24.
|
|
5121
|
-
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.
|
|
5122
|
-
integrity sha512-
|
|
5164
|
+
pretty-format@^24.8.0:
|
|
5165
|
+
version "24.8.0"
|
|
5166
|
+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2"
|
|
5167
|
+
integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==
|
|
5123
5168
|
dependencies:
|
|
5124
|
-
"@jest/types" "^24.
|
|
5169
|
+
"@jest/types" "^24.8.0"
|
|
5125
5170
|
ansi-regex "^4.0.0"
|
|
5126
5171
|
ansi-styles "^3.2.0"
|
|
5127
5172
|
react-is "^16.8.4"
|
|
@@ -5159,7 +5204,7 @@ prompts@^2.0.1:
|
|
|
5159
5204
|
kleur "^3.0.2"
|
|
5160
5205
|
sisteransi "^1.0.0"
|
|
5161
5206
|
|
|
5162
|
-
prop-types@^15.6.2:
|
|
5207
|
+
prop-types@^15.6.2, prop-types@^15.7.2:
|
|
5163
5208
|
version "15.7.2"
|
|
5164
5209
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
|
5165
5210
|
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
|
@@ -5270,15 +5315,15 @@ rc@^1.2.7:
|
|
|
5270
5315
|
minimist "^1.2.0"
|
|
5271
5316
|
strip-json-comments "~2.0.1"
|
|
5272
5317
|
|
|
5273
|
-
react-dom@^16.
|
|
5274
|
-
version "16.
|
|
5275
|
-
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.
|
|
5276
|
-
integrity sha512-
|
|
5318
|
+
react-dom@^16.9.0:
|
|
5319
|
+
version "16.9.0"
|
|
5320
|
+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.9.0.tgz#5e65527a5e26f22ae3701131bcccaee9fb0d3962"
|
|
5321
|
+
integrity sha512-YFT2rxO9hM70ewk9jq0y6sQk8cL02xm4+IzYBz75CQGlClQQ1Bxq0nhHF6OtSbit+AIahujJgb/CPRibFkMNJQ==
|
|
5277
5322
|
dependencies:
|
|
5278
5323
|
loose-envify "^1.1.0"
|
|
5279
5324
|
object-assign "^4.1.1"
|
|
5280
5325
|
prop-types "^15.6.2"
|
|
5281
|
-
scheduler "^0.
|
|
5326
|
+
scheduler "^0.15.0"
|
|
5282
5327
|
|
|
5283
5328
|
react-is@^16.8.1:
|
|
5284
5329
|
version "16.8.3"
|
|
@@ -5290,23 +5335,14 @@ react-is@^16.8.4:
|
|
|
5290
5335
|
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
|
|
5291
5336
|
integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
|
|
5292
5337
|
|
|
5293
|
-
react
|
|
5294
|
-
version "
|
|
5295
|
-
resolved "https://registry.yarnpkg.com/react
|
|
5296
|
-
integrity sha512
|
|
5297
|
-
dependencies:
|
|
5298
|
-
"@babel/runtime" "^7.4.3"
|
|
5299
|
-
dom-testing-library "^4.0.0"
|
|
5300
|
-
|
|
5301
|
-
react@^16.8.6:
|
|
5302
|
-
version "16.8.6"
|
|
5303
|
-
resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
|
|
5304
|
-
integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==
|
|
5338
|
+
react@^16.9.0:
|
|
5339
|
+
version "16.9.0"
|
|
5340
|
+
resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa"
|
|
5341
|
+
integrity sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==
|
|
5305
5342
|
dependencies:
|
|
5306
5343
|
loose-envify "^1.1.0"
|
|
5307
5344
|
object-assign "^4.1.1"
|
|
5308
5345
|
prop-types "^15.6.2"
|
|
5309
|
-
scheduler "^0.13.6"
|
|
5310
5346
|
|
|
5311
5347
|
read-pkg-up@^2.0.0:
|
|
5312
5348
|
version "2.0.0"
|
|
@@ -5388,10 +5424,10 @@ regenerator-runtime@^0.13.2:
|
|
|
5388
5424
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447"
|
|
5389
5425
|
integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA==
|
|
5390
5426
|
|
|
5391
|
-
regenerator-transform@^0.
|
|
5392
|
-
version "0.
|
|
5393
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.
|
|
5394
|
-
integrity sha512-
|
|
5427
|
+
regenerator-transform@^0.14.0:
|
|
5428
|
+
version "0.14.0"
|
|
5429
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf"
|
|
5430
|
+
integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w==
|
|
5395
5431
|
dependencies:
|
|
5396
5432
|
private "^0.1.6"
|
|
5397
5433
|
|
|
@@ -5403,10 +5439,10 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
|
5403
5439
|
extend-shallow "^3.0.2"
|
|
5404
5440
|
safe-regex "^1.1.0"
|
|
5405
5441
|
|
|
5406
|
-
regexp-tree@^0.1.
|
|
5407
|
-
version "0.1.
|
|
5408
|
-
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.
|
|
5409
|
-
integrity sha512-
|
|
5442
|
+
regexp-tree@^0.1.6:
|
|
5443
|
+
version "0.1.10"
|
|
5444
|
+
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc"
|
|
5445
|
+
integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ==
|
|
5410
5446
|
|
|
5411
5447
|
regexpp@^2.0.1:
|
|
5412
5448
|
version "2.0.1"
|
|
@@ -5504,6 +5540,11 @@ require-main-filename@^1.0.1:
|
|
|
5504
5540
|
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
|
5505
5541
|
integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
|
|
5506
5542
|
|
|
5543
|
+
require-main-filename@^2.0.0:
|
|
5544
|
+
version "2.0.0"
|
|
5545
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
|
5546
|
+
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
|
5547
|
+
|
|
5507
5548
|
resolve-cwd@^2.0.0:
|
|
5508
5549
|
version "2.0.0"
|
|
5509
5550
|
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
|
|
@@ -5539,13 +5580,20 @@ resolve@1.1.7:
|
|
|
5539
5580
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
|
5540
5581
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
|
5541
5582
|
|
|
5542
|
-
resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0
|
|
5583
|
+
resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0:
|
|
5543
5584
|
version "1.10.0"
|
|
5544
5585
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
|
|
5545
5586
|
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
|
|
5546
5587
|
dependencies:
|
|
5547
5588
|
path-parse "^1.0.6"
|
|
5548
5589
|
|
|
5590
|
+
resolve@^1.10.1, resolve@^1.11.0:
|
|
5591
|
+
version "1.11.0"
|
|
5592
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232"
|
|
5593
|
+
integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw==
|
|
5594
|
+
dependencies:
|
|
5595
|
+
path-parse "^1.0.6"
|
|
5596
|
+
|
|
5549
5597
|
restore-cursor@^2.0.0:
|
|
5550
5598
|
version "2.0.0"
|
|
5551
5599
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
|
@@ -5559,7 +5607,7 @@ ret@~0.1.10:
|
|
|
5559
5607
|
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
|
5560
5608
|
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
|
|
5561
5609
|
|
|
5562
|
-
rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
|
|
5610
|
+
rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3:
|
|
5563
5611
|
version "2.6.3"
|
|
5564
5612
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
|
|
5565
5613
|
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
|
|
@@ -5637,10 +5685,10 @@ sax@^1.2.4:
|
|
|
5637
5685
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
|
5638
5686
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
|
5639
5687
|
|
|
5640
|
-
scheduler@^0.
|
|
5641
|
-
version "0.
|
|
5642
|
-
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.
|
|
5643
|
-
integrity sha512-
|
|
5688
|
+
scheduler@^0.15.0:
|
|
5689
|
+
version "0.15.0"
|
|
5690
|
+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.15.0.tgz#6bfcf80ff850b280fed4aeecc6513bc0b4f17f8e"
|
|
5691
|
+
integrity sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg==
|
|
5644
5692
|
dependencies:
|
|
5645
5693
|
loose-envify "^1.1.0"
|
|
5646
5694
|
object-assign "^4.1.1"
|
|
@@ -5659,15 +5707,20 @@ schema-utils@^1.0.0:
|
|
|
5659
5707
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
|
|
5660
5708
|
integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==
|
|
5661
5709
|
|
|
5662
|
-
semver@^6.0
|
|
5663
|
-
version "
|
|
5664
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-
|
|
5665
|
-
integrity sha512-
|
|
5710
|
+
semver@^5.6.0:
|
|
5711
|
+
version "5.7.0"
|
|
5712
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
|
|
5713
|
+
integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
|
|
5666
5714
|
|
|
5667
|
-
|
|
5668
|
-
version "
|
|
5669
|
-
resolved "https://registry.yarnpkg.com/
|
|
5670
|
-
integrity sha512-
|
|
5715
|
+
semver@^6.1.0:
|
|
5716
|
+
version "6.1.1"
|
|
5717
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b"
|
|
5718
|
+
integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==
|
|
5719
|
+
|
|
5720
|
+
serialize-javascript@^1.7.0:
|
|
5721
|
+
version "1.7.0"
|
|
5722
|
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
|
|
5723
|
+
integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
|
|
5671
5724
|
|
|
5672
5725
|
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
|
5673
5726
|
version "2.0.0"
|
|
@@ -5794,7 +5847,7 @@ source-map-resolve@^0.5.0:
|
|
|
5794
5847
|
source-map-url "^0.4.0"
|
|
5795
5848
|
urix "^0.1.0"
|
|
5796
5849
|
|
|
5797
|
-
source-map-support@^0.5.6
|
|
5850
|
+
source-map-support@^0.5.6:
|
|
5798
5851
|
version "0.5.10"
|
|
5799
5852
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c"
|
|
5800
5853
|
integrity sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ==
|
|
@@ -5802,6 +5855,14 @@ source-map-support@^0.5.6, source-map-support@~0.5.9:
|
|
|
5802
5855
|
buffer-from "^1.0.0"
|
|
5803
5856
|
source-map "^0.6.0"
|
|
5804
5857
|
|
|
5858
|
+
source-map-support@~0.5.12:
|
|
5859
|
+
version "0.5.13"
|
|
5860
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
|
|
5861
|
+
integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
|
|
5862
|
+
dependencies:
|
|
5863
|
+
buffer-from "^1.0.0"
|
|
5864
|
+
source-map "^0.6.0"
|
|
5865
|
+
|
|
5805
5866
|
source-map-url@^0.4.0:
|
|
5806
5867
|
version "0.4.0"
|
|
5807
5868
|
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
|
|
@@ -5961,6 +6022,15 @@ string-width@^3.0.0:
|
|
|
5961
6022
|
is-fullwidth-code-point "^2.0.0"
|
|
5962
6023
|
strip-ansi "^5.0.0"
|
|
5963
6024
|
|
|
6025
|
+
string-width@^3.1.0:
|
|
6026
|
+
version "3.1.0"
|
|
6027
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
|
6028
|
+
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
|
|
6029
|
+
dependencies:
|
|
6030
|
+
emoji-regex "^7.0.1"
|
|
6031
|
+
is-fullwidth-code-point "^2.0.0"
|
|
6032
|
+
strip-ansi "^5.1.0"
|
|
6033
|
+
|
|
5964
6034
|
string_decoder@^1.0.0:
|
|
5965
6035
|
version "1.2.0"
|
|
5966
6036
|
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d"
|
|
@@ -5996,6 +6066,13 @@ strip-ansi@^5.0.0:
|
|
|
5996
6066
|
dependencies:
|
|
5997
6067
|
ansi-regex "^4.0.0"
|
|
5998
6068
|
|
|
6069
|
+
strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
|
6070
|
+
version "5.2.0"
|
|
6071
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
|
6072
|
+
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
|
6073
|
+
dependencies:
|
|
6074
|
+
ansi-regex "^4.1.0"
|
|
6075
|
+
|
|
5999
6076
|
strip-bom@^3.0.0:
|
|
6000
6077
|
version "3.0.0"
|
|
6001
6078
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
|
@@ -6011,20 +6088,20 @@ strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
|
|
|
6011
6088
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
|
6012
6089
|
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
|
6013
6090
|
|
|
6014
|
-
supports-color@^
|
|
6015
|
-
version "5.5.0"
|
|
6016
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
6017
|
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
6018
|
-
dependencies:
|
|
6019
|
-
has-flag "^3.0.0"
|
|
6020
|
-
|
|
6021
|
-
supports-color@^6.0.0, supports-color@^6.1.0:
|
|
6091
|
+
supports-color@6.1.0, supports-color@^6.0.0, supports-color@^6.1.0:
|
|
6022
6092
|
version "6.1.0"
|
|
6023
6093
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
|
|
6024
6094
|
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
|
|
6025
6095
|
dependencies:
|
|
6026
6096
|
has-flag "^3.0.0"
|
|
6027
6097
|
|
|
6098
|
+
supports-color@^5.3.0:
|
|
6099
|
+
version "5.5.0"
|
|
6100
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
6101
|
+
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
6102
|
+
dependencies:
|
|
6103
|
+
has-flag "^3.0.0"
|
|
6104
|
+
|
|
6028
6105
|
symbol-tree@^3.2.2:
|
|
6029
6106
|
version "3.2.2"
|
|
6030
6107
|
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
|
|
@@ -6040,10 +6117,10 @@ table@^5.2.3:
|
|
|
6040
6117
|
slice-ansi "^2.1.0"
|
|
6041
6118
|
string-width "^3.0.0"
|
|
6042
6119
|
|
|
6043
|
-
tapable@^1.0.0, tapable@^1.1.
|
|
6044
|
-
version "1.1.
|
|
6045
|
-
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.
|
|
6046
|
-
integrity sha512-
|
|
6120
|
+
tapable@^1.0.0, tapable@^1.1.3:
|
|
6121
|
+
version "1.1.3"
|
|
6122
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
|
|
6123
|
+
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
|
|
6047
6124
|
|
|
6048
6125
|
tar@^4:
|
|
6049
6126
|
version "4.4.8"
|
|
@@ -6058,28 +6135,29 @@ tar@^4:
|
|
|
6058
6135
|
safe-buffer "^5.1.2"
|
|
6059
6136
|
yallist "^3.0.2"
|
|
6060
6137
|
|
|
6061
|
-
terser-webpack-plugin@^1.1
|
|
6062
|
-
version "1.
|
|
6063
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.
|
|
6064
|
-
integrity sha512-
|
|
6138
|
+
terser-webpack-plugin@^1.4.1:
|
|
6139
|
+
version "1.4.1"
|
|
6140
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4"
|
|
6141
|
+
integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg==
|
|
6065
6142
|
dependencies:
|
|
6066
|
-
cacache "^
|
|
6067
|
-
find-cache-dir "^2.
|
|
6143
|
+
cacache "^12.0.2"
|
|
6144
|
+
find-cache-dir "^2.1.0"
|
|
6145
|
+
is-wsl "^1.1.0"
|
|
6068
6146
|
schema-utils "^1.0.0"
|
|
6069
|
-
serialize-javascript "^1.
|
|
6147
|
+
serialize-javascript "^1.7.0"
|
|
6070
6148
|
source-map "^0.6.1"
|
|
6071
|
-
terser "^
|
|
6072
|
-
webpack-sources "^1.
|
|
6073
|
-
worker-farm "^1.
|
|
6149
|
+
terser "^4.1.2"
|
|
6150
|
+
webpack-sources "^1.4.0"
|
|
6151
|
+
worker-farm "^1.7.0"
|
|
6074
6152
|
|
|
6075
|
-
terser@^
|
|
6076
|
-
version "
|
|
6077
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-
|
|
6078
|
-
integrity sha512-
|
|
6153
|
+
terser@^4.1.2:
|
|
6154
|
+
version "4.1.2"
|
|
6155
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.2.tgz#b2656c8a506f7ce805a3f300a2ff48db022fa391"
|
|
6156
|
+
integrity sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw==
|
|
6079
6157
|
dependencies:
|
|
6080
|
-
commander "
|
|
6158
|
+
commander "^2.20.0"
|
|
6081
6159
|
source-map "~0.6.1"
|
|
6082
|
-
source-map-support "~0.5.
|
|
6160
|
+
source-map-support "~0.5.12"
|
|
6083
6161
|
|
|
6084
6162
|
test-exclude@^5.0.0:
|
|
6085
6163
|
version "5.1.0"
|
|
@@ -6360,10 +6438,10 @@ uuid@^3.3.2:
|
|
|
6360
6438
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
|
|
6361
6439
|
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
|
|
6362
6440
|
|
|
6363
|
-
v8-compile-cache
|
|
6364
|
-
version "2.0.
|
|
6365
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.
|
|
6366
|
-
integrity sha512-
|
|
6441
|
+
v8-compile-cache@2.0.3:
|
|
6442
|
+
version "2.0.3"
|
|
6443
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe"
|
|
6444
|
+
integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==
|
|
6367
6445
|
|
|
6368
6446
|
validate-npm-package-license@^3.0.1:
|
|
6369
6447
|
version "3.0.4"
|
|
@@ -6382,12 +6460,10 @@ verror@1.10.0:
|
|
|
6382
6460
|
core-util-is "1.0.2"
|
|
6383
6461
|
extsprintf "^1.2.0"
|
|
6384
6462
|
|
|
6385
|
-
vm-browserify
|
|
6386
|
-
version "
|
|
6387
|
-
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-
|
|
6388
|
-
integrity
|
|
6389
|
-
dependencies:
|
|
6390
|
-
indexof "0.0.1"
|
|
6463
|
+
vm-browserify@^1.0.1:
|
|
6464
|
+
version "1.1.0"
|
|
6465
|
+
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019"
|
|
6466
|
+
integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==
|
|
6391
6467
|
|
|
6392
6468
|
w3c-hr-time@^1.0.1:
|
|
6393
6469
|
version "1.0.1"
|
|
@@ -6396,7 +6472,7 @@ w3c-hr-time@^1.0.1:
|
|
|
6396
6472
|
dependencies:
|
|
6397
6473
|
browser-process-hrtime "^0.1.2"
|
|
6398
6474
|
|
|
6399
|
-
wait-for-expect@^1.
|
|
6475
|
+
wait-for-expect@^1.2.0:
|
|
6400
6476
|
version "1.2.0"
|
|
6401
6477
|
resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.2.0.tgz#fdab6a26e87d2039101db88bff3d8158e5c3e13f"
|
|
6402
6478
|
integrity sha512-EJhKpA+5UHixduMBEGhTFuLuVgQBKWxkFbefOdj2bbk2/OpA5Opsc4aUTGmF+qJ+v3kTGxDRNYwKaT4j6g5n8Q==
|
|
@@ -6408,7 +6484,7 @@ walker@^1.0.7, walker@~1.0.5:
|
|
|
6408
6484
|
dependencies:
|
|
6409
6485
|
makeerror "1.0.x"
|
|
6410
6486
|
|
|
6411
|
-
watchpack@^1.
|
|
6487
|
+
watchpack@^1.6.0:
|
|
6412
6488
|
version "1.6.0"
|
|
6413
6489
|
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
|
|
6414
6490
|
integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==
|
|
@@ -6422,60 +6498,59 @@ webidl-conversions@^4.0.2:
|
|
|
6422
6498
|
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
|
|
6423
6499
|
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
|
|
6424
6500
|
|
|
6425
|
-
webpack-cli@^3.3.
|
|
6426
|
-
version "3.3.
|
|
6427
|
-
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.
|
|
6428
|
-
integrity sha512-
|
|
6429
|
-
dependencies:
|
|
6430
|
-
chalk "
|
|
6431
|
-
cross-spawn "
|
|
6432
|
-
enhanced-resolve "
|
|
6433
|
-
findup-sync "
|
|
6434
|
-
global-modules "
|
|
6435
|
-
import-local "
|
|
6436
|
-
interpret "
|
|
6437
|
-
loader-utils "
|
|
6438
|
-
supports-color "
|
|
6439
|
-
v8-compile-cache "
|
|
6440
|
-
yargs "
|
|
6441
|
-
|
|
6442
|
-
webpack-sources@^1.
|
|
6443
|
-
version "1.
|
|
6444
|
-
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.
|
|
6445
|
-
integrity sha512-
|
|
6501
|
+
webpack-cli@^3.3.6:
|
|
6502
|
+
version "3.3.6"
|
|
6503
|
+
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.6.tgz#2c8c399a2642133f8d736a359007a052e060032c"
|
|
6504
|
+
integrity sha512-0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A==
|
|
6505
|
+
dependencies:
|
|
6506
|
+
chalk "2.4.2"
|
|
6507
|
+
cross-spawn "6.0.5"
|
|
6508
|
+
enhanced-resolve "4.1.0"
|
|
6509
|
+
findup-sync "3.0.0"
|
|
6510
|
+
global-modules "2.0.0"
|
|
6511
|
+
import-local "2.0.0"
|
|
6512
|
+
interpret "1.2.0"
|
|
6513
|
+
loader-utils "1.2.3"
|
|
6514
|
+
supports-color "6.1.0"
|
|
6515
|
+
v8-compile-cache "2.0.3"
|
|
6516
|
+
yargs "13.2.4"
|
|
6517
|
+
|
|
6518
|
+
webpack-sources@^1.4.0, webpack-sources@^1.4.1:
|
|
6519
|
+
version "1.4.1"
|
|
6520
|
+
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.1.tgz#b91b2c5b1c4e890ff50d1d35b7fa3657040da1da"
|
|
6521
|
+
integrity sha512-XSz38193PTo/1csJabKaV4b53uRVotlMgqJXm3s3eje0Bu6gQTxYDqpD38CmQfDBA+gN+QqaGjasuC8I/7eW3Q==
|
|
6446
6522
|
dependencies:
|
|
6447
6523
|
source-list-map "^2.0.0"
|
|
6448
6524
|
source-map "~0.6.1"
|
|
6449
6525
|
|
|
6450
|
-
webpack@^4.
|
|
6451
|
-
version "4.
|
|
6452
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.
|
|
6453
|
-
integrity sha512
|
|
6526
|
+
webpack@^4.39.1:
|
|
6527
|
+
version "4.39.1"
|
|
6528
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.39.1.tgz#60ed9fb2b72cd60f26ea526c404d2a4cc97a1bd8"
|
|
6529
|
+
integrity sha512-/LAb2TJ2z+eVwisldp3dqTEoNhzp/TLCZlmZm3GGGAlnfIWDgOEE758j/9atklNLfRyhKbZTCOIoPqLJXeBLbQ==
|
|
6454
6530
|
dependencies:
|
|
6455
6531
|
"@webassemblyjs/ast" "1.8.5"
|
|
6456
6532
|
"@webassemblyjs/helper-module-context" "1.8.5"
|
|
6457
6533
|
"@webassemblyjs/wasm-edit" "1.8.5"
|
|
6458
6534
|
"@webassemblyjs/wasm-parser" "1.8.5"
|
|
6459
|
-
acorn "^6.
|
|
6460
|
-
|
|
6461
|
-
ajv "^
|
|
6462
|
-
|
|
6463
|
-
chrome-trace-event "^1.0.0"
|
|
6535
|
+
acorn "^6.2.1"
|
|
6536
|
+
ajv "^6.10.2"
|
|
6537
|
+
ajv-keywords "^3.4.1"
|
|
6538
|
+
chrome-trace-event "^1.0.2"
|
|
6464
6539
|
enhanced-resolve "^4.1.0"
|
|
6465
|
-
eslint-scope "^4.0.
|
|
6540
|
+
eslint-scope "^4.0.3"
|
|
6466
6541
|
json-parse-better-errors "^1.0.2"
|
|
6467
|
-
loader-runner "^2.
|
|
6468
|
-
loader-utils "^1.
|
|
6469
|
-
memory-fs "
|
|
6470
|
-
micromatch "^3.1.
|
|
6471
|
-
mkdirp "
|
|
6472
|
-
neo-async "^2.
|
|
6473
|
-
node-libs-browser "^2.
|
|
6542
|
+
loader-runner "^2.4.0"
|
|
6543
|
+
loader-utils "^1.2.3"
|
|
6544
|
+
memory-fs "^0.4.1"
|
|
6545
|
+
micromatch "^3.1.10"
|
|
6546
|
+
mkdirp "^0.5.1"
|
|
6547
|
+
neo-async "^2.6.1"
|
|
6548
|
+
node-libs-browser "^2.2.1"
|
|
6474
6549
|
schema-utils "^1.0.0"
|
|
6475
|
-
tapable "^1.1.
|
|
6476
|
-
terser-webpack-plugin "^1.1
|
|
6477
|
-
watchpack "^1.
|
|
6478
|
-
webpack-sources "^1.
|
|
6550
|
+
tapable "^1.1.3"
|
|
6551
|
+
terser-webpack-plugin "^1.4.1"
|
|
6552
|
+
watchpack "^1.6.0"
|
|
6553
|
+
webpack-sources "^1.4.1"
|
|
6479
6554
|
|
|
6480
6555
|
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
|
|
6481
6556
|
version "1.0.5"
|
|
@@ -6512,7 +6587,7 @@ which-module@^2.0.0:
|
|
|
6512
6587
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
|
6513
6588
|
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
|
6514
6589
|
|
|
6515
|
-
which@^1.2.14, which@^1.2.9, which@^1.3.0:
|
|
6590
|
+
which@^1.2.14, which@^1.2.9, which@^1.3.0, which@^1.3.1:
|
|
6516
6591
|
version "1.3.1"
|
|
6517
6592
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
|
6518
6593
|
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
|
@@ -6536,10 +6611,10 @@ wordwrap@~1.0.0:
|
|
|
6536
6611
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
|
6537
6612
|
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
|
|
6538
6613
|
|
|
6539
|
-
worker-farm@^1.
|
|
6540
|
-
version "1.
|
|
6541
|
-
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.
|
|
6542
|
-
integrity sha512-
|
|
6614
|
+
worker-farm@^1.7.0:
|
|
6615
|
+
version "1.7.0"
|
|
6616
|
+
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
|
|
6617
|
+
integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
|
|
6543
6618
|
dependencies:
|
|
6544
6619
|
errno "~0.1.7"
|
|
6545
6620
|
|
|
@@ -6551,6 +6626,15 @@ wrap-ansi@^2.0.0:
|
|
|
6551
6626
|
string-width "^1.0.1"
|
|
6552
6627
|
strip-ansi "^3.0.1"
|
|
6553
6628
|
|
|
6629
|
+
wrap-ansi@^5.1.0:
|
|
6630
|
+
version "5.1.0"
|
|
6631
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
|
|
6632
|
+
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
|
|
6633
|
+
dependencies:
|
|
6634
|
+
ansi-styles "^3.2.0"
|
|
6635
|
+
string-width "^3.0.0"
|
|
6636
|
+
strip-ansi "^5.0.0"
|
|
6637
|
+
|
|
6554
6638
|
wrappy@1:
|
|
6555
6639
|
version "1.0.2"
|
|
6556
6640
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
@@ -6607,15 +6691,32 @@ yargs-parser@^11.1.1:
|
|
|
6607
6691
|
camelcase "^5.0.0"
|
|
6608
6692
|
decamelize "^1.2.0"
|
|
6609
6693
|
|
|
6610
|
-
yargs-parser@^13.
|
|
6611
|
-
version "13.
|
|
6612
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.
|
|
6613
|
-
integrity sha512-
|
|
6694
|
+
yargs-parser@^13.1.0:
|
|
6695
|
+
version "13.1.0"
|
|
6696
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.0.tgz#7016b6dd03e28e1418a510e258be4bff5a31138f"
|
|
6697
|
+
integrity sha512-Yq+32PrijHRri0vVKQEm+ys8mbqWjLiwQkMFNXEENutzLPP0bE4Lcd4iA3OQY5HF+GD3xXxf0MEHb8E4/SA3AA==
|
|
6614
6698
|
dependencies:
|
|
6615
6699
|
camelcase "^5.0.0"
|
|
6616
6700
|
decamelize "^1.2.0"
|
|
6617
6701
|
|
|
6618
|
-
yargs
|
|
6702
|
+
yargs@13.2.4:
|
|
6703
|
+
version "13.2.4"
|
|
6704
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83"
|
|
6705
|
+
integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==
|
|
6706
|
+
dependencies:
|
|
6707
|
+
cliui "^5.0.0"
|
|
6708
|
+
find-up "^3.0.0"
|
|
6709
|
+
get-caller-file "^2.0.1"
|
|
6710
|
+
os-locale "^3.1.0"
|
|
6711
|
+
require-directory "^2.1.1"
|
|
6712
|
+
require-main-filename "^2.0.0"
|
|
6713
|
+
set-blocking "^2.0.0"
|
|
6714
|
+
string-width "^3.0.0"
|
|
6715
|
+
which-module "^2.0.0"
|
|
6716
|
+
y18n "^4.0.0"
|
|
6717
|
+
yargs-parser "^13.1.0"
|
|
6718
|
+
|
|
6719
|
+
yargs@^12.0.2:
|
|
6619
6720
|
version "12.0.5"
|
|
6620
6721
|
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
|
|
6621
6722
|
integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
|