webpacker 4.0.2 → 4.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +17 -9
- data/CHANGELOG.md +4 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +55 -64
- data/README.md +10 -14
- data/docs/assets.md +20 -10
- data/docs/css.md +54 -1
- data/docs/deployment.md +16 -0
- data/docs/engines.md +8 -0
- data/docs/es6.md +5 -4
- data/docs/troubleshooting.md +9 -0
- data/docs/v4-upgrade.md +12 -2
- data/docs/webpack.md +3 -4
- data/gemfiles/Gemfile-rails-edge +1 -2
- data/gemfiles/Gemfile-rails.4.2.x +1 -2
- data/gemfiles/Gemfile-rails.5.0.x +1 -2
- data/gemfiles/Gemfile-rails.5.1.x +1 -2
- data/gemfiles/Gemfile-rails.5.2.x +1 -2
- data/lib/install/config/babel.config.js +3 -1
- data/lib/install/config/webpacker.yml +1 -1
- data/lib/install/elm.rb +2 -2
- data/lib/install/examples/react/babel.config.js +1 -0
- data/lib/install/examples/vue/hello_vue.js +2 -3
- data/lib/tasks/webpacker/compile.rake +8 -5
- data/lib/webpacker/compiler.rb +8 -4
- data/lib/webpacker/dev_server_runner.rb +6 -0
- data/lib/webpacker/helper.rb +1 -1
- data/lib/webpacker/version.rb +1 -1
- data/lib/webpacker/webpack_runner.rb +6 -0
- data/package.json +26 -24
- data/package/environments/__tests__/base.js +2 -2
- data/package/environments/base.js +2 -2
- data/package/rules/node_modules.js +1 -1
- data/webpacker.gemspec +2 -1
- data/yarn.lock +1335 -1103
- metadata +29 -10
@@ -31,8 +31,8 @@ describe('Environment', () => {
|
|
31
31
|
|
32
32
|
test('should return output', () => {
|
33
33
|
const config = environment.toWebpackConfig()
|
34
|
-
expect(config.output.filename).toEqual('js/[name]-[
|
35
|
-
expect(config.output.chunkFilename).toEqual('js/[name]-[
|
34
|
+
expect(config.output.filename).toEqual('js/[name]-[contenthash].js')
|
35
|
+
expect(config.output.chunkFilename).toEqual('js/[name]-[contenthash].chunk.js')
|
36
36
|
})
|
37
37
|
|
38
38
|
test('should return default loader rules for each file in config/loaders', () => {
|
@@ -83,8 +83,8 @@ const getModulePaths = () => {
|
|
83
83
|
const getBaseConfig = () => new ConfigObject({
|
84
84
|
mode: 'production',
|
85
85
|
output: {
|
86
|
-
filename: 'js/[name]-[
|
87
|
-
chunkFilename: 'js/[name]-[
|
86
|
+
filename: 'js/[name]-[contenthash].js',
|
87
|
+
chunkFilename: 'js/[name]-[contenthash].chunk.js',
|
88
88
|
hotUpdateChunkFilename: 'js/[id]-[hash].hot-update.js',
|
89
89
|
path: config.outputPath,
|
90
90
|
publicPath: config.publicPath
|
data/webpacker.gemspec
CHANGED
@@ -21,7 +21,8 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.add_dependency "railties", ">= 4.2"
|
22
22
|
s.add_dependency "rack-proxy", ">= 0.6.1"
|
23
23
|
|
24
|
-
s.add_development_dependency "bundler", "
|
24
|
+
s.add_development_dependency "bundler", "< 2.0", ">= 1.3.0"
|
25
|
+
s.add_development_dependency "rubocop", "< 0.69"
|
25
26
|
|
26
27
|
s.files = `git ls-files`.split("\n")
|
27
28
|
s.test_files = `git ls-files -- test/*`.split("\n")
|
data/yarn.lock
CHANGED
@@ -9,18 +9,18 @@
|
|
9
9
|
dependencies:
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
|
-
"@babel/core@^7.1.0", "@babel/core@^7.
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
15
|
-
integrity sha512-
|
12
|
+
"@babel/core@^7.1.0", "@babel/core@^7.4.5":
|
13
|
+
version "7.4.5"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a"
|
15
|
+
integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA==
|
16
16
|
dependencies:
|
17
17
|
"@babel/code-frame" "^7.0.0"
|
18
|
-
"@babel/generator" "^7.
|
19
|
-
"@babel/helpers" "^7.
|
20
|
-
"@babel/parser" "^7.
|
21
|
-
"@babel/template" "^7.
|
22
|
-
"@babel/traverse" "^7.
|
23
|
-
"@babel/types" "^7.
|
18
|
+
"@babel/generator" "^7.4.4"
|
19
|
+
"@babel/helpers" "^7.4.4"
|
20
|
+
"@babel/parser" "^7.4.5"
|
21
|
+
"@babel/template" "^7.4.4"
|
22
|
+
"@babel/traverse" "^7.4.5"
|
23
|
+
"@babel/types" "^7.4.4"
|
24
24
|
convert-source-map "^1.1.0"
|
25
25
|
debug "^4.1.0"
|
26
26
|
json5 "^2.1.0"
|
@@ -29,12 +29,12 @@
|
|
29
29
|
semver "^5.4.1"
|
30
30
|
source-map "^0.5.0"
|
31
31
|
|
32
|
-
"@babel/generator@^7.
|
33
|
-
version "7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
35
|
-
integrity sha512-
|
32
|
+
"@babel/generator@^7.4.0", "@babel/generator@^7.4.4":
|
33
|
+
version "7.4.4"
|
34
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041"
|
35
|
+
integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==
|
36
36
|
dependencies:
|
37
|
-
"@babel/types" "^7.
|
37
|
+
"@babel/types" "^7.4.4"
|
38
38
|
jsesc "^2.5.1"
|
39
39
|
lodash "^4.17.11"
|
40
40
|
source-map "^0.5.0"
|
@@ -55,35 +55,35 @@
|
|
55
55
|
"@babel/helper-explode-assignable-expression" "^7.1.0"
|
56
56
|
"@babel/types" "^7.0.0"
|
57
57
|
|
58
|
-
"@babel/helper-call-delegate@^7.
|
59
|
-
version "7.
|
60
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.
|
61
|
-
integrity sha512-
|
58
|
+
"@babel/helper-call-delegate@^7.4.4":
|
59
|
+
version "7.4.4"
|
60
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43"
|
61
|
+
integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==
|
62
62
|
dependencies:
|
63
|
-
"@babel/helper-hoist-variables" "^7.
|
64
|
-
"@babel/traverse" "^7.
|
65
|
-
"@babel/types" "^7.
|
63
|
+
"@babel/helper-hoist-variables" "^7.4.4"
|
64
|
+
"@babel/traverse" "^7.4.4"
|
65
|
+
"@babel/types" "^7.4.4"
|
66
66
|
|
67
|
-
"@babel/helper-create-class-features-plugin@^7.
|
68
|
-
version "7.
|
69
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
70
|
-
integrity sha512-
|
67
|
+
"@babel/helper-create-class-features-plugin@^7.4.4":
|
68
|
+
version "7.4.4"
|
69
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz#fc3d690af6554cc9efc607364a82d48f58736dba"
|
70
|
+
integrity sha512-UbBHIa2qeAGgyiNR9RszVF7bUHEdgS4JAUNT8SiqrAN6YJVxlOxeLr5pBzb5kan302dejJ9nla4RyKcR1XT6XA==
|
71
71
|
dependencies:
|
72
72
|
"@babel/helper-function-name" "^7.1.0"
|
73
73
|
"@babel/helper-member-expression-to-functions" "^7.0.0"
|
74
74
|
"@babel/helper-optimise-call-expression" "^7.0.0"
|
75
75
|
"@babel/helper-plugin-utils" "^7.0.0"
|
76
|
-
"@babel/helper-replace-supers" "^7.
|
77
|
-
"@babel/helper-split-export-declaration" "^7.
|
76
|
+
"@babel/helper-replace-supers" "^7.4.4"
|
77
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
78
78
|
|
79
|
-
"@babel/helper-define-map@^7.
|
80
|
-
version "7.
|
81
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.
|
82
|
-
integrity sha512-
|
79
|
+
"@babel/helper-define-map@^7.4.4":
|
80
|
+
version "7.4.4"
|
81
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a"
|
82
|
+
integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg==
|
83
83
|
dependencies:
|
84
84
|
"@babel/helper-function-name" "^7.1.0"
|
85
|
-
"@babel/types" "^7.
|
86
|
-
lodash "^4.17.
|
85
|
+
"@babel/types" "^7.4.4"
|
86
|
+
lodash "^4.17.11"
|
87
87
|
|
88
88
|
"@babel/helper-explode-assignable-expression@^7.1.0":
|
89
89
|
version "7.1.0"
|
@@ -109,12 +109,12 @@
|
|
109
109
|
dependencies:
|
110
110
|
"@babel/types" "^7.0.0"
|
111
111
|
|
112
|
-
"@babel/helper-hoist-variables@^7.
|
113
|
-
version "7.
|
114
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
115
|
-
integrity sha512-
|
112
|
+
"@babel/helper-hoist-variables@^7.4.4":
|
113
|
+
version "7.4.4"
|
114
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a"
|
115
|
+
integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==
|
116
116
|
dependencies:
|
117
|
-
"@babel/types" "^7.
|
117
|
+
"@babel/types" "^7.4.4"
|
118
118
|
|
119
119
|
"@babel/helper-member-expression-to-functions@^7.0.0":
|
120
120
|
version "7.0.0"
|
@@ -130,17 +130,17 @@
|
|
130
130
|
dependencies:
|
131
131
|
"@babel/types" "^7.0.0"
|
132
132
|
|
133
|
-
"@babel/helper-module-transforms@^7.1.0":
|
134
|
-
version "7.
|
135
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
136
|
-
integrity sha512-
|
133
|
+
"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4":
|
134
|
+
version "7.4.4"
|
135
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8"
|
136
|
+
integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w==
|
137
137
|
dependencies:
|
138
138
|
"@babel/helper-module-imports" "^7.0.0"
|
139
139
|
"@babel/helper-simple-access" "^7.1.0"
|
140
|
-
"@babel/helper-split-export-declaration" "^7.
|
141
|
-
"@babel/template" "^7.
|
142
|
-
"@babel/types" "^7.
|
143
|
-
lodash "^4.17.
|
140
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
141
|
+
"@babel/template" "^7.4.4"
|
142
|
+
"@babel/types" "^7.4.4"
|
143
|
+
lodash "^4.17.11"
|
144
144
|
|
145
145
|
"@babel/helper-optimise-call-expression@^7.0.0":
|
146
146
|
version "7.0.0"
|
@@ -154,12 +154,12 @@
|
|
154
154
|
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
|
155
155
|
integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
|
156
156
|
|
157
|
-
"@babel/helper-regex@^7.0.0":
|
158
|
-
version "7.
|
159
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.
|
160
|
-
integrity sha512-
|
157
|
+
"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4":
|
158
|
+
version "7.4.4"
|
159
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2"
|
160
|
+
integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q==
|
161
161
|
dependencies:
|
162
|
-
lodash "^4.17.
|
162
|
+
lodash "^4.17.11"
|
163
163
|
|
164
164
|
"@babel/helper-remap-async-to-generator@^7.1.0":
|
165
165
|
version "7.1.0"
|
@@ -172,15 +172,15 @@
|
|
172
172
|
"@babel/traverse" "^7.1.0"
|
173
173
|
"@babel/types" "^7.0.0"
|
174
174
|
|
175
|
-
"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.
|
176
|
-
version "7.
|
177
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
178
|
-
integrity sha512-
|
175
|
+
"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4":
|
176
|
+
version "7.4.4"
|
177
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27"
|
178
|
+
integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==
|
179
179
|
dependencies:
|
180
180
|
"@babel/helper-member-expression-to-functions" "^7.0.0"
|
181
181
|
"@babel/helper-optimise-call-expression" "^7.0.0"
|
182
|
-
"@babel/traverse" "^7.
|
183
|
-
"@babel/types" "^7.
|
182
|
+
"@babel/traverse" "^7.4.4"
|
183
|
+
"@babel/types" "^7.4.4"
|
184
184
|
|
185
185
|
"@babel/helper-simple-access@^7.1.0":
|
186
186
|
version "7.1.0"
|
@@ -190,12 +190,12 @@
|
|
190
190
|
"@babel/template" "^7.1.0"
|
191
191
|
"@babel/types" "^7.0.0"
|
192
192
|
|
193
|
-
"@babel/helper-split-export-declaration@^7.
|
194
|
-
version "7.
|
195
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.
|
196
|
-
integrity sha512-
|
193
|
+
"@babel/helper-split-export-declaration@^7.4.4":
|
194
|
+
version "7.4.4"
|
195
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
|
196
|
+
integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==
|
197
197
|
dependencies:
|
198
|
-
"@babel/types" "^7.
|
198
|
+
"@babel/types" "^7.4.4"
|
199
199
|
|
200
200
|
"@babel/helper-wrap-function@^7.1.0":
|
201
201
|
version "7.2.0"
|
@@ -207,14 +207,14 @@
|
|
207
207
|
"@babel/traverse" "^7.1.0"
|
208
208
|
"@babel/types" "^7.2.0"
|
209
209
|
|
210
|
-
"@babel/helpers@^7.
|
211
|
-
version "7.
|
212
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.
|
213
|
-
integrity sha512-
|
210
|
+
"@babel/helpers@^7.4.4":
|
211
|
+
version "7.4.4"
|
212
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5"
|
213
|
+
integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A==
|
214
214
|
dependencies:
|
215
|
-
"@babel/template" "^7.
|
216
|
-
"@babel/traverse" "^7.
|
217
|
-
"@babel/types" "^7.
|
215
|
+
"@babel/template" "^7.4.4"
|
216
|
+
"@babel/traverse" "^7.4.4"
|
217
|
+
"@babel/types" "^7.4.4"
|
218
218
|
|
219
219
|
"@babel/highlight@^7.0.0":
|
220
220
|
version "7.0.0"
|
@@ -225,10 +225,10 @@
|
|
225
225
|
esutils "^2.0.2"
|
226
226
|
js-tokens "^4.0.0"
|
227
227
|
|
228
|
-
"@babel/parser@^7.
|
229
|
-
version "7.
|
230
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.
|
231
|
-
integrity sha512-
|
228
|
+
"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5":
|
229
|
+
version "7.4.5"
|
230
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872"
|
231
|
+
integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==
|
232
232
|
|
233
233
|
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
|
234
234
|
version "7.2.0"
|
@@ -239,12 +239,12 @@
|
|
239
239
|
"@babel/helper-remap-async-to-generator" "^7.1.0"
|
240
240
|
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
241
241
|
|
242
|
-
"@babel/plugin-proposal-class-properties@^7.
|
243
|
-
version "7.
|
244
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.
|
245
|
-
integrity sha512-
|
242
|
+
"@babel/plugin-proposal-class-properties@^7.4.4":
|
243
|
+
version "7.4.4"
|
244
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce"
|
245
|
+
integrity sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg==
|
246
246
|
dependencies:
|
247
|
-
"@babel/helper-create-class-features-plugin" "^7.
|
247
|
+
"@babel/helper-create-class-features-plugin" "^7.4.4"
|
248
248
|
"@babel/helper-plugin-utils" "^7.0.0"
|
249
249
|
|
250
250
|
"@babel/plugin-proposal-json-strings@^7.2.0":
|
@@ -255,10 +255,10 @@
|
|
255
255
|
"@babel/helper-plugin-utils" "^7.0.0"
|
256
256
|
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
257
257
|
|
258
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
259
|
-
version "7.
|
260
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
261
|
-
integrity sha512-
|
258
|
+
"@babel/plugin-proposal-object-rest-spread@^7.4.4":
|
259
|
+
version "7.4.4"
|
260
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005"
|
261
|
+
integrity sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g==
|
262
262
|
dependencies:
|
263
263
|
"@babel/helper-plugin-utils" "^7.0.0"
|
264
264
|
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
@@ -271,14 +271,14 @@
|
|
271
271
|
"@babel/helper-plugin-utils" "^7.0.0"
|
272
272
|
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
273
273
|
|
274
|
-
"@babel/plugin-proposal-unicode-property-regex@^7.
|
275
|
-
version "7.
|
276
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.
|
277
|
-
integrity sha512-
|
274
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
|
275
|
+
version "7.4.4"
|
276
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78"
|
277
|
+
integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==
|
278
278
|
dependencies:
|
279
279
|
"@babel/helper-plugin-utils" "^7.0.0"
|
280
|
-
"@babel/helper-regex" "^7.
|
281
|
-
regexpu-core "^4.
|
280
|
+
"@babel/helper-regex" "^7.4.4"
|
281
|
+
regexpu-core "^4.5.4"
|
282
282
|
|
283
283
|
"@babel/plugin-syntax-async-generators@^7.2.0":
|
284
284
|
version "7.2.0"
|
@@ -322,10 +322,10 @@
|
|
322
322
|
dependencies:
|
323
323
|
"@babel/helper-plugin-utils" "^7.0.0"
|
324
324
|
|
325
|
-
"@babel/plugin-transform-async-to-generator@^7.
|
326
|
-
version "7.
|
327
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
328
|
-
integrity sha512-
|
325
|
+
"@babel/plugin-transform-async-to-generator@^7.4.4":
|
326
|
+
version "7.4.4"
|
327
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894"
|
328
|
+
integrity sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA==
|
329
329
|
dependencies:
|
330
330
|
"@babel/helper-module-imports" "^7.0.0"
|
331
331
|
"@babel/helper-plugin-utils" "^7.0.0"
|
@@ -338,26 +338,26 @@
|
|
338
338
|
dependencies:
|
339
339
|
"@babel/helper-plugin-utils" "^7.0.0"
|
340
340
|
|
341
|
-
"@babel/plugin-transform-block-scoping@^7.
|
342
|
-
version "7.
|
343
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
344
|
-
integrity sha512-
|
341
|
+
"@babel/plugin-transform-block-scoping@^7.4.4":
|
342
|
+
version "7.4.4"
|
343
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d"
|
344
|
+
integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA==
|
345
345
|
dependencies:
|
346
346
|
"@babel/helper-plugin-utils" "^7.0.0"
|
347
347
|
lodash "^4.17.11"
|
348
348
|
|
349
|
-
"@babel/plugin-transform-classes@^7.
|
350
|
-
version "7.
|
351
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
352
|
-
integrity sha512
|
349
|
+
"@babel/plugin-transform-classes@^7.4.4":
|
350
|
+
version "7.4.4"
|
351
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6"
|
352
|
+
integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw==
|
353
353
|
dependencies:
|
354
354
|
"@babel/helper-annotate-as-pure" "^7.0.0"
|
355
|
-
"@babel/helper-define-map" "^7.
|
355
|
+
"@babel/helper-define-map" "^7.4.4"
|
356
356
|
"@babel/helper-function-name" "^7.1.0"
|
357
357
|
"@babel/helper-optimise-call-expression" "^7.0.0"
|
358
358
|
"@babel/helper-plugin-utils" "^7.0.0"
|
359
|
-
"@babel/helper-replace-supers" "^7.
|
360
|
-
"@babel/helper-split-export-declaration" "^7.
|
359
|
+
"@babel/helper-replace-supers" "^7.4.4"
|
360
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
361
361
|
globals "^11.1.0"
|
362
362
|
|
363
363
|
"@babel/plugin-transform-computed-properties@^7.2.0":
|
@@ -367,21 +367,21 @@
|
|
367
367
|
dependencies:
|
368
368
|
"@babel/helper-plugin-utils" "^7.0.0"
|
369
369
|
|
370
|
-
"@babel/plugin-transform-destructuring@^7.
|
371
|
-
version "7.
|
372
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
373
|
-
integrity sha512
|
370
|
+
"@babel/plugin-transform-destructuring@^7.4.4":
|
371
|
+
version "7.4.4"
|
372
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f"
|
373
|
+
integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ==
|
374
374
|
dependencies:
|
375
375
|
"@babel/helper-plugin-utils" "^7.0.0"
|
376
376
|
|
377
|
-
"@babel/plugin-transform-dotall-regex@^7.
|
378
|
-
version "7.
|
379
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
380
|
-
integrity sha512-
|
377
|
+
"@babel/plugin-transform-dotall-regex@^7.4.4":
|
378
|
+
version "7.4.4"
|
379
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3"
|
380
|
+
integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==
|
381
381
|
dependencies:
|
382
382
|
"@babel/helper-plugin-utils" "^7.0.0"
|
383
|
-
"@babel/helper-regex" "^7.
|
384
|
-
regexpu-core "^4.
|
383
|
+
"@babel/helper-regex" "^7.4.4"
|
384
|
+
regexpu-core "^4.5.4"
|
385
385
|
|
386
386
|
"@babel/plugin-transform-duplicate-keys@^7.2.0":
|
387
387
|
version "7.2.0"
|
@@ -398,17 +398,17 @@
|
|
398
398
|
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0"
|
399
399
|
"@babel/helper-plugin-utils" "^7.0.0"
|
400
400
|
|
401
|
-
"@babel/plugin-transform-for-of@^7.
|
402
|
-
version "7.
|
403
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
404
|
-
integrity sha512-
|
401
|
+
"@babel/plugin-transform-for-of@^7.4.4":
|
402
|
+
version "7.4.4"
|
403
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556"
|
404
|
+
integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==
|
405
405
|
dependencies:
|
406
406
|
"@babel/helper-plugin-utils" "^7.0.0"
|
407
407
|
|
408
|
-
"@babel/plugin-transform-function-name@^7.
|
409
|
-
version "7.
|
410
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
411
|
-
integrity sha512-
|
408
|
+
"@babel/plugin-transform-function-name@^7.4.4":
|
409
|
+
version "7.4.4"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad"
|
411
|
+
integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==
|
412
412
|
dependencies:
|
413
413
|
"@babel/helper-function-name" "^7.1.0"
|
414
414
|
"@babel/helper-plugin-utils" "^7.0.0"
|
@@ -420,6 +420,13 @@
|
|
420
420
|
dependencies:
|
421
421
|
"@babel/helper-plugin-utils" "^7.0.0"
|
422
422
|
|
423
|
+
"@babel/plugin-transform-member-expression-literals@^7.2.0":
|
424
|
+
version "7.2.0"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d"
|
426
|
+
integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==
|
427
|
+
dependencies:
|
428
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
429
|
+
|
423
430
|
"@babel/plugin-transform-modules-amd@^7.2.0":
|
424
431
|
version "7.2.0"
|
425
432
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6"
|
@@ -428,21 +435,21 @@
|
|
428
435
|
"@babel/helper-module-transforms" "^7.1.0"
|
429
436
|
"@babel/helper-plugin-utils" "^7.0.0"
|
430
437
|
|
431
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
432
|
-
version "7.
|
433
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
434
|
-
integrity sha512-
|
438
|
+
"@babel/plugin-transform-modules-commonjs@^7.4.4":
|
439
|
+
version "7.4.4"
|
440
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e"
|
441
|
+
integrity sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw==
|
435
442
|
dependencies:
|
436
|
-
"@babel/helper-module-transforms" "^7.
|
443
|
+
"@babel/helper-module-transforms" "^7.4.4"
|
437
444
|
"@babel/helper-plugin-utils" "^7.0.0"
|
438
445
|
"@babel/helper-simple-access" "^7.1.0"
|
439
446
|
|
440
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
441
|
-
version "7.
|
442
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
443
|
-
integrity sha512-
|
447
|
+
"@babel/plugin-transform-modules-systemjs@^7.4.4":
|
448
|
+
version "7.4.4"
|
449
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405"
|
450
|
+
integrity sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ==
|
444
451
|
dependencies:
|
445
|
-
"@babel/helper-hoist-variables" "^7.
|
452
|
+
"@babel/helper-hoist-variables" "^7.4.4"
|
446
453
|
"@babel/helper-plugin-utils" "^7.0.0"
|
447
454
|
|
448
455
|
"@babel/plugin-transform-modules-umd@^7.2.0":
|
@@ -453,17 +460,17 @@
|
|
453
460
|
"@babel/helper-module-transforms" "^7.1.0"
|
454
461
|
"@babel/helper-plugin-utils" "^7.0.0"
|
455
462
|
|
456
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
457
|
-
version "7.
|
458
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
459
|
-
integrity sha512-
|
463
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5":
|
464
|
+
version "7.4.5"
|
465
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106"
|
466
|
+
integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==
|
460
467
|
dependencies:
|
461
|
-
regexp-tree "^0.1.
|
468
|
+
regexp-tree "^0.1.6"
|
462
469
|
|
463
|
-
"@babel/plugin-transform-new-target@^7.
|
464
|
-
version "7.
|
465
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
466
|
-
integrity sha512-
|
470
|
+
"@babel/plugin-transform-new-target@^7.4.4":
|
471
|
+
version "7.4.4"
|
472
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5"
|
473
|
+
integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==
|
467
474
|
dependencies:
|
468
475
|
"@babel/helper-plugin-utils" "^7.0.0"
|
469
476
|
|
@@ -475,26 +482,40 @@
|
|
475
482
|
"@babel/helper-plugin-utils" "^7.0.0"
|
476
483
|
"@babel/helper-replace-supers" "^7.1.0"
|
477
484
|
|
478
|
-
"@babel/plugin-transform-parameters@^7.
|
479
|
-
version "7.
|
480
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
481
|
-
integrity sha512-
|
485
|
+
"@babel/plugin-transform-parameters@^7.4.4":
|
486
|
+
version "7.4.4"
|
487
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16"
|
488
|
+
integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==
|
482
489
|
dependencies:
|
483
|
-
"@babel/helper-call-delegate" "^7.
|
490
|
+
"@babel/helper-call-delegate" "^7.4.4"
|
484
491
|
"@babel/helper-get-function-arity" "^7.0.0"
|
485
492
|
"@babel/helper-plugin-utils" "^7.0.0"
|
486
493
|
|
487
|
-
"@babel/plugin-transform-
|
488
|
-
version "7.
|
489
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
490
|
-
integrity sha512-
|
494
|
+
"@babel/plugin-transform-property-literals@^7.2.0":
|
495
|
+
version "7.2.0"
|
496
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905"
|
497
|
+
integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==
|
491
498
|
dependencies:
|
492
|
-
|
499
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
493
500
|
|
494
|
-
"@babel/plugin-transform-
|
495
|
-
version "7.
|
496
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
497
|
-
integrity sha512-
|
501
|
+
"@babel/plugin-transform-regenerator@^7.4.5":
|
502
|
+
version "7.4.5"
|
503
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f"
|
504
|
+
integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==
|
505
|
+
dependencies:
|
506
|
+
regenerator-transform "^0.14.0"
|
507
|
+
|
508
|
+
"@babel/plugin-transform-reserved-words@^7.2.0":
|
509
|
+
version "7.2.0"
|
510
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634"
|
511
|
+
integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==
|
512
|
+
dependencies:
|
513
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
514
|
+
|
515
|
+
"@babel/plugin-transform-runtime@^7.4.4":
|
516
|
+
version "7.4.4"
|
517
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz#a50f5d16e9c3a4ac18a1a9f9803c107c380bce08"
|
518
|
+
integrity sha512-aMVojEjPszvau3NRg+TIH14ynZLvPewH4xhlCW1w6A3rkxTS1m4uwzRclYR9oS+rl/dr+kT+pzbfHuAWP/lc7Q==
|
498
519
|
dependencies:
|
499
520
|
"@babel/helper-module-imports" "^7.0.0"
|
500
521
|
"@babel/helper-plugin-utils" "^7.0.0"
|
@@ -523,10 +544,10 @@
|
|
523
544
|
"@babel/helper-plugin-utils" "^7.0.0"
|
524
545
|
"@babel/helper-regex" "^7.0.0"
|
525
546
|
|
526
|
-
"@babel/plugin-transform-template-literals@^7.
|
527
|
-
version "7.
|
528
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
529
|
-
integrity sha512-
|
547
|
+
"@babel/plugin-transform-template-literals@^7.4.4":
|
548
|
+
version "7.4.4"
|
549
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0"
|
550
|
+
integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==
|
530
551
|
dependencies:
|
531
552
|
"@babel/helper-annotate-as-pure" "^7.0.0"
|
532
553
|
"@babel/helper-plugin-utils" "^7.0.0"
|
@@ -538,121 +559,343 @@
|
|
538
559
|
dependencies:
|
539
560
|
"@babel/helper-plugin-utils" "^7.0.0"
|
540
561
|
|
541
|
-
"@babel/plugin-transform-unicode-regex@^7.
|
542
|
-
version "7.
|
543
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.
|
544
|
-
integrity sha512-
|
562
|
+
"@babel/plugin-transform-unicode-regex@^7.4.4":
|
563
|
+
version "7.4.4"
|
564
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f"
|
565
|
+
integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==
|
545
566
|
dependencies:
|
546
567
|
"@babel/helper-plugin-utils" "^7.0.0"
|
547
|
-
"@babel/helper-regex" "^7.
|
548
|
-
regexpu-core "^4.
|
549
|
-
|
550
|
-
"@babel/polyfill@^7.2.5":
|
551
|
-
version "7.2.5"
|
552
|
-
resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.2.5.tgz#6c54b964f71ad27edddc567d065e57e87ed7fa7d"
|
553
|
-
integrity sha512-8Y/t3MWThtMLYr0YNC/Q76tqN1w30+b0uQMeFUYauG2UGTR19zyUtFrAzT23zNtBxPp+LbE5E/nwV/q/r3y6ug==
|
554
|
-
dependencies:
|
555
|
-
core-js "^2.5.7"
|
556
|
-
regenerator-runtime "^0.12.0"
|
568
|
+
"@babel/helper-regex" "^7.4.4"
|
569
|
+
regexpu-core "^4.5.4"
|
557
570
|
|
558
|
-
"@babel/preset-env@^7.
|
559
|
-
version "7.
|
560
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
561
|
-
integrity sha512-
|
571
|
+
"@babel/preset-env@^7.4.5":
|
572
|
+
version "7.4.5"
|
573
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58"
|
574
|
+
integrity sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w==
|
562
575
|
dependencies:
|
563
576
|
"@babel/helper-module-imports" "^7.0.0"
|
564
577
|
"@babel/helper-plugin-utils" "^7.0.0"
|
565
578
|
"@babel/plugin-proposal-async-generator-functions" "^7.2.0"
|
566
579
|
"@babel/plugin-proposal-json-strings" "^7.2.0"
|
567
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
580
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.4.4"
|
568
581
|
"@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
|
569
|
-
"@babel/plugin-proposal-unicode-property-regex" "^7.
|
582
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
570
583
|
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
571
584
|
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
572
585
|
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
573
586
|
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
574
587
|
"@babel/plugin-transform-arrow-functions" "^7.2.0"
|
575
|
-
"@babel/plugin-transform-async-to-generator" "^7.
|
588
|
+
"@babel/plugin-transform-async-to-generator" "^7.4.4"
|
576
589
|
"@babel/plugin-transform-block-scoped-functions" "^7.2.0"
|
577
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
578
|
-
"@babel/plugin-transform-classes" "^7.
|
590
|
+
"@babel/plugin-transform-block-scoping" "^7.4.4"
|
591
|
+
"@babel/plugin-transform-classes" "^7.4.4"
|
579
592
|
"@babel/plugin-transform-computed-properties" "^7.2.0"
|
580
|
-
"@babel/plugin-transform-destructuring" "^7.
|
581
|
-
"@babel/plugin-transform-dotall-regex" "^7.
|
593
|
+
"@babel/plugin-transform-destructuring" "^7.4.4"
|
594
|
+
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
582
595
|
"@babel/plugin-transform-duplicate-keys" "^7.2.0"
|
583
596
|
"@babel/plugin-transform-exponentiation-operator" "^7.2.0"
|
584
|
-
"@babel/plugin-transform-for-of" "^7.
|
585
|
-
"@babel/plugin-transform-function-name" "^7.
|
597
|
+
"@babel/plugin-transform-for-of" "^7.4.4"
|
598
|
+
"@babel/plugin-transform-function-name" "^7.4.4"
|
586
599
|
"@babel/plugin-transform-literals" "^7.2.0"
|
600
|
+
"@babel/plugin-transform-member-expression-literals" "^7.2.0"
|
587
601
|
"@babel/plugin-transform-modules-amd" "^7.2.0"
|
588
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
589
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
602
|
+
"@babel/plugin-transform-modules-commonjs" "^7.4.4"
|
603
|
+
"@babel/plugin-transform-modules-systemjs" "^7.4.4"
|
590
604
|
"@babel/plugin-transform-modules-umd" "^7.2.0"
|
591
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.
|
592
|
-
"@babel/plugin-transform-new-target" "^7.
|
605
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5"
|
606
|
+
"@babel/plugin-transform-new-target" "^7.4.4"
|
593
607
|
"@babel/plugin-transform-object-super" "^7.2.0"
|
594
|
-
"@babel/plugin-transform-parameters" "^7.
|
595
|
-
"@babel/plugin-transform-
|
608
|
+
"@babel/plugin-transform-parameters" "^7.4.4"
|
609
|
+
"@babel/plugin-transform-property-literals" "^7.2.0"
|
610
|
+
"@babel/plugin-transform-regenerator" "^7.4.5"
|
611
|
+
"@babel/plugin-transform-reserved-words" "^7.2.0"
|
596
612
|
"@babel/plugin-transform-shorthand-properties" "^7.2.0"
|
597
613
|
"@babel/plugin-transform-spread" "^7.2.0"
|
598
614
|
"@babel/plugin-transform-sticky-regex" "^7.2.0"
|
599
|
-
"@babel/plugin-transform-template-literals" "^7.
|
615
|
+
"@babel/plugin-transform-template-literals" "^7.4.4"
|
600
616
|
"@babel/plugin-transform-typeof-symbol" "^7.2.0"
|
601
|
-
"@babel/plugin-transform-unicode-regex" "^7.
|
602
|
-
|
617
|
+
"@babel/plugin-transform-unicode-regex" "^7.4.4"
|
618
|
+
"@babel/types" "^7.4.4"
|
619
|
+
browserslist "^4.6.0"
|
620
|
+
core-js-compat "^3.1.1"
|
603
621
|
invariant "^2.2.2"
|
604
622
|
js-levenshtein "^1.1.3"
|
605
|
-
semver "^5.
|
623
|
+
semver "^5.5.0"
|
606
624
|
|
607
|
-
"@babel/runtime@^7.
|
608
|
-
version "7.
|
609
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
610
|
-
integrity sha512-
|
625
|
+
"@babel/runtime-corejs3@^7.4.5":
|
626
|
+
version "7.4.5"
|
627
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.4.5.tgz#7df89702351c5fdc34b5555544fcf11b4ea7051c"
|
628
|
+
integrity sha512-yxHpUObdpx4zbuLJOHIZkw43E4NbWGsGH+85kRUj+VEcdtjlqI0vDcAja9mwOHqD7/4vCZp69q6eztz/sFDibQ==
|
611
629
|
dependencies:
|
612
|
-
|
630
|
+
core-js-pure "^3.0.0"
|
631
|
+
regenerator-runtime "^0.13.2"
|
613
632
|
|
614
|
-
"@babel/
|
615
|
-
version "7.
|
616
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
617
|
-
integrity sha512-
|
633
|
+
"@babel/runtime@^7.4.2", "@babel/runtime@^7.4.5":
|
634
|
+
version "7.4.5"
|
635
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12"
|
636
|
+
integrity sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==
|
637
|
+
dependencies:
|
638
|
+
regenerator-runtime "^0.13.2"
|
639
|
+
|
640
|
+
"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4":
|
641
|
+
version "7.4.4"
|
642
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
|
643
|
+
integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
|
618
644
|
dependencies:
|
619
645
|
"@babel/code-frame" "^7.0.0"
|
620
|
-
"@babel/parser" "^7.
|
621
|
-
"@babel/types" "^7.
|
646
|
+
"@babel/parser" "^7.4.4"
|
647
|
+
"@babel/types" "^7.4.4"
|
622
648
|
|
623
|
-
"@babel/traverse@^7.
|
624
|
-
version "7.
|
625
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.
|
626
|
-
integrity sha512-
|
649
|
+
"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5":
|
650
|
+
version "7.4.5"
|
651
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216"
|
652
|
+
integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==
|
627
653
|
dependencies:
|
628
654
|
"@babel/code-frame" "^7.0.0"
|
629
|
-
"@babel/generator" "^7.
|
655
|
+
"@babel/generator" "^7.4.4"
|
630
656
|
"@babel/helper-function-name" "^7.1.0"
|
631
|
-
"@babel/helper-split-export-declaration" "^7.
|
632
|
-
"@babel/parser" "^7.
|
633
|
-
"@babel/types" "^7.
|
657
|
+
"@babel/helper-split-export-declaration" "^7.4.4"
|
658
|
+
"@babel/parser" "^7.4.5"
|
659
|
+
"@babel/types" "^7.4.4"
|
634
660
|
debug "^4.1.0"
|
635
661
|
globals "^11.1.0"
|
636
662
|
lodash "^4.17.11"
|
637
663
|
|
638
|
-
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.
|
639
|
-
version "7.
|
640
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
641
|
-
integrity sha512-
|
664
|
+
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4":
|
665
|
+
version "7.4.4"
|
666
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0"
|
667
|
+
integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==
|
642
668
|
dependencies:
|
643
669
|
esutils "^2.0.2"
|
644
670
|
lodash "^4.17.11"
|
645
671
|
to-fast-properties "^2.0.0"
|
646
672
|
|
673
|
+
"@cnakazawa/watch@^1.0.3":
|
674
|
+
version "1.0.3"
|
675
|
+
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
|
676
|
+
integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
|
677
|
+
dependencies:
|
678
|
+
exec-sh "^0.3.2"
|
679
|
+
minimist "^1.2.0"
|
680
|
+
|
647
681
|
"@csstools/convert-colors@^1.4.0":
|
648
682
|
version "1.4.0"
|
649
683
|
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
|
650
684
|
integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
|
651
685
|
|
686
|
+
"@jest/console@^24.7.1":
|
687
|
+
version "24.7.1"
|
688
|
+
resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545"
|
689
|
+
integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==
|
690
|
+
dependencies:
|
691
|
+
"@jest/source-map" "^24.3.0"
|
692
|
+
chalk "^2.0.1"
|
693
|
+
slash "^2.0.0"
|
694
|
+
|
695
|
+
"@jest/core@^24.8.0":
|
696
|
+
version "24.8.0"
|
697
|
+
resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b"
|
698
|
+
integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==
|
699
|
+
dependencies:
|
700
|
+
"@jest/console" "^24.7.1"
|
701
|
+
"@jest/reporters" "^24.8.0"
|
702
|
+
"@jest/test-result" "^24.8.0"
|
703
|
+
"@jest/transform" "^24.8.0"
|
704
|
+
"@jest/types" "^24.8.0"
|
705
|
+
ansi-escapes "^3.0.0"
|
706
|
+
chalk "^2.0.1"
|
707
|
+
exit "^0.1.2"
|
708
|
+
graceful-fs "^4.1.15"
|
709
|
+
jest-changed-files "^24.8.0"
|
710
|
+
jest-config "^24.8.0"
|
711
|
+
jest-haste-map "^24.8.0"
|
712
|
+
jest-message-util "^24.8.0"
|
713
|
+
jest-regex-util "^24.3.0"
|
714
|
+
jest-resolve-dependencies "^24.8.0"
|
715
|
+
jest-runner "^24.8.0"
|
716
|
+
jest-runtime "^24.8.0"
|
717
|
+
jest-snapshot "^24.8.0"
|
718
|
+
jest-util "^24.8.0"
|
719
|
+
jest-validate "^24.8.0"
|
720
|
+
jest-watcher "^24.8.0"
|
721
|
+
micromatch "^3.1.10"
|
722
|
+
p-each-series "^1.0.0"
|
723
|
+
pirates "^4.0.1"
|
724
|
+
realpath-native "^1.1.0"
|
725
|
+
rimraf "^2.5.4"
|
726
|
+
strip-ansi "^5.0.0"
|
727
|
+
|
728
|
+
"@jest/environment@^24.8.0":
|
729
|
+
version "24.8.0"
|
730
|
+
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac"
|
731
|
+
integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==
|
732
|
+
dependencies:
|
733
|
+
"@jest/fake-timers" "^24.8.0"
|
734
|
+
"@jest/transform" "^24.8.0"
|
735
|
+
"@jest/types" "^24.8.0"
|
736
|
+
jest-mock "^24.8.0"
|
737
|
+
|
738
|
+
"@jest/fake-timers@^24.8.0":
|
739
|
+
version "24.8.0"
|
740
|
+
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1"
|
741
|
+
integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==
|
742
|
+
dependencies:
|
743
|
+
"@jest/types" "^24.8.0"
|
744
|
+
jest-message-util "^24.8.0"
|
745
|
+
jest-mock "^24.8.0"
|
746
|
+
|
747
|
+
"@jest/reporters@^24.8.0":
|
748
|
+
version "24.8.0"
|
749
|
+
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729"
|
750
|
+
integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==
|
751
|
+
dependencies:
|
752
|
+
"@jest/environment" "^24.8.0"
|
753
|
+
"@jest/test-result" "^24.8.0"
|
754
|
+
"@jest/transform" "^24.8.0"
|
755
|
+
"@jest/types" "^24.8.0"
|
756
|
+
chalk "^2.0.1"
|
757
|
+
exit "^0.1.2"
|
758
|
+
glob "^7.1.2"
|
759
|
+
istanbul-lib-coverage "^2.0.2"
|
760
|
+
istanbul-lib-instrument "^3.0.1"
|
761
|
+
istanbul-lib-report "^2.0.4"
|
762
|
+
istanbul-lib-source-maps "^3.0.1"
|
763
|
+
istanbul-reports "^2.1.1"
|
764
|
+
jest-haste-map "^24.8.0"
|
765
|
+
jest-resolve "^24.8.0"
|
766
|
+
jest-runtime "^24.8.0"
|
767
|
+
jest-util "^24.8.0"
|
768
|
+
jest-worker "^24.6.0"
|
769
|
+
node-notifier "^5.2.1"
|
770
|
+
slash "^2.0.0"
|
771
|
+
source-map "^0.6.0"
|
772
|
+
string-length "^2.0.0"
|
773
|
+
|
774
|
+
"@jest/source-map@^24.3.0":
|
775
|
+
version "24.3.0"
|
776
|
+
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28"
|
777
|
+
integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==
|
778
|
+
dependencies:
|
779
|
+
callsites "^3.0.0"
|
780
|
+
graceful-fs "^4.1.15"
|
781
|
+
source-map "^0.6.0"
|
782
|
+
|
783
|
+
"@jest/test-result@^24.8.0":
|
784
|
+
version "24.8.0"
|
785
|
+
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3"
|
786
|
+
integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==
|
787
|
+
dependencies:
|
788
|
+
"@jest/console" "^24.7.1"
|
789
|
+
"@jest/types" "^24.8.0"
|
790
|
+
"@types/istanbul-lib-coverage" "^2.0.0"
|
791
|
+
|
792
|
+
"@jest/test-sequencer@^24.8.0":
|
793
|
+
version "24.8.0"
|
794
|
+
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b"
|
795
|
+
integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==
|
796
|
+
dependencies:
|
797
|
+
"@jest/test-result" "^24.8.0"
|
798
|
+
jest-haste-map "^24.8.0"
|
799
|
+
jest-runner "^24.8.0"
|
800
|
+
jest-runtime "^24.8.0"
|
801
|
+
|
802
|
+
"@jest/transform@^24.8.0":
|
803
|
+
version "24.8.0"
|
804
|
+
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5"
|
805
|
+
integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==
|
806
|
+
dependencies:
|
807
|
+
"@babel/core" "^7.1.0"
|
808
|
+
"@jest/types" "^24.8.0"
|
809
|
+
babel-plugin-istanbul "^5.1.0"
|
810
|
+
chalk "^2.0.1"
|
811
|
+
convert-source-map "^1.4.0"
|
812
|
+
fast-json-stable-stringify "^2.0.0"
|
813
|
+
graceful-fs "^4.1.15"
|
814
|
+
jest-haste-map "^24.8.0"
|
815
|
+
jest-regex-util "^24.3.0"
|
816
|
+
jest-util "^24.8.0"
|
817
|
+
micromatch "^3.1.10"
|
818
|
+
realpath-native "^1.1.0"
|
819
|
+
slash "^2.0.0"
|
820
|
+
source-map "^0.6.1"
|
821
|
+
write-file-atomic "2.4.1"
|
822
|
+
|
823
|
+
"@jest/types@^24.8.0":
|
824
|
+
version "24.8.0"
|
825
|
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad"
|
826
|
+
integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==
|
827
|
+
dependencies:
|
828
|
+
"@types/istanbul-lib-coverage" "^2.0.0"
|
829
|
+
"@types/istanbul-reports" "^1.1.1"
|
830
|
+
"@types/yargs" "^12.0.9"
|
831
|
+
|
832
|
+
"@types/babel__core@^7.1.0":
|
833
|
+
version "7.1.2"
|
834
|
+
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f"
|
835
|
+
integrity sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==
|
836
|
+
dependencies:
|
837
|
+
"@babel/parser" "^7.1.0"
|
838
|
+
"@babel/types" "^7.0.0"
|
839
|
+
"@types/babel__generator" "*"
|
840
|
+
"@types/babel__template" "*"
|
841
|
+
"@types/babel__traverse" "*"
|
842
|
+
|
843
|
+
"@types/babel__generator@*":
|
844
|
+
version "7.0.2"
|
845
|
+
resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc"
|
846
|
+
integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==
|
847
|
+
dependencies:
|
848
|
+
"@babel/types" "^7.0.0"
|
849
|
+
|
850
|
+
"@types/babel__template@*":
|
851
|
+
version "7.0.2"
|
852
|
+
resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
|
853
|
+
integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
|
854
|
+
dependencies:
|
855
|
+
"@babel/parser" "^7.1.0"
|
856
|
+
"@babel/types" "^7.0.0"
|
857
|
+
|
858
|
+
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
|
859
|
+
version "7.0.6"
|
860
|
+
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz#328dd1a8fc4cfe3c8458be9477b219ea158fd7b2"
|
861
|
+
integrity sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw==
|
862
|
+
dependencies:
|
863
|
+
"@babel/types" "^7.3.0"
|
864
|
+
|
865
|
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
|
866
|
+
version "2.0.1"
|
867
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
|
868
|
+
integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
|
869
|
+
|
870
|
+
"@types/istanbul-lib-report@*":
|
871
|
+
version "1.1.1"
|
872
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c"
|
873
|
+
integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==
|
874
|
+
dependencies:
|
875
|
+
"@types/istanbul-lib-coverage" "*"
|
876
|
+
|
877
|
+
"@types/istanbul-reports@^1.1.1":
|
878
|
+
version "1.1.1"
|
879
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
|
880
|
+
integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
|
881
|
+
dependencies:
|
882
|
+
"@types/istanbul-lib-coverage" "*"
|
883
|
+
"@types/istanbul-lib-report" "*"
|
884
|
+
|
652
885
|
"@types/q@^1.5.1":
|
653
|
-
version "1.5.
|
654
|
-
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.
|
655
|
-
integrity sha512-
|
886
|
+
version "1.5.2"
|
887
|
+
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
|
888
|
+
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
|
889
|
+
|
890
|
+
"@types/stack-utils@^1.0.1":
|
891
|
+
version "1.0.1"
|
892
|
+
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
|
893
|
+
integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
|
894
|
+
|
895
|
+
"@types/yargs@^12.0.2", "@types/yargs@^12.0.9":
|
896
|
+
version "12.0.12"
|
897
|
+
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916"
|
898
|
+
integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==
|
656
899
|
|
657
900
|
"@webassemblyjs/ast@1.8.5":
|
658
901
|
version "1.8.5"
|
@@ -826,9 +1069,9 @@ acorn-dynamic-import@^4.0.0:
|
|
826
1069
|
integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==
|
827
1070
|
|
828
1071
|
acorn-globals@^4.1.0:
|
829
|
-
version "4.3.
|
830
|
-
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.
|
831
|
-
integrity sha512-
|
1072
|
+
version "4.3.2"
|
1073
|
+
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006"
|
1074
|
+
integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==
|
832
1075
|
dependencies:
|
833
1076
|
acorn "^6.0.1"
|
834
1077
|
acorn-walk "^6.0.1"
|
@@ -898,10 +1141,10 @@ ansi-regex@^3.0.0:
|
|
898
1141
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
899
1142
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
900
1143
|
|
901
|
-
ansi-regex@^4.0.0:
|
902
|
-
version "4.
|
903
|
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.
|
904
|
-
integrity sha512-
|
1144
|
+
ansi-regex@^4.0.0, ansi-regex@^4.1.0:
|
1145
|
+
version "4.1.0"
|
1146
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
1147
|
+
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
905
1148
|
|
906
1149
|
ansi-styles@^2.2.1:
|
907
1150
|
version "2.2.1"
|
@@ -923,13 +1166,6 @@ anymatch@^2.0.0:
|
|
923
1166
|
micromatch "^3.1.4"
|
924
1167
|
normalize-path "^2.1.1"
|
925
1168
|
|
926
|
-
append-transform@^1.0.0:
|
927
|
-
version "1.0.0"
|
928
|
-
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
|
929
|
-
integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==
|
930
|
-
dependencies:
|
931
|
-
default-require-extensions "^2.0.0"
|
932
|
-
|
933
1169
|
aproba@^1.0.3, aproba@^1.1.1:
|
934
1170
|
version "1.2.0"
|
935
1171
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
@@ -996,11 +1232,6 @@ array-unique@^0.3.2:
|
|
996
1232
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
997
1233
|
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
998
1234
|
|
999
|
-
arrify@^1.0.1:
|
1000
|
-
version "1.0.1"
|
1001
|
-
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
1002
|
-
integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
|
1003
|
-
|
1004
1235
|
asn1.js@^4.0.0:
|
1005
1236
|
version "4.10.1"
|
1006
1237
|
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
|
@@ -1023,10 +1254,11 @@ assert-plus@1.0.0, assert-plus@^1.0.0:
|
|
1023
1254
|
integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
|
1024
1255
|
|
1025
1256
|
assert@^1.1.1:
|
1026
|
-
version "1.
|
1027
|
-
resolved "https://registry.yarnpkg.com/assert/-/assert-1.
|
1028
|
-
integrity
|
1257
|
+
version "1.5.0"
|
1258
|
+
resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
|
1259
|
+
integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
|
1029
1260
|
dependencies:
|
1261
|
+
object-assign "^4.1.1"
|
1030
1262
|
util "0.10.3"
|
1031
1263
|
|
1032
1264
|
assign-symbols@^1.0.0:
|
@@ -1045,9 +1277,9 @@ astral-regex@^1.0.0:
|
|
1045
1277
|
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
|
1046
1278
|
|
1047
1279
|
async-each@^1.0.1:
|
1048
|
-
version "1.0.
|
1049
|
-
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.
|
1050
|
-
integrity
|
1280
|
+
version "1.0.3"
|
1281
|
+
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
|
1282
|
+
integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
|
1051
1283
|
|
1052
1284
|
async-foreach@^0.1.3:
|
1053
1285
|
version "0.1.3"
|
@@ -1059,13 +1291,6 @@ async-limiter@~1.0.0:
|
|
1059
1291
|
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
|
1060
1292
|
integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==
|
1061
1293
|
|
1062
|
-
async@^2.5.0, async@^2.6.1:
|
1063
|
-
version "2.6.2"
|
1064
|
-
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
|
1065
|
-
integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==
|
1066
|
-
dependencies:
|
1067
|
-
lodash "^4.17.11"
|
1068
|
-
|
1069
1294
|
asynckit@^0.4.0:
|
1070
1295
|
version "0.4.0"
|
1071
1296
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
@@ -1077,12 +1302,12 @@ atob@^2.1.1:
|
|
1077
1302
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1078
1303
|
|
1079
1304
|
autoprefixer@^9.4.9:
|
1080
|
-
version "9.
|
1081
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.
|
1082
|
-
integrity sha512-
|
1305
|
+
version "9.5.1"
|
1306
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.5.1.tgz#243b1267b67e7e947f28919d786b50d3bb0fb357"
|
1307
|
+
integrity sha512-KJSzkStUl3wP0D5sdMlP82Q52JLy5+atf2MHAre48+ckWkXgixmfHyWmA77wFDy6jTHU6mIgXv6hAQ2mf1PjJQ==
|
1083
1308
|
dependencies:
|
1084
|
-
browserslist "^4.4
|
1085
|
-
caniuse-lite "^1.0.
|
1309
|
+
browserslist "^4.5.4"
|
1310
|
+
caniuse-lite "^1.0.30000957"
|
1086
1311
|
normalize-range "^0.1.2"
|
1087
1312
|
num2fraction "^1.2.2"
|
1088
1313
|
postcss "^7.0.14"
|
@@ -1105,25 +1330,28 @@ axobject-query@^2.0.2:
|
|
1105
1330
|
dependencies:
|
1106
1331
|
ast-types-flow "0.0.7"
|
1107
1332
|
|
1108
|
-
babel-jest@^24.
|
1109
|
-
version "24.
|
1110
|
-
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.
|
1111
|
-
integrity sha512
|
1333
|
+
babel-jest@^24.8.0:
|
1334
|
+
version "24.8.0"
|
1335
|
+
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589"
|
1336
|
+
integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==
|
1112
1337
|
dependencies:
|
1338
|
+
"@jest/transform" "^24.8.0"
|
1339
|
+
"@jest/types" "^24.8.0"
|
1340
|
+
"@types/babel__core" "^7.1.0"
|
1113
1341
|
babel-plugin-istanbul "^5.1.0"
|
1114
|
-
babel-preset-jest "^24.
|
1342
|
+
babel-preset-jest "^24.6.0"
|
1115
1343
|
chalk "^2.4.2"
|
1116
1344
|
slash "^2.0.0"
|
1117
1345
|
|
1118
|
-
babel-loader@^8.0.
|
1119
|
-
version "8.0.
|
1120
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.
|
1121
|
-
integrity sha512-
|
1346
|
+
babel-loader@^8.0.6:
|
1347
|
+
version "8.0.6"
|
1348
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"
|
1349
|
+
integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
|
1122
1350
|
dependencies:
|
1123
1351
|
find-cache-dir "^2.0.0"
|
1124
1352
|
loader-utils "^1.0.2"
|
1125
1353
|
mkdirp "^0.5.1"
|
1126
|
-
|
1354
|
+
pify "^4.0.1"
|
1127
1355
|
|
1128
1356
|
babel-plugin-dynamic-import-node@^2.2.0:
|
1129
1357
|
version "2.2.0"
|
@@ -1133,34 +1361,37 @@ babel-plugin-dynamic-import-node@^2.2.0:
|
|
1133
1361
|
object.assign "^4.1.0"
|
1134
1362
|
|
1135
1363
|
babel-plugin-istanbul@^5.1.0:
|
1136
|
-
version "5.1.
|
1137
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.
|
1138
|
-
integrity sha512-
|
1364
|
+
version "5.1.4"
|
1365
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba"
|
1366
|
+
integrity sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ==
|
1139
1367
|
dependencies:
|
1140
1368
|
find-up "^3.0.0"
|
1141
|
-
istanbul-lib-instrument "^3.
|
1142
|
-
test-exclude "^5.
|
1369
|
+
istanbul-lib-instrument "^3.3.0"
|
1370
|
+
test-exclude "^5.2.3"
|
1143
1371
|
|
1144
|
-
babel-plugin-jest-hoist@^24.
|
1145
|
-
version "24.
|
1146
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.
|
1147
|
-
integrity sha512-
|
1372
|
+
babel-plugin-jest-hoist@^24.6.0:
|
1373
|
+
version "24.6.0"
|
1374
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019"
|
1375
|
+
integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==
|
1376
|
+
dependencies:
|
1377
|
+
"@types/babel__traverse" "^7.0.6"
|
1148
1378
|
|
1149
1379
|
babel-plugin-macros@^2.5.0:
|
1150
|
-
version "2.5.
|
1151
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.
|
1152
|
-
integrity sha512-
|
1380
|
+
version "2.5.1"
|
1381
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz#4a119ac2c2e19b458c259b9accd7ee34fd57ec6f"
|
1382
|
+
integrity sha512-xN3KhAxPzsJ6OQTktCanNpIFnnMsCV+t8OloKxIL72D6+SUZYFn9qfklPgef5HyyDtzYZqqb+fs1S12+gQY82Q==
|
1153
1383
|
dependencies:
|
1154
|
-
|
1155
|
-
|
1384
|
+
"@babel/runtime" "^7.4.2"
|
1385
|
+
cosmiconfig "^5.2.0"
|
1386
|
+
resolve "^1.10.0"
|
1156
1387
|
|
1157
|
-
babel-preset-jest@^24.
|
1158
|
-
version "24.
|
1159
|
-
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.
|
1160
|
-
integrity sha512-
|
1388
|
+
babel-preset-jest@^24.6.0:
|
1389
|
+
version "24.6.0"
|
1390
|
+
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984"
|
1391
|
+
integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==
|
1161
1392
|
dependencies:
|
1162
1393
|
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
|
1163
|
-
babel-plugin-jest-hoist "^24.
|
1394
|
+
babel-plugin-jest-hoist "^24.6.0"
|
1164
1395
|
|
1165
1396
|
balanced-match@^1.0.0:
|
1166
1397
|
version "1.0.0"
|
@@ -1198,9 +1429,9 @@ big.js@^5.2.2:
|
|
1198
1429
|
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
|
1199
1430
|
|
1200
1431
|
binary-extensions@^1.0.0:
|
1201
|
-
version "1.13.
|
1202
|
-
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.
|
1203
|
-
integrity sha512-
|
1432
|
+
version "1.13.1"
|
1433
|
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
|
1434
|
+
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
|
1204
1435
|
|
1205
1436
|
block-stream@*:
|
1206
1437
|
version "0.0.9"
|
@@ -1210,9 +1441,9 @@ block-stream@*:
|
|
1210
1441
|
inherits "~2.0.0"
|
1211
1442
|
|
1212
1443
|
bluebird@^3.5.3:
|
1213
|
-
version "3.5.
|
1214
|
-
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.
|
1215
|
-
integrity sha512
|
1444
|
+
version "3.5.5"
|
1445
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f"
|
1446
|
+
integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
|
1216
1447
|
|
1217
1448
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1218
1449
|
version "4.11.8"
|
@@ -1324,14 +1555,14 @@ browserify-zlib@^0.2.0:
|
|
1324
1555
|
dependencies:
|
1325
1556
|
pako "~1.0.5"
|
1326
1557
|
|
1327
|
-
browserslist@^4.0.0, browserslist@^4.
|
1328
|
-
version "4.
|
1329
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1330
|
-
integrity sha512-
|
1558
|
+
browserslist@^4.0.0, browserslist@^4.4.2, browserslist@^4.5.4, browserslist@^4.6.0:
|
1559
|
+
version "4.6.0"
|
1560
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.0.tgz#5274028c26f4d933d5b1323307c1d1da5084c9ff"
|
1561
|
+
integrity sha512-Jk0YFwXBuMOOol8n6FhgkDzn3mY9PYLYGk29zybF05SbRTsMgPqmTNeQQhOghCxq5oFqAXE3u4sYddr4C0uRhg==
|
1331
1562
|
dependencies:
|
1332
|
-
caniuse-lite "^1.0.
|
1333
|
-
electron-to-chromium "^1.3.
|
1334
|
-
node-releases "^1.1.
|
1563
|
+
caniuse-lite "^1.0.30000967"
|
1564
|
+
electron-to-chromium "^1.3.133"
|
1565
|
+
node-releases "^1.1.19"
|
1335
1566
|
|
1336
1567
|
bser@^2.0.0:
|
1337
1568
|
version "2.0.0"
|
@@ -1364,7 +1595,7 @@ builtin-status-codes@^3.0.0:
|
|
1364
1595
|
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
1365
1596
|
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
|
1366
1597
|
|
1367
|
-
cacache@^11.0
|
1598
|
+
cacache@^11.2.0, cacache@^11.3.2:
|
1368
1599
|
version "11.3.2"
|
1369
1600
|
resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa"
|
1370
1601
|
integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==
|
@@ -1419,9 +1650,9 @@ callsites@^2.0.0:
|
|
1419
1650
|
integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
|
1420
1651
|
|
1421
1652
|
callsites@^3.0.0:
|
1422
|
-
version "3.
|
1423
|
-
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.
|
1424
|
-
integrity sha512-
|
1653
|
+
version "3.1.0"
|
1654
|
+
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
1655
|
+
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
1425
1656
|
|
1426
1657
|
camelcase-keys@^2.0.0:
|
1427
1658
|
version "2.1.0"
|
@@ -1441,10 +1672,10 @@ camelcase@^3.0.0:
|
|
1441
1672
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
|
1442
1673
|
integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo=
|
1443
1674
|
|
1444
|
-
camelcase@^5.0.0:
|
1445
|
-
version "5.
|
1446
|
-
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.
|
1447
|
-
integrity sha512-
|
1675
|
+
camelcase@^5.0.0, camelcase@^5.2.0:
|
1676
|
+
version "5.3.1"
|
1677
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1678
|
+
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
1448
1679
|
|
1449
1680
|
caniuse-api@^3.0.0:
|
1450
1681
|
version "3.0.0"
|
@@ -1456,17 +1687,17 @@ caniuse-api@^3.0.0:
|
|
1456
1687
|
lodash.memoize "^4.1.2"
|
1457
1688
|
lodash.uniq "^4.5.0"
|
1458
1689
|
|
1459
|
-
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000939:
|
1460
|
-
version "1.0.
|
1461
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1462
|
-
integrity sha512-
|
1690
|
+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000939, caniuse-lite@^1.0.30000957, caniuse-lite@^1.0.30000967:
|
1691
|
+
version "1.0.30000971"
|
1692
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000971.tgz#d1000e4546486a6977756547352bc96a4cfd2b13"
|
1693
|
+
integrity sha512-TQFYFhRS0O5rdsmSbF1Wn+16latXYsQJat66f7S7lizXW1PVpWJeZw9wqqVLIjuxDRz7s7xRUj13QCfd8hKn6g==
|
1463
1694
|
|
1464
|
-
capture-exit@^
|
1465
|
-
version "
|
1466
|
-
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-
|
1467
|
-
integrity
|
1695
|
+
capture-exit@^2.0.0:
|
1696
|
+
version "2.0.0"
|
1697
|
+
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
|
1698
|
+
integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
|
1468
1699
|
dependencies:
|
1469
|
-
rsvp "^
|
1700
|
+
rsvp "^4.8.4"
|
1470
1701
|
|
1471
1702
|
case-sensitive-paths-webpack-plugin@^2.2.0:
|
1472
1703
|
version "2.2.0"
|
@@ -1504,9 +1735,9 @@ chardet@^0.7.0:
|
|
1504
1735
|
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
|
1505
1736
|
|
1506
1737
|
chokidar@^2.0.2:
|
1507
|
-
version "2.1.
|
1508
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.
|
1509
|
-
integrity sha512-
|
1738
|
+
version "2.1.6"
|
1739
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5"
|
1740
|
+
integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==
|
1510
1741
|
dependencies:
|
1511
1742
|
anymatch "^2.0.0"
|
1512
1743
|
async-each "^1.0.1"
|
@@ -1518,7 +1749,7 @@ chokidar@^2.0.2:
|
|
1518
1749
|
normalize-path "^3.0.0"
|
1519
1750
|
path-is-absolute "^1.0.0"
|
1520
1751
|
readdirp "^2.2.1"
|
1521
|
-
upath "^1.1.
|
1752
|
+
upath "^1.1.1"
|
1522
1753
|
optionalDependencies:
|
1523
1754
|
fsevents "^1.2.7"
|
1524
1755
|
|
@@ -1528,9 +1759,9 @@ chownr@^1.1.1:
|
|
1528
1759
|
integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==
|
1529
1760
|
|
1530
1761
|
chrome-trace-event@^1.0.0:
|
1531
|
-
version "1.0.
|
1532
|
-
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.
|
1533
|
-
integrity sha512-
|
1762
|
+
version "1.0.2"
|
1763
|
+
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
|
1764
|
+
integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
|
1534
1765
|
dependencies:
|
1535
1766
|
tslib "^1.9.0"
|
1536
1767
|
|
@@ -1650,44 +1881,34 @@ color-string@^1.5.2:
|
|
1650
1881
|
simple-swizzle "^0.2.2"
|
1651
1882
|
|
1652
1883
|
color@^3.0.0:
|
1653
|
-
version "3.1.
|
1654
|
-
resolved "https://registry.yarnpkg.com/color/-/color-3.1.
|
1655
|
-
integrity sha512-
|
1884
|
+
version "3.1.1"
|
1885
|
+
resolved "https://registry.yarnpkg.com/color/-/color-3.1.1.tgz#7abf5c0d38e89378284e873c207ae2172dcc8a61"
|
1886
|
+
integrity sha512-PvUltIXRjehRKPSy89VnDWFKY58xyhTLyxIg21vwQBI6qLwZNPmC8k3C1uytIgFKEpOIzN4y32iPm8231zFHIg==
|
1656
1887
|
dependencies:
|
1657
1888
|
color-convert "^1.9.1"
|
1658
1889
|
color-string "^1.5.2"
|
1659
1890
|
|
1660
1891
|
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
1661
|
-
version "1.0.
|
1662
|
-
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.
|
1663
|
-
integrity sha512-
|
1892
|
+
version "1.0.8"
|
1893
|
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
|
1894
|
+
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
|
1664
1895
|
dependencies:
|
1665
1896
|
delayed-stream "~1.0.0"
|
1666
1897
|
|
1667
|
-
commander@^2.11.0:
|
1668
|
-
version "2.
|
1669
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.
|
1670
|
-
integrity sha512-
|
1671
|
-
|
1672
|
-
commander@~2.17.1:
|
1673
|
-
version "2.17.1"
|
1674
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
|
1675
|
-
integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
|
1898
|
+
commander@^2.11.0, commander@^2.19.0, commander@~2.20.0:
|
1899
|
+
version "2.20.0"
|
1900
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
|
1901
|
+
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
|
1676
1902
|
|
1677
1903
|
commondir@^1.0.1:
|
1678
1904
|
version "1.0.1"
|
1679
1905
|
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
1680
1906
|
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
|
1681
1907
|
|
1682
|
-
compare-versions@^3.2.1:
|
1683
|
-
version "3.4.0"
|
1684
|
-
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26"
|
1685
|
-
integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg==
|
1686
|
-
|
1687
1908
|
component-emitter@^1.2.1:
|
1688
|
-
version "1.
|
1689
|
-
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.
|
1690
|
-
integrity
|
1909
|
+
version "1.3.0"
|
1910
|
+
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
1911
|
+
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
|
1691
1912
|
|
1692
1913
|
compression-webpack-plugin@^2.0.0:
|
1693
1914
|
version "2.0.0"
|
@@ -1762,10 +1983,24 @@ copy-descriptor@^0.1.0:
|
|
1762
1983
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1763
1984
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1764
1985
|
|
1765
|
-
core-js@^
|
1766
|
-
version "
|
1767
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-
|
1768
|
-
integrity sha512-
|
1986
|
+
core-js-compat@^3.1.1:
|
1987
|
+
version "3.1.3"
|
1988
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz#0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14"
|
1989
|
+
integrity sha512-EP018pVhgwsKHz3YoN1hTq49aRe+h017Kjz0NQz3nXV0cCRMvH3fLQl+vEPGr4r4J5sk4sU3tUC7U1aqTCeJeA==
|
1990
|
+
dependencies:
|
1991
|
+
browserslist "^4.6.0"
|
1992
|
+
core-js-pure "3.1.3"
|
1993
|
+
semver "^6.1.0"
|
1994
|
+
|
1995
|
+
core-js-pure@3.1.3, core-js-pure@^3.0.0:
|
1996
|
+
version "3.1.3"
|
1997
|
+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz#4c90752d5b9471f641514f3728f51c1e0783d0b5"
|
1998
|
+
integrity sha512-k3JWTrcQBKqjkjI0bkfXS0lbpWPxYuHWfMMjC1VDmzU4Q58IwSbuXSo99YO/hUHlw/EB4AlfA2PVxOGkrIq6dA==
|
1999
|
+
|
2000
|
+
core-js@^3.1.3:
|
2001
|
+
version "3.1.3"
|
2002
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.1.3.tgz#95700bca5f248f5f78c0ec63e784eca663ec4138"
|
2003
|
+
integrity sha512-PWZ+ZfuaKf178BIAg+CRsljwjIMRV8MY00CbZczkR6Zk5LfkSkjGoaab3+bqRQWVITNZxQB7TFYz+CFcyuamvA==
|
1769
2004
|
|
1770
2005
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1771
2006
|
version "1.0.2"
|
@@ -1782,15 +2017,14 @@ cosmiconfig@^4.0.0:
|
|
1782
2017
|
parse-json "^4.0.0"
|
1783
2018
|
require-from-string "^2.0.1"
|
1784
2019
|
|
1785
|
-
cosmiconfig@^5.0.0, cosmiconfig@^5.0
|
1786
|
-
version "5.1
|
1787
|
-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.1.
|
1788
|
-
integrity sha512-
|
2020
|
+
cosmiconfig@^5.0.0, cosmiconfig@^5.2.0:
|
2021
|
+
version "5.2.1"
|
2022
|
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
|
2023
|
+
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
|
1789
2024
|
dependencies:
|
1790
2025
|
import-fresh "^2.0.0"
|
1791
2026
|
is-directory "^0.3.1"
|
1792
|
-
js-yaml "^3.
|
1793
|
-
lodash.get "^4.4.2"
|
2027
|
+
js-yaml "^3.13.1"
|
1794
2028
|
parse-json "^4.0.0"
|
1795
2029
|
|
1796
2030
|
create-ecdh@^4.0.0:
|
@@ -1888,18 +2122,19 @@ css-has-pseudo@^0.10.0:
|
|
1888
2122
|
postcss "^7.0.6"
|
1889
2123
|
postcss-selector-parser "^5.0.0-rc.4"
|
1890
2124
|
|
1891
|
-
css-loader@^2.1.
|
1892
|
-
version "2.1.
|
1893
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.
|
1894
|
-
integrity sha512-
|
2125
|
+
css-loader@^2.1.1:
|
2126
|
+
version "2.1.1"
|
2127
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea"
|
2128
|
+
integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w==
|
1895
2129
|
dependencies:
|
1896
|
-
|
1897
|
-
|
1898
|
-
|
1899
|
-
|
2130
|
+
camelcase "^5.2.0"
|
2131
|
+
icss-utils "^4.1.0"
|
2132
|
+
loader-utils "^1.2.3"
|
2133
|
+
normalize-path "^3.0.0"
|
2134
|
+
postcss "^7.0.14"
|
1900
2135
|
postcss-modules-extract-imports "^2.0.0"
|
1901
|
-
postcss-modules-local-by-default "^2.0.
|
1902
|
-
postcss-modules-scope "^2.
|
2136
|
+
postcss-modules-local-by-default "^2.0.6"
|
2137
|
+
postcss-modules-scope "^2.1.0"
|
1903
2138
|
postcss-modules-values "^2.0.0"
|
1904
2139
|
postcss-value-parser "^3.3.0"
|
1905
2140
|
schema-utils "^1.0.0"
|
@@ -1926,15 +2161,6 @@ css-select@^2.0.0:
|
|
1926
2161
|
domutils "^1.7.0"
|
1927
2162
|
nth-check "^1.0.2"
|
1928
2163
|
|
1929
|
-
css-selector-tokenizer@^0.7.0:
|
1930
|
-
version "0.7.1"
|
1931
|
-
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d"
|
1932
|
-
integrity sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==
|
1933
|
-
dependencies:
|
1934
|
-
cssesc "^0.1.0"
|
1935
|
-
fastparse "^1.1.1"
|
1936
|
-
regexpu-core "^1.0.0"
|
1937
|
-
|
1938
2164
|
css-tree@1.0.0-alpha.28:
|
1939
2165
|
version "1.0.0-alpha.28"
|
1940
2166
|
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
|
@@ -1967,20 +2193,20 @@ css-what@^2.1.2:
|
|
1967
2193
|
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
|
1968
2194
|
|
1969
2195
|
cssdb@^4.3.0:
|
1970
|
-
version "4.
|
1971
|
-
resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.
|
1972
|
-
integrity sha512-
|
1973
|
-
|
1974
|
-
cssesc@^0.1.0:
|
1975
|
-
version "0.1.0"
|
1976
|
-
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
|
1977
|
-
integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
|
2196
|
+
version "4.4.0"
|
2197
|
+
resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0"
|
2198
|
+
integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
|
1978
2199
|
|
1979
2200
|
cssesc@^2.0.0:
|
1980
2201
|
version "2.0.0"
|
1981
2202
|
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
|
1982
2203
|
integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
|
1983
2204
|
|
2205
|
+
cssesc@^3.0.0:
|
2206
|
+
version "3.0.0"
|
2207
|
+
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
2208
|
+
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
2209
|
+
|
1984
2210
|
cssnano-preset-default@^4.0.7:
|
1985
2211
|
version "4.0.7"
|
1986
2212
|
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76"
|
@@ -2062,9 +2288,9 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
|
|
2062
2288
|
integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==
|
2063
2289
|
|
2064
2290
|
cssstyle@^1.0.0:
|
2065
|
-
version "1.2.
|
2066
|
-
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.
|
2067
|
-
integrity sha512-
|
2291
|
+
version "1.2.2"
|
2292
|
+
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077"
|
2293
|
+
integrity sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow==
|
2068
2294
|
dependencies:
|
2069
2295
|
cssom "0.3.x"
|
2070
2296
|
|
@@ -2081,9 +2307,9 @@ cyclist@~0.2.2:
|
|
2081
2307
|
integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=
|
2082
2308
|
|
2083
2309
|
damerau-levenshtein@^1.0.4:
|
2084
|
-
version "1.0.
|
2085
|
-
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.
|
2086
|
-
integrity
|
2310
|
+
version "1.0.5"
|
2311
|
+
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.5.tgz#780cf7144eb2e8dbd1c3bb83ae31100ccc31a414"
|
2312
|
+
integrity sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA==
|
2087
2313
|
|
2088
2314
|
dashdash@^1.12.0:
|
2089
2315
|
version "1.14.1"
|
@@ -2106,13 +2332,20 @@ date-now@^0.1.4:
|
|
2106
2332
|
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
|
2107
2333
|
integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=
|
2108
2334
|
|
2109
|
-
debug@^2.
|
2335
|
+
debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
|
2110
2336
|
version "2.6.9"
|
2111
2337
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
2112
2338
|
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
2113
2339
|
dependencies:
|
2114
2340
|
ms "2.0.0"
|
2115
2341
|
|
2342
|
+
debug@^3.2.6:
|
2343
|
+
version "3.2.6"
|
2344
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
|
2345
|
+
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
|
2346
|
+
dependencies:
|
2347
|
+
ms "^2.1.1"
|
2348
|
+
|
2116
2349
|
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
2117
2350
|
version "4.1.1"
|
2118
2351
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
|
@@ -2140,13 +2373,6 @@ deep-is@~0.1.3:
|
|
2140
2373
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
2141
2374
|
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
2142
2375
|
|
2143
|
-
default-require-extensions@^2.0.0:
|
2144
|
-
version "2.0.0"
|
2145
|
-
resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
|
2146
|
-
integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=
|
2147
|
-
dependencies:
|
2148
|
-
strip-bom "^3.0.0"
|
2149
|
-
|
2150
2376
|
define-properties@^1.1.2, define-properties@^1.1.3:
|
2151
2377
|
version "1.1.3"
|
2152
2378
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
@@ -2209,10 +2435,10 @@ detect-newline@^2.1.0:
|
|
2209
2435
|
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
|
2210
2436
|
integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
|
2211
2437
|
|
2212
|
-
diff-sequences@^24.
|
2213
|
-
version "24.
|
2214
|
-
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.
|
2215
|
-
integrity sha512-
|
2438
|
+
diff-sequences@^24.3.0:
|
2439
|
+
version "24.3.0"
|
2440
|
+
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
|
2441
|
+
integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==
|
2216
2442
|
|
2217
2443
|
diffie-hellman@^5.0.0:
|
2218
2444
|
version "5.0.3"
|
@@ -2303,10 +2529,10 @@ ecc-jsbn@~0.1.1:
|
|
2303
2529
|
jsbn "~0.1.0"
|
2304
2530
|
safer-buffer "^2.1.0"
|
2305
2531
|
|
2306
|
-
electron-to-chromium@^1.3.
|
2307
|
-
version "1.3.
|
2308
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2309
|
-
integrity sha512-
|
2532
|
+
electron-to-chromium@^1.3.133:
|
2533
|
+
version "1.3.137"
|
2534
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.137.tgz#ba7c88024984c038a5c5c434529aabcea7b42944"
|
2535
|
+
integrity sha512-kGi32g42a8vS/WnYE7ELJyejRT7hbr3UeOOu0WeuYuQ29gCpg9Lrf6RdcTQVXSt/v0bjCfnlb/EWOOsiKpTmkw==
|
2310
2536
|
|
2311
2537
|
elliptic@^6.0.0:
|
2312
2538
|
version "6.4.1"
|
@@ -2430,29 +2656,30 @@ eslint-import-resolver-node@^0.3.2:
|
|
2430
2656
|
debug "^2.6.9"
|
2431
2657
|
resolve "^1.5.0"
|
2432
2658
|
|
2433
|
-
eslint-module-utils@^2.
|
2434
|
-
version "2.
|
2435
|
-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.
|
2436
|
-
integrity sha512-
|
2659
|
+
eslint-module-utils@^2.4.0:
|
2660
|
+
version "2.4.0"
|
2661
|
+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a"
|
2662
|
+
integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw==
|
2437
2663
|
dependencies:
|
2438
2664
|
debug "^2.6.8"
|
2439
2665
|
pkg-dir "^2.0.0"
|
2440
2666
|
|
2441
|
-
eslint-plugin-import@^2.
|
2442
|
-
version "2.
|
2443
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.
|
2444
|
-
integrity sha512-
|
2667
|
+
eslint-plugin-import@^2.17.3:
|
2668
|
+
version "2.17.3"
|
2669
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.17.3.tgz#00548b4434c18faebaba04b24ae6198f280de189"
|
2670
|
+
integrity sha512-qeVf/UwXFJbeyLbxuY8RgqDyEKCkqV7YC+E5S5uOjAp4tOc8zj01JP3ucoBM8JcEqd1qRasJSg6LLlisirfy0Q==
|
2445
2671
|
dependencies:
|
2672
|
+
array-includes "^3.0.3"
|
2446
2673
|
contains-path "^0.1.0"
|
2447
2674
|
debug "^2.6.9"
|
2448
2675
|
doctrine "1.5.0"
|
2449
2676
|
eslint-import-resolver-node "^0.3.2"
|
2450
|
-
eslint-module-utils "^2.
|
2677
|
+
eslint-module-utils "^2.4.0"
|
2451
2678
|
has "^1.0.3"
|
2452
2679
|
lodash "^4.17.11"
|
2453
2680
|
minimatch "^3.0.4"
|
2454
2681
|
read-pkg-up "^2.0.0"
|
2455
|
-
resolve "^1.
|
2682
|
+
resolve "^1.11.0"
|
2456
2683
|
|
2457
2684
|
eslint-plugin-jsx-a11y@^6.2.1:
|
2458
2685
|
version "6.2.1"
|
@@ -2468,28 +2695,28 @@ eslint-plugin-jsx-a11y@^6.2.1:
|
|
2468
2695
|
has "^1.0.3"
|
2469
2696
|
jsx-ast-utils "^2.0.1"
|
2470
2697
|
|
2471
|
-
eslint-plugin-react@^7.
|
2472
|
-
version "7.
|
2473
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.
|
2474
|
-
integrity sha512-
|
2698
|
+
eslint-plugin-react@^7.13.0:
|
2699
|
+
version "7.13.0"
|
2700
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.13.0.tgz#bc13fd7101de67996ea51b33873cd9dc2b7e5758"
|
2701
|
+
integrity sha512-uA5LrHylu8lW/eAH3bEQe9YdzpPaFd9yAJTwTi/i/BKTD7j6aQMKVAdGM/ML72zD6womuSK7EiGtMKuK06lWjQ==
|
2475
2702
|
dependencies:
|
2476
2703
|
array-includes "^3.0.3"
|
2477
2704
|
doctrine "^2.1.0"
|
2478
2705
|
has "^1.0.3"
|
2479
|
-
jsx-ast-utils "^2.0
|
2706
|
+
jsx-ast-utils "^2.1.0"
|
2480
2707
|
object.fromentries "^2.0.0"
|
2481
|
-
prop-types "^15.
|
2482
|
-
resolve "^1.
|
2708
|
+
prop-types "^15.7.2"
|
2709
|
+
resolve "^1.10.1"
|
2483
2710
|
|
2484
2711
|
eslint-restricted-globals@^0.1.1:
|
2485
2712
|
version "0.1.1"
|
2486
2713
|
resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
|
2487
2714
|
integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=
|
2488
2715
|
|
2489
|
-
eslint-scope@^4.0.0, eslint-scope@^4.0.
|
2490
|
-
version "4.0.
|
2491
|
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.
|
2492
|
-
integrity sha512-
|
2716
|
+
eslint-scope@^4.0.0, eslint-scope@^4.0.3:
|
2717
|
+
version "4.0.3"
|
2718
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
|
2719
|
+
integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
|
2493
2720
|
dependencies:
|
2494
2721
|
esrecurse "^4.1.0"
|
2495
2722
|
estraverse "^4.1.1"
|
@@ -2504,10 +2731,10 @@ eslint-visitor-keys@^1.0.0:
|
|
2504
2731
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
2505
2732
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
2506
2733
|
|
2507
|
-
eslint@^5.
|
2508
|
-
version "5.
|
2509
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.
|
2510
|
-
integrity sha512-
|
2734
|
+
eslint@^5.16.0:
|
2735
|
+
version "5.16.0"
|
2736
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea"
|
2737
|
+
integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==
|
2511
2738
|
dependencies:
|
2512
2739
|
"@babel/code-frame" "^7.0.0"
|
2513
2740
|
ajv "^6.9.1"
|
@@ -2515,7 +2742,7 @@ eslint@^5.15.0:
|
|
2515
2742
|
cross-spawn "^6.0.5"
|
2516
2743
|
debug "^4.0.1"
|
2517
2744
|
doctrine "^3.0.0"
|
2518
|
-
eslint-scope "^4.0.
|
2745
|
+
eslint-scope "^4.0.3"
|
2519
2746
|
eslint-utils "^1.3.1"
|
2520
2747
|
eslint-visitor-keys "^1.0.0"
|
2521
2748
|
espree "^5.0.1"
|
@@ -2529,7 +2756,7 @@ eslint@^5.15.0:
|
|
2529
2756
|
import-fresh "^3.0.0"
|
2530
2757
|
imurmurhash "^0.1.4"
|
2531
2758
|
inquirer "^6.2.2"
|
2532
|
-
js-yaml "^3.
|
2759
|
+
js-yaml "^3.13.0"
|
2533
2760
|
json-stable-stringify-without-jsonify "^1.0.1"
|
2534
2761
|
levn "^0.3.0"
|
2535
2762
|
lodash "^4.17.11"
|
@@ -2602,12 +2829,10 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
|
2602
2829
|
md5.js "^1.3.4"
|
2603
2830
|
safe-buffer "^5.1.1"
|
2604
2831
|
|
2605
|
-
exec-sh@^0.2
|
2606
|
-
version "0.
|
2607
|
-
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.
|
2608
|
-
integrity sha512-
|
2609
|
-
dependencies:
|
2610
|
-
merge "^1.2.0"
|
2832
|
+
exec-sh@^0.3.2:
|
2833
|
+
version "0.3.2"
|
2834
|
+
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b"
|
2835
|
+
integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==
|
2611
2836
|
|
2612
2837
|
execa@^1.0.0:
|
2613
2838
|
version "1.0.0"
|
@@ -2647,16 +2872,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
|
|
2647
2872
|
dependencies:
|
2648
2873
|
homedir-polyfill "^1.0.1"
|
2649
2874
|
|
2650
|
-
expect@^24.
|
2651
|
-
version "24.
|
2652
|
-
resolved "https://registry.yarnpkg.com/expect/-/expect-24.
|
2653
|
-
integrity sha512
|
2875
|
+
expect@^24.8.0:
|
2876
|
+
version "24.8.0"
|
2877
|
+
resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d"
|
2878
|
+
integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==
|
2654
2879
|
dependencies:
|
2880
|
+
"@jest/types" "^24.8.0"
|
2655
2881
|
ansi-styles "^3.2.0"
|
2656
|
-
jest-get-type "^24.
|
2657
|
-
jest-matcher-utils "^24.
|
2658
|
-
jest-message-util "^24.
|
2659
|
-
jest-regex-util "^24.
|
2882
|
+
jest-get-type "^24.8.0"
|
2883
|
+
jest-matcher-utils "^24.8.0"
|
2884
|
+
jest-message-util "^24.8.0"
|
2885
|
+
jest-regex-util "^24.3.0"
|
2660
2886
|
|
2661
2887
|
extend-shallow@^2.0.1:
|
2662
2888
|
version "2.0.1"
|
@@ -2726,11 +2952,6 @@ fast-levenshtein@~2.0.4:
|
|
2726
2952
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
2727
2953
|
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
2728
2954
|
|
2729
|
-
fastparse@^1.1.1:
|
2730
|
-
version "1.1.2"
|
2731
|
-
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
|
2732
|
-
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
|
2733
|
-
|
2734
2955
|
fb-watchman@^2.0.0:
|
2735
2956
|
version "2.0.0"
|
2736
2957
|
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
|
@@ -2765,14 +2986,6 @@ file-loader@^3.0.1:
|
|
2765
2986
|
loader-utils "^1.0.2"
|
2766
2987
|
schema-utils "^1.0.0"
|
2767
2988
|
|
2768
|
-
fileset@^2.0.3:
|
2769
|
-
version "2.0.3"
|
2770
|
-
resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
|
2771
|
-
integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
|
2772
|
-
dependencies:
|
2773
|
-
glob "^7.0.3"
|
2774
|
-
minimatch "^3.0.3"
|
2775
|
-
|
2776
2989
|
fill-range@^4.0.0:
|
2777
2990
|
version "4.0.0"
|
2778
2991
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
|
@@ -2784,12 +2997,12 @@ fill-range@^4.0.0:
|
|
2784
2997
|
to-regex-range "^2.1.0"
|
2785
2998
|
|
2786
2999
|
find-cache-dir@^2.0.0:
|
2787
|
-
version "2.
|
2788
|
-
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.
|
2789
|
-
integrity sha512-
|
3000
|
+
version "2.1.0"
|
3001
|
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
|
3002
|
+
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
|
2790
3003
|
dependencies:
|
2791
3004
|
commondir "^1.0.1"
|
2792
|
-
make-dir "^
|
3005
|
+
make-dir "^2.0.0"
|
2793
3006
|
pkg-dir "^3.0.0"
|
2794
3007
|
|
2795
3008
|
find-up@^1.0.0:
|
@@ -2898,9 +3111,9 @@ from2@^2.1.0:
|
|
2898
3111
|
readable-stream "^2.0.0"
|
2899
3112
|
|
2900
3113
|
fs-minipass@^1.2.5:
|
2901
|
-
version "1.2.
|
2902
|
-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.
|
2903
|
-
integrity sha512-
|
3114
|
+
version "1.2.6"
|
3115
|
+
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07"
|
3116
|
+
integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==
|
2904
3117
|
dependencies:
|
2905
3118
|
minipass "^2.2.1"
|
2906
3119
|
|
@@ -2919,18 +3132,18 @@ fs.realpath@^1.0.0:
|
|
2919
3132
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
2920
3133
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2921
3134
|
|
2922
|
-
fsevents@^1.2.
|
2923
|
-
version "1.2.
|
2924
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.
|
2925
|
-
integrity sha512-
|
3135
|
+
fsevents@^1.2.7:
|
3136
|
+
version "1.2.9"
|
3137
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f"
|
3138
|
+
integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==
|
2926
3139
|
dependencies:
|
2927
|
-
nan "^2.
|
2928
|
-
node-pre-gyp "^0.
|
3140
|
+
nan "^2.12.1"
|
3141
|
+
node-pre-gyp "^0.12.0"
|
2929
3142
|
|
2930
|
-
fstream@^1.0.0, fstream@^1.0.
|
2931
|
-
version "1.0.
|
2932
|
-
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.
|
2933
|
-
integrity
|
3143
|
+
fstream@^1.0.0, fstream@^1.0.12:
|
3144
|
+
version "1.0.12"
|
3145
|
+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
|
3146
|
+
integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==
|
2934
3147
|
dependencies:
|
2935
3148
|
graceful-fs "^4.1.2"
|
2936
3149
|
inherits "~2.0.0"
|
@@ -3005,10 +3218,10 @@ glob-parent@^3.1.0:
|
|
3005
3218
|
is-glob "^3.1.0"
|
3006
3219
|
path-dirname "^1.0.0"
|
3007
3220
|
|
3008
|
-
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1:
|
3009
|
-
version "7.1.
|
3010
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.
|
3011
|
-
integrity sha512-
|
3221
|
+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1:
|
3222
|
+
version "7.1.4"
|
3223
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
|
3224
|
+
integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
|
3012
3225
|
dependencies:
|
3013
3226
|
fs.realpath "^1.0.0"
|
3014
3227
|
inflight "^1.0.4"
|
@@ -3038,9 +3251,9 @@ global-prefix@^1.0.1:
|
|
3038
3251
|
which "^1.2.14"
|
3039
3252
|
|
3040
3253
|
globals@^11.1.0, globals@^11.7.0:
|
3041
|
-
version "11.
|
3042
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-11.
|
3043
|
-
integrity sha512-
|
3254
|
+
version "11.12.0"
|
3255
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
3256
|
+
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
3044
3257
|
|
3045
3258
|
globule@^1.0.0:
|
3046
3259
|
version "1.2.1"
|
@@ -3061,12 +3274,12 @@ growly@^1.3.0:
|
|
3061
3274
|
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
3062
3275
|
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
3063
3276
|
|
3064
|
-
handlebars@^4.1.
|
3065
|
-
version "4.1.
|
3066
|
-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.
|
3067
|
-
integrity sha512-
|
3277
|
+
handlebars@^4.1.2:
|
3278
|
+
version "4.1.2"
|
3279
|
+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67"
|
3280
|
+
integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==
|
3068
3281
|
dependencies:
|
3069
|
-
async "^2.
|
3282
|
+
neo-async "^2.6.0"
|
3070
3283
|
optimist "^0.6.1"
|
3071
3284
|
source-map "^0.6.1"
|
3072
3285
|
optionalDependencies:
|
@@ -3235,7 +3448,7 @@ icss-replace-symbols@^1.1.0:
|
|
3235
3448
|
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
|
3236
3449
|
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
|
3237
3450
|
|
3238
|
-
icss-utils@^4.
|
3451
|
+
icss-utils@^4.1.0:
|
3239
3452
|
version "4.1.0"
|
3240
3453
|
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.0.tgz#339dbbffb9f8729a243b701e1c29d4cc58c52f0e"
|
3241
3454
|
integrity sha512-3DEun4VOeMvSczifM3F2cKQrDQ5Pj6WKhkOq6HD4QTnDUAq8MQRxy5TX6Sy1iY6WPBe4gQ3p5vTECjbIkglkkQ==
|
@@ -3243,9 +3456,9 @@ icss-utils@^4.0.0:
|
|
3243
3456
|
postcss "^7.0.14"
|
3244
3457
|
|
3245
3458
|
ieee754@^1.1.4:
|
3246
|
-
version "1.1.
|
3247
|
-
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.
|
3248
|
-
integrity sha512-
|
3459
|
+
version "1.1.13"
|
3460
|
+
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
3461
|
+
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
|
3249
3462
|
|
3250
3463
|
iferr@^0.1.5:
|
3251
3464
|
version "0.1.5"
|
@@ -3353,9 +3566,9 @@ ini@^1.3.4, ini@~1.3.0:
|
|
3353
3566
|
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
|
3354
3567
|
|
3355
3568
|
inquirer@^6.2.2:
|
3356
|
-
version "6.
|
3357
|
-
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.
|
3358
|
-
integrity sha512-
|
3569
|
+
version "6.3.1"
|
3570
|
+
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.3.1.tgz#7a413b5e7950811013a3db491c61d1f3b776e8e7"
|
3571
|
+
integrity sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA==
|
3359
3572
|
dependencies:
|
3360
3573
|
ansi-escapes "^3.2.0"
|
3361
3574
|
chalk "^2.4.2"
|
@@ -3368,7 +3581,7 @@ inquirer@^6.2.2:
|
|
3368
3581
|
run-async "^2.2.0"
|
3369
3582
|
rxjs "^6.4.0"
|
3370
3583
|
string-width "^2.1.0"
|
3371
|
-
strip-ansi "^5.
|
3584
|
+
strip-ansi "^5.1.0"
|
3372
3585
|
through "^2.3.6"
|
3373
3586
|
|
3374
3587
|
interpret@^1.1.0:
|
@@ -3537,9 +3750,9 @@ is-fullwidth-code-point@^2.0.0:
|
|
3537
3750
|
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
3538
3751
|
|
3539
3752
|
is-generator-fn@^2.0.0:
|
3540
|
-
version "2.
|
3541
|
-
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.
|
3542
|
-
integrity sha512-
|
3753
|
+
version "2.1.0"
|
3754
|
+
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
|
3755
|
+
integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
|
3543
3756
|
|
3544
3757
|
is-glob@^3.1.0:
|
3545
3758
|
version "3.1.0"
|
@@ -3549,9 +3762,9 @@ is-glob@^3.1.0:
|
|
3549
3762
|
is-extglob "^2.1.0"
|
3550
3763
|
|
3551
3764
|
is-glob@^4.0.0:
|
3552
|
-
version "4.0.
|
3553
|
-
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.
|
3554
|
-
integrity
|
3765
|
+
version "4.0.1"
|
3766
|
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
3767
|
+
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
|
3555
3768
|
dependencies:
|
3556
3769
|
is-extglob "^2.1.1"
|
3557
3770
|
|
@@ -3567,6 +3780,11 @@ is-obj@^1.0.0:
|
|
3567
3780
|
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
3568
3781
|
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
3569
3782
|
|
3783
|
+
is-plain-obj@^1.0.0:
|
3784
|
+
version "1.1.0"
|
3785
|
+
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
|
3786
|
+
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
|
3787
|
+
|
3570
3788
|
is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
3571
3789
|
version "2.0.4"
|
3572
3790
|
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
|
@@ -3657,405 +3875,402 @@ isstream@~0.1.2:
|
|
3657
3875
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
3658
3876
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
3659
3877
|
|
3660
|
-
istanbul-
|
3661
|
-
version "2.
|
3662
|
-
resolved "https://registry.yarnpkg.com/istanbul-
|
3663
|
-
integrity sha512-
|
3664
|
-
dependencies:
|
3665
|
-
async "^2.6.1"
|
3666
|
-
compare-versions "^3.2.1"
|
3667
|
-
fileset "^2.0.3"
|
3668
|
-
istanbul-lib-coverage "^2.0.3"
|
3669
|
-
istanbul-lib-hook "^2.0.3"
|
3670
|
-
istanbul-lib-instrument "^3.1.0"
|
3671
|
-
istanbul-lib-report "^2.0.4"
|
3672
|
-
istanbul-lib-source-maps "^3.0.2"
|
3673
|
-
istanbul-reports "^2.1.1"
|
3674
|
-
js-yaml "^3.12.0"
|
3675
|
-
make-dir "^1.3.0"
|
3676
|
-
minimatch "^3.0.4"
|
3677
|
-
once "^1.4.0"
|
3678
|
-
|
3679
|
-
istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3:
|
3680
|
-
version "2.0.3"
|
3681
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba"
|
3682
|
-
integrity sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==
|
3878
|
+
istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5:
|
3879
|
+
version "2.0.5"
|
3880
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49"
|
3881
|
+
integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==
|
3683
3882
|
|
3684
|
-
istanbul-lib-
|
3685
|
-
version "
|
3686
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-
|
3687
|
-
integrity sha512-
|
3883
|
+
istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0:
|
3884
|
+
version "3.3.0"
|
3885
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630"
|
3886
|
+
integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==
|
3688
3887
|
dependencies:
|
3689
|
-
|
3690
|
-
|
3691
|
-
|
3692
|
-
|
3693
|
-
|
3694
|
-
|
3695
|
-
|
3696
|
-
"@babel/generator" "^7.0.0"
|
3697
|
-
"@babel/parser" "^7.0.0"
|
3698
|
-
"@babel/template" "^7.0.0"
|
3699
|
-
"@babel/traverse" "^7.0.0"
|
3700
|
-
"@babel/types" "^7.0.0"
|
3701
|
-
istanbul-lib-coverage "^2.0.3"
|
3702
|
-
semver "^5.5.0"
|
3888
|
+
"@babel/generator" "^7.4.0"
|
3889
|
+
"@babel/parser" "^7.4.3"
|
3890
|
+
"@babel/template" "^7.4.0"
|
3891
|
+
"@babel/traverse" "^7.4.3"
|
3892
|
+
"@babel/types" "^7.4.0"
|
3893
|
+
istanbul-lib-coverage "^2.0.5"
|
3894
|
+
semver "^6.0.0"
|
3703
3895
|
|
3704
3896
|
istanbul-lib-report@^2.0.4:
|
3705
|
-
version "2.0.
|
3706
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.
|
3707
|
-
integrity sha512-
|
3897
|
+
version "2.0.8"
|
3898
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33"
|
3899
|
+
integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==
|
3708
3900
|
dependencies:
|
3709
|
-
istanbul-lib-coverage "^2.0.
|
3710
|
-
make-dir "^1.
|
3711
|
-
supports-color "^6.
|
3901
|
+
istanbul-lib-coverage "^2.0.5"
|
3902
|
+
make-dir "^2.1.0"
|
3903
|
+
supports-color "^6.1.0"
|
3712
3904
|
|
3713
|
-
istanbul-lib-source-maps@^3.0.1
|
3714
|
-
version "3.0.
|
3715
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.
|
3716
|
-
integrity sha512-
|
3905
|
+
istanbul-lib-source-maps@^3.0.1:
|
3906
|
+
version "3.0.6"
|
3907
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8"
|
3908
|
+
integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==
|
3717
3909
|
dependencies:
|
3718
3910
|
debug "^4.1.1"
|
3719
|
-
istanbul-lib-coverage "^2.0.
|
3720
|
-
make-dir "^1.
|
3721
|
-
rimraf "^2.6.
|
3911
|
+
istanbul-lib-coverage "^2.0.5"
|
3912
|
+
make-dir "^2.1.0"
|
3913
|
+
rimraf "^2.6.3"
|
3722
3914
|
source-map "^0.6.1"
|
3723
3915
|
|
3724
3916
|
istanbul-reports@^2.1.1:
|
3725
|
-
version "2.
|
3726
|
-
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.
|
3727
|
-
integrity sha512-
|
3917
|
+
version "2.2.6"
|
3918
|
+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af"
|
3919
|
+
integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==
|
3728
3920
|
dependencies:
|
3729
|
-
handlebars "^4.1.
|
3921
|
+
handlebars "^4.1.2"
|
3730
3922
|
|
3731
|
-
jest-changed-files@^24.
|
3732
|
-
version "24.
|
3733
|
-
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.
|
3734
|
-
integrity sha512-
|
3923
|
+
jest-changed-files@^24.8.0:
|
3924
|
+
version "24.8.0"
|
3925
|
+
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b"
|
3926
|
+
integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==
|
3735
3927
|
dependencies:
|
3928
|
+
"@jest/types" "^24.8.0"
|
3736
3929
|
execa "^1.0.0"
|
3737
3930
|
throat "^4.0.0"
|
3738
3931
|
|
3739
|
-
jest-cli@^24.
|
3740
|
-
version "24.
|
3741
|
-
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.
|
3742
|
-
integrity sha512
|
3932
|
+
jest-cli@^24.8.0:
|
3933
|
+
version "24.8.0"
|
3934
|
+
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989"
|
3935
|
+
integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==
|
3743
3936
|
dependencies:
|
3744
|
-
|
3937
|
+
"@jest/core" "^24.8.0"
|
3938
|
+
"@jest/test-result" "^24.8.0"
|
3939
|
+
"@jest/types" "^24.8.0"
|
3745
3940
|
chalk "^2.0.1"
|
3746
3941
|
exit "^0.1.2"
|
3747
|
-
glob "^7.1.2"
|
3748
|
-
graceful-fs "^4.1.15"
|
3749
3942
|
import-local "^2.0.0"
|
3750
3943
|
is-ci "^2.0.0"
|
3751
|
-
|
3752
|
-
|
3753
|
-
|
3754
|
-
istanbul-lib-source-maps "^3.0.1"
|
3755
|
-
jest-changed-files "^24.0.0"
|
3756
|
-
jest-config "^24.1.0"
|
3757
|
-
jest-environment-jsdom "^24.0.0"
|
3758
|
-
jest-get-type "^24.0.0"
|
3759
|
-
jest-haste-map "^24.0.0"
|
3760
|
-
jest-message-util "^24.0.0"
|
3761
|
-
jest-regex-util "^24.0.0"
|
3762
|
-
jest-resolve-dependencies "^24.1.0"
|
3763
|
-
jest-runner "^24.1.0"
|
3764
|
-
jest-runtime "^24.1.0"
|
3765
|
-
jest-snapshot "^24.1.0"
|
3766
|
-
jest-util "^24.0.0"
|
3767
|
-
jest-validate "^24.0.0"
|
3768
|
-
jest-watcher "^24.0.0"
|
3769
|
-
jest-worker "^24.0.0"
|
3770
|
-
micromatch "^3.1.10"
|
3771
|
-
node-notifier "^5.2.1"
|
3772
|
-
p-each-series "^1.0.0"
|
3773
|
-
pirates "^4.0.0"
|
3944
|
+
jest-config "^24.8.0"
|
3945
|
+
jest-util "^24.8.0"
|
3946
|
+
jest-validate "^24.8.0"
|
3774
3947
|
prompts "^2.0.1"
|
3775
|
-
realpath-native "^1.
|
3776
|
-
rimraf "^2.5.4"
|
3777
|
-
slash "^2.0.0"
|
3778
|
-
string-length "^2.0.0"
|
3779
|
-
strip-ansi "^5.0.0"
|
3780
|
-
which "^1.2.12"
|
3948
|
+
realpath-native "^1.1.0"
|
3781
3949
|
yargs "^12.0.2"
|
3782
3950
|
|
3783
|
-
jest-config@^24.
|
3784
|
-
version "24.
|
3785
|
-
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.
|
3786
|
-
integrity sha512-
|
3951
|
+
jest-config@^24.8.0:
|
3952
|
+
version "24.8.0"
|
3953
|
+
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f"
|
3954
|
+
integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==
|
3787
3955
|
dependencies:
|
3788
3956
|
"@babel/core" "^7.1.0"
|
3789
|
-
|
3957
|
+
"@jest/test-sequencer" "^24.8.0"
|
3958
|
+
"@jest/types" "^24.8.0"
|
3959
|
+
babel-jest "^24.8.0"
|
3790
3960
|
chalk "^2.0.1"
|
3791
3961
|
glob "^7.1.1"
|
3792
|
-
jest-environment-jsdom "^24.
|
3793
|
-
jest-environment-node "^24.
|
3794
|
-
jest-get-type "^24.
|
3795
|
-
jest-jasmine2 "^24.
|
3796
|
-
jest-regex-util "^24.
|
3797
|
-
jest-resolve "^24.
|
3798
|
-
jest-util "^24.
|
3799
|
-
jest-validate "^24.
|
3962
|
+
jest-environment-jsdom "^24.8.0"
|
3963
|
+
jest-environment-node "^24.8.0"
|
3964
|
+
jest-get-type "^24.8.0"
|
3965
|
+
jest-jasmine2 "^24.8.0"
|
3966
|
+
jest-regex-util "^24.3.0"
|
3967
|
+
jest-resolve "^24.8.0"
|
3968
|
+
jest-util "^24.8.0"
|
3969
|
+
jest-validate "^24.8.0"
|
3800
3970
|
micromatch "^3.1.10"
|
3801
|
-
pretty-format "^24.
|
3802
|
-
realpath-native "^1.0
|
3971
|
+
pretty-format "^24.8.0"
|
3972
|
+
realpath-native "^1.1.0"
|
3803
3973
|
|
3804
|
-
jest-diff@^24.
|
3805
|
-
version "24.
|
3806
|
-
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.
|
3807
|
-
integrity sha512-
|
3974
|
+
jest-diff@^24.8.0:
|
3975
|
+
version "24.8.0"
|
3976
|
+
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172"
|
3977
|
+
integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==
|
3808
3978
|
dependencies:
|
3809
3979
|
chalk "^2.0.1"
|
3810
|
-
diff-sequences "^24.
|
3811
|
-
jest-get-type "^24.
|
3812
|
-
pretty-format "^24.
|
3980
|
+
diff-sequences "^24.3.0"
|
3981
|
+
jest-get-type "^24.8.0"
|
3982
|
+
pretty-format "^24.8.0"
|
3813
3983
|
|
3814
|
-
jest-docblock@^24.
|
3815
|
-
version "24.
|
3816
|
-
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.
|
3817
|
-
integrity sha512-
|
3984
|
+
jest-docblock@^24.3.0:
|
3985
|
+
version "24.3.0"
|
3986
|
+
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd"
|
3987
|
+
integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==
|
3818
3988
|
dependencies:
|
3819
3989
|
detect-newline "^2.1.0"
|
3820
3990
|
|
3821
|
-
jest-each@^24.
|
3822
|
-
version "24.
|
3823
|
-
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.
|
3824
|
-
integrity sha512-
|
3991
|
+
jest-each@^24.8.0:
|
3992
|
+
version "24.8.0"
|
3993
|
+
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775"
|
3994
|
+
integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==
|
3825
3995
|
dependencies:
|
3996
|
+
"@jest/types" "^24.8.0"
|
3826
3997
|
chalk "^2.0.1"
|
3827
|
-
jest-get-type "^24.
|
3828
|
-
jest-util "^24.
|
3829
|
-
pretty-format "^24.
|
3830
|
-
|
3831
|
-
jest-environment-jsdom@^24.
|
3832
|
-
version "24.
|
3833
|
-
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.
|
3834
|
-
integrity sha512-
|
3835
|
-
dependencies:
|
3836
|
-
jest
|
3837
|
-
jest-
|
3998
|
+
jest-get-type "^24.8.0"
|
3999
|
+
jest-util "^24.8.0"
|
4000
|
+
pretty-format "^24.8.0"
|
4001
|
+
|
4002
|
+
jest-environment-jsdom@^24.8.0:
|
4003
|
+
version "24.8.0"
|
4004
|
+
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857"
|
4005
|
+
integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==
|
4006
|
+
dependencies:
|
4007
|
+
"@jest/environment" "^24.8.0"
|
4008
|
+
"@jest/fake-timers" "^24.8.0"
|
4009
|
+
"@jest/types" "^24.8.0"
|
4010
|
+
jest-mock "^24.8.0"
|
4011
|
+
jest-util "^24.8.0"
|
3838
4012
|
jsdom "^11.5.1"
|
3839
4013
|
|
3840
|
-
jest-environment-node@^24.
|
3841
|
-
version "24.
|
3842
|
-
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.
|
3843
|
-
integrity sha512-
|
4014
|
+
jest-environment-node@^24.8.0:
|
4015
|
+
version "24.8.0"
|
4016
|
+
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231"
|
4017
|
+
integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==
|
3844
4018
|
dependencies:
|
3845
|
-
jest
|
3846
|
-
jest-
|
4019
|
+
"@jest/environment" "^24.8.0"
|
4020
|
+
"@jest/fake-timers" "^24.8.0"
|
4021
|
+
"@jest/types" "^24.8.0"
|
4022
|
+
jest-mock "^24.8.0"
|
4023
|
+
jest-util "^24.8.0"
|
3847
4024
|
|
3848
|
-
jest-get-type@^24.
|
3849
|
-
version "24.
|
3850
|
-
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.
|
3851
|
-
integrity sha512-
|
4025
|
+
jest-get-type@^24.8.0:
|
4026
|
+
version "24.8.0"
|
4027
|
+
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc"
|
4028
|
+
integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==
|
3852
4029
|
|
3853
|
-
jest-haste-map@^24.
|
3854
|
-
version "24.
|
3855
|
-
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.
|
3856
|
-
integrity sha512-
|
4030
|
+
jest-haste-map@^24.8.0:
|
4031
|
+
version "24.8.0"
|
4032
|
+
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.0.tgz#51794182d877b3ddfd6e6d23920e3fe72f305800"
|
4033
|
+
integrity sha512-ZBPRGHdPt1rHajWelXdqygIDpJx8u3xOoLyUBWRW28r3tagrgoepPrzAozW7kW9HrQfhvmiv1tncsxqHJO1onQ==
|
3857
4034
|
dependencies:
|
4035
|
+
"@jest/types" "^24.8.0"
|
4036
|
+
anymatch "^2.0.0"
|
3858
4037
|
fb-watchman "^2.0.0"
|
3859
4038
|
graceful-fs "^4.1.15"
|
3860
4039
|
invariant "^2.2.4"
|
3861
|
-
jest-serializer "^24.
|
3862
|
-
jest-util "^24.
|
3863
|
-
jest-worker "^24.
|
4040
|
+
jest-serializer "^24.4.0"
|
4041
|
+
jest-util "^24.8.0"
|
4042
|
+
jest-worker "^24.6.0"
|
3864
4043
|
micromatch "^3.1.10"
|
3865
|
-
sane "^
|
4044
|
+
sane "^4.0.3"
|
4045
|
+
walker "^1.0.7"
|
4046
|
+
optionalDependencies:
|
4047
|
+
fsevents "^1.2.7"
|
3866
4048
|
|
3867
|
-
jest-jasmine2@^24.
|
3868
|
-
version "24.
|
3869
|
-
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.
|
3870
|
-
integrity sha512-
|
4049
|
+
jest-jasmine2@^24.8.0:
|
4050
|
+
version "24.8.0"
|
4051
|
+
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898"
|
4052
|
+
integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==
|
3871
4053
|
dependencies:
|
3872
4054
|
"@babel/traverse" "^7.1.0"
|
4055
|
+
"@jest/environment" "^24.8.0"
|
4056
|
+
"@jest/test-result" "^24.8.0"
|
4057
|
+
"@jest/types" "^24.8.0"
|
3873
4058
|
chalk "^2.0.1"
|
3874
4059
|
co "^4.6.0"
|
3875
|
-
expect "^24.
|
4060
|
+
expect "^24.8.0"
|
3876
4061
|
is-generator-fn "^2.0.0"
|
3877
|
-
jest-each "^24.
|
3878
|
-
jest-matcher-utils "^24.
|
3879
|
-
jest-message-util "^24.
|
3880
|
-
jest-
|
3881
|
-
jest-
|
3882
|
-
|
4062
|
+
jest-each "^24.8.0"
|
4063
|
+
jest-matcher-utils "^24.8.0"
|
4064
|
+
jest-message-util "^24.8.0"
|
4065
|
+
jest-runtime "^24.8.0"
|
4066
|
+
jest-snapshot "^24.8.0"
|
4067
|
+
jest-util "^24.8.0"
|
4068
|
+
pretty-format "^24.8.0"
|
3883
4069
|
throat "^4.0.0"
|
3884
4070
|
|
3885
|
-
jest-leak-detector@^24.
|
3886
|
-
version "24.
|
3887
|
-
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.
|
3888
|
-
integrity sha512-
|
4071
|
+
jest-leak-detector@^24.8.0:
|
4072
|
+
version "24.8.0"
|
4073
|
+
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980"
|
4074
|
+
integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==
|
3889
4075
|
dependencies:
|
3890
|
-
pretty-format "^24.
|
4076
|
+
pretty-format "^24.8.0"
|
3891
4077
|
|
3892
|
-
jest-matcher-utils@^24.
|
3893
|
-
version "24.
|
3894
|
-
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.
|
3895
|
-
integrity sha512-
|
4078
|
+
jest-matcher-utils@^24.8.0:
|
4079
|
+
version "24.8.0"
|
4080
|
+
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495"
|
4081
|
+
integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==
|
3896
4082
|
dependencies:
|
3897
4083
|
chalk "^2.0.1"
|
3898
|
-
jest-diff "^24.
|
3899
|
-
jest-get-type "^24.
|
3900
|
-
pretty-format "^24.
|
4084
|
+
jest-diff "^24.8.0"
|
4085
|
+
jest-get-type "^24.8.0"
|
4086
|
+
pretty-format "^24.8.0"
|
3901
4087
|
|
3902
|
-
jest-message-util@^24.
|
3903
|
-
version "24.
|
3904
|
-
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.
|
3905
|
-
integrity sha512-
|
4088
|
+
jest-message-util@^24.8.0:
|
4089
|
+
version "24.8.0"
|
4090
|
+
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b"
|
4091
|
+
integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==
|
3906
4092
|
dependencies:
|
3907
4093
|
"@babel/code-frame" "^7.0.0"
|
4094
|
+
"@jest/test-result" "^24.8.0"
|
4095
|
+
"@jest/types" "^24.8.0"
|
4096
|
+
"@types/stack-utils" "^1.0.1"
|
3908
4097
|
chalk "^2.0.1"
|
3909
4098
|
micromatch "^3.1.10"
|
3910
4099
|
slash "^2.0.0"
|
3911
4100
|
stack-utils "^1.0.1"
|
3912
4101
|
|
3913
|
-
jest-mock@^24.
|
3914
|
-
version "24.
|
3915
|
-
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.
|
3916
|
-
integrity sha512-
|
4102
|
+
jest-mock@^24.8.0:
|
4103
|
+
version "24.8.0"
|
4104
|
+
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56"
|
4105
|
+
integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==
|
4106
|
+
dependencies:
|
4107
|
+
"@jest/types" "^24.8.0"
|
4108
|
+
|
4109
|
+
jest-pnp-resolver@^1.2.1:
|
4110
|
+
version "1.2.1"
|
4111
|
+
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
|
4112
|
+
integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
|
3917
4113
|
|
3918
|
-
jest-regex-util@^24.
|
3919
|
-
version "24.
|
3920
|
-
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.
|
3921
|
-
integrity sha512-
|
4114
|
+
jest-regex-util@^24.3.0:
|
4115
|
+
version "24.3.0"
|
4116
|
+
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36"
|
4117
|
+
integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==
|
3922
4118
|
|
3923
|
-
jest-resolve-dependencies@^24.
|
3924
|
-
version "24.
|
3925
|
-
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.
|
3926
|
-
integrity sha512-
|
4119
|
+
jest-resolve-dependencies@^24.8.0:
|
4120
|
+
version "24.8.0"
|
4121
|
+
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0"
|
4122
|
+
integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==
|
3927
4123
|
dependencies:
|
3928
|
-
jest
|
3929
|
-
jest-
|
4124
|
+
"@jest/types" "^24.8.0"
|
4125
|
+
jest-regex-util "^24.3.0"
|
4126
|
+
jest-snapshot "^24.8.0"
|
3930
4127
|
|
3931
|
-
jest-resolve@^24.
|
3932
|
-
version "24.
|
3933
|
-
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.
|
3934
|
-
integrity sha512
|
4128
|
+
jest-resolve@^24.8.0:
|
4129
|
+
version "24.8.0"
|
4130
|
+
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f"
|
4131
|
+
integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==
|
3935
4132
|
dependencies:
|
4133
|
+
"@jest/types" "^24.8.0"
|
3936
4134
|
browser-resolve "^1.11.3"
|
3937
4135
|
chalk "^2.0.1"
|
3938
|
-
|
3939
|
-
|
3940
|
-
|
3941
|
-
|
3942
|
-
|
3943
|
-
|
3944
|
-
|
4136
|
+
jest-pnp-resolver "^1.2.1"
|
4137
|
+
realpath-native "^1.1.0"
|
4138
|
+
|
4139
|
+
jest-runner@^24.8.0:
|
4140
|
+
version "24.8.0"
|
4141
|
+
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb"
|
4142
|
+
integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==
|
4143
|
+
dependencies:
|
4144
|
+
"@jest/console" "^24.7.1"
|
4145
|
+
"@jest/environment" "^24.8.0"
|
4146
|
+
"@jest/test-result" "^24.8.0"
|
4147
|
+
"@jest/types" "^24.8.0"
|
3945
4148
|
chalk "^2.4.2"
|
3946
4149
|
exit "^0.1.2"
|
3947
4150
|
graceful-fs "^4.1.15"
|
3948
|
-
jest-config "^24.
|
3949
|
-
jest-docblock "^24.
|
3950
|
-
jest-haste-map "^24.
|
3951
|
-
jest-jasmine2 "^24.
|
3952
|
-
jest-leak-detector "^24.
|
3953
|
-
jest-message-util "^24.
|
3954
|
-
jest-
|
3955
|
-
jest-
|
3956
|
-
jest-
|
4151
|
+
jest-config "^24.8.0"
|
4152
|
+
jest-docblock "^24.3.0"
|
4153
|
+
jest-haste-map "^24.8.0"
|
4154
|
+
jest-jasmine2 "^24.8.0"
|
4155
|
+
jest-leak-detector "^24.8.0"
|
4156
|
+
jest-message-util "^24.8.0"
|
4157
|
+
jest-resolve "^24.8.0"
|
4158
|
+
jest-runtime "^24.8.0"
|
4159
|
+
jest-util "^24.8.0"
|
4160
|
+
jest-worker "^24.6.0"
|
3957
4161
|
source-map-support "^0.5.6"
|
3958
4162
|
throat "^4.0.0"
|
3959
4163
|
|
3960
|
-
jest-runtime@^24.
|
3961
|
-
version "24.
|
3962
|
-
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.
|
3963
|
-
integrity sha512-
|
3964
|
-
dependencies:
|
3965
|
-
"@
|
3966
|
-
|
4164
|
+
jest-runtime@^24.8.0:
|
4165
|
+
version "24.8.0"
|
4166
|
+
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620"
|
4167
|
+
integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==
|
4168
|
+
dependencies:
|
4169
|
+
"@jest/console" "^24.7.1"
|
4170
|
+
"@jest/environment" "^24.8.0"
|
4171
|
+
"@jest/source-map" "^24.3.0"
|
4172
|
+
"@jest/transform" "^24.8.0"
|
4173
|
+
"@jest/types" "^24.8.0"
|
4174
|
+
"@types/yargs" "^12.0.2"
|
3967
4175
|
chalk "^2.0.1"
|
3968
|
-
convert-source-map "^1.4.0"
|
3969
4176
|
exit "^0.1.2"
|
3970
|
-
fast-json-stable-stringify "^2.0.0"
|
3971
4177
|
glob "^7.1.3"
|
3972
4178
|
graceful-fs "^4.1.15"
|
3973
|
-
jest-config "^24.
|
3974
|
-
jest-haste-map "^24.
|
3975
|
-
jest-message-util "^24.
|
3976
|
-
jest-
|
3977
|
-
jest-
|
3978
|
-
jest-
|
3979
|
-
jest-
|
3980
|
-
jest-
|
3981
|
-
|
3982
|
-
realpath-native "^1.
|
4179
|
+
jest-config "^24.8.0"
|
4180
|
+
jest-haste-map "^24.8.0"
|
4181
|
+
jest-message-util "^24.8.0"
|
4182
|
+
jest-mock "^24.8.0"
|
4183
|
+
jest-regex-util "^24.3.0"
|
4184
|
+
jest-resolve "^24.8.0"
|
4185
|
+
jest-snapshot "^24.8.0"
|
4186
|
+
jest-util "^24.8.0"
|
4187
|
+
jest-validate "^24.8.0"
|
4188
|
+
realpath-native "^1.1.0"
|
3983
4189
|
slash "^2.0.0"
|
3984
4190
|
strip-bom "^3.0.0"
|
3985
|
-
write-file-atomic "2.4.1"
|
3986
4191
|
yargs "^12.0.2"
|
3987
4192
|
|
3988
|
-
jest-serializer@^24.
|
3989
|
-
version "24.
|
3990
|
-
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.
|
3991
|
-
integrity sha512-
|
4193
|
+
jest-serializer@^24.4.0:
|
4194
|
+
version "24.4.0"
|
4195
|
+
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3"
|
4196
|
+
integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==
|
3992
4197
|
|
3993
|
-
jest-snapshot@^24.
|
3994
|
-
version "24.
|
3995
|
-
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.
|
3996
|
-
integrity sha512-
|
4198
|
+
jest-snapshot@^24.8.0:
|
4199
|
+
version "24.8.0"
|
4200
|
+
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6"
|
4201
|
+
integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==
|
3997
4202
|
dependencies:
|
3998
4203
|
"@babel/types" "^7.0.0"
|
4204
|
+
"@jest/types" "^24.8.0"
|
3999
4205
|
chalk "^2.0.1"
|
4000
|
-
|
4001
|
-
jest-
|
4002
|
-
jest-
|
4003
|
-
jest-
|
4206
|
+
expect "^24.8.0"
|
4207
|
+
jest-diff "^24.8.0"
|
4208
|
+
jest-matcher-utils "^24.8.0"
|
4209
|
+
jest-message-util "^24.8.0"
|
4210
|
+
jest-resolve "^24.8.0"
|
4004
4211
|
mkdirp "^0.5.1"
|
4005
4212
|
natural-compare "^1.4.0"
|
4006
|
-
pretty-format "^24.
|
4213
|
+
pretty-format "^24.8.0"
|
4007
4214
|
semver "^5.5.0"
|
4008
4215
|
|
4009
|
-
jest-util@^24.
|
4010
|
-
version "24.
|
4011
|
-
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.
|
4012
|
-
integrity sha512-
|
4216
|
+
jest-util@^24.8.0:
|
4217
|
+
version "24.8.0"
|
4218
|
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1"
|
4219
|
+
integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==
|
4013
4220
|
dependencies:
|
4221
|
+
"@jest/console" "^24.7.1"
|
4222
|
+
"@jest/fake-timers" "^24.8.0"
|
4223
|
+
"@jest/source-map" "^24.3.0"
|
4224
|
+
"@jest/test-result" "^24.8.0"
|
4225
|
+
"@jest/types" "^24.8.0"
|
4014
4226
|
callsites "^3.0.0"
|
4015
4227
|
chalk "^2.0.1"
|
4016
4228
|
graceful-fs "^4.1.15"
|
4017
4229
|
is-ci "^2.0.0"
|
4018
|
-
jest-message-util "^24.0.0"
|
4019
4230
|
mkdirp "^0.5.1"
|
4020
4231
|
slash "^2.0.0"
|
4021
4232
|
source-map "^0.6.0"
|
4022
4233
|
|
4023
|
-
jest-validate@^24.
|
4024
|
-
version "24.
|
4025
|
-
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.
|
4026
|
-
integrity sha512
|
4234
|
+
jest-validate@^24.8.0:
|
4235
|
+
version "24.8.0"
|
4236
|
+
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849"
|
4237
|
+
integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==
|
4027
4238
|
dependencies:
|
4239
|
+
"@jest/types" "^24.8.0"
|
4028
4240
|
camelcase "^5.0.0"
|
4029
4241
|
chalk "^2.0.1"
|
4030
|
-
jest-get-type "^24.
|
4242
|
+
jest-get-type "^24.8.0"
|
4031
4243
|
leven "^2.1.0"
|
4032
|
-
pretty-format "^24.
|
4244
|
+
pretty-format "^24.8.0"
|
4033
4245
|
|
4034
|
-
jest-watcher@^24.
|
4035
|
-
version "24.
|
4036
|
-
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.
|
4037
|
-
integrity sha512-
|
4246
|
+
jest-watcher@^24.8.0:
|
4247
|
+
version "24.8.0"
|
4248
|
+
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4"
|
4249
|
+
integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==
|
4038
4250
|
dependencies:
|
4251
|
+
"@jest/test-result" "^24.8.0"
|
4252
|
+
"@jest/types" "^24.8.0"
|
4253
|
+
"@types/yargs" "^12.0.9"
|
4039
4254
|
ansi-escapes "^3.0.0"
|
4040
4255
|
chalk "^2.0.1"
|
4041
|
-
jest-util "^24.
|
4256
|
+
jest-util "^24.8.0"
|
4042
4257
|
string-length "^2.0.0"
|
4043
4258
|
|
4044
|
-
jest-worker@^24.
|
4045
|
-
version "24.
|
4046
|
-
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.
|
4047
|
-
integrity sha512-
|
4259
|
+
jest-worker@^24.6.0:
|
4260
|
+
version "24.6.0"
|
4261
|
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3"
|
4262
|
+
integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==
|
4048
4263
|
dependencies:
|
4049
4264
|
merge-stream "^1.0.1"
|
4050
4265
|
supports-color "^6.1.0"
|
4051
4266
|
|
4052
|
-
jest@^24.
|
4053
|
-
version "24.
|
4054
|
-
resolved "https://registry.yarnpkg.com/jest/-/jest-24.
|
4055
|
-
integrity sha512
|
4267
|
+
jest@^24.8.0:
|
4268
|
+
version "24.8.0"
|
4269
|
+
resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081"
|
4270
|
+
integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==
|
4056
4271
|
dependencies:
|
4057
4272
|
import-local "^2.0.0"
|
4058
|
-
jest-cli "^24.
|
4273
|
+
jest-cli "^24.8.0"
|
4059
4274
|
|
4060
4275
|
js-base64@^2.1.8:
|
4061
4276
|
version "2.5.1"
|
@@ -4072,10 +4287,10 @@ js-levenshtein@^1.1.3:
|
|
4072
4287
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
4073
4288
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
4074
4289
|
|
4075
|
-
js-yaml@^3.
|
4076
|
-
version "3.
|
4077
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.
|
4078
|
-
integrity sha512-
|
4290
|
+
js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.9.0:
|
4291
|
+
version "3.13.1"
|
4292
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
|
4293
|
+
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
|
4079
4294
|
dependencies:
|
4080
4295
|
argparse "^1.0.7"
|
4081
4296
|
esprima "^4.0.0"
|
@@ -4176,10 +4391,10 @@ jsprim@^1.2.2:
|
|
4176
4391
|
json-schema "0.2.3"
|
4177
4392
|
verror "1.10.0"
|
4178
4393
|
|
4179
|
-
jsx-ast-utils@^2.0.1:
|
4180
|
-
version "2.0
|
4181
|
-
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.
|
4182
|
-
integrity
|
4394
|
+
jsx-ast-utils@^2.0.1, jsx-ast-utils@^2.1.0:
|
4395
|
+
version "2.1.0"
|
4396
|
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.1.0.tgz#0ee4e2c971fb9601c67b5641b71be80faecf0b36"
|
4397
|
+
integrity sha512-yDGDG2DS4JcqhA6blsuYbtsT09xL8AoLuUR2Gb5exrw7UEM19sBcOTq+YBBhrNbl0PUC4R4LnFu+dHg2HKeVvA==
|
4183
4398
|
dependencies:
|
4184
4399
|
array-includes "^3.0.3"
|
4185
4400
|
|
@@ -4208,9 +4423,9 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
4208
4423
|
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
4209
4424
|
|
4210
4425
|
kleur@^3.0.2:
|
4211
|
-
version "3.0.
|
4212
|
-
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.
|
4213
|
-
integrity sha512-
|
4426
|
+
version "3.0.3"
|
4427
|
+
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
|
4428
|
+
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
|
4214
4429
|
|
4215
4430
|
last-call-webpack-plugin@^3.0.0:
|
4216
4431
|
version "3.0.0"
|
@@ -4288,7 +4503,7 @@ loader-runner@^2.3.0:
|
|
4288
4503
|
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
4289
4504
|
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
|
4290
4505
|
|
4291
|
-
loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.
|
4506
|
+
loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
|
4292
4507
|
version "1.2.3"
|
4293
4508
|
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
|
4294
4509
|
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
@@ -4318,17 +4533,7 @@ lodash._reinterpolate@~3.0.0:
|
|
4318
4533
|
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
|
4319
4534
|
integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
|
4320
4535
|
|
4321
|
-
lodash.
|
4322
|
-
version "4.2.0"
|
4323
|
-
resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
|
4324
|
-
integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=
|
4325
|
-
|
4326
|
-
lodash.clonedeep@^4.3.2:
|
4327
|
-
version "4.5.0"
|
4328
|
-
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
|
4329
|
-
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
|
4330
|
-
|
4331
|
-
lodash.get@^4.0, lodash.get@^4.4.2:
|
4536
|
+
lodash.get@^4.0:
|
4332
4537
|
version "4.4.2"
|
4333
4538
|
resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
|
4334
4539
|
integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
|
@@ -4343,11 +4548,6 @@ lodash.memoize@^4.1.2:
|
|
4343
4548
|
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
|
4344
4549
|
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
|
4345
4550
|
|
4346
|
-
lodash.mergewith@^4.6.0:
|
4347
|
-
version "4.6.1"
|
4348
|
-
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927"
|
4349
|
-
integrity sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==
|
4350
|
-
|
4351
4551
|
lodash.sortby@^4.7.0:
|
4352
4552
|
version "4.7.0"
|
4353
4553
|
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
|
@@ -4378,7 +4578,7 @@ lodash.uniq@^4.5.0:
|
|
4378
4578
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
4379
4579
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
4380
4580
|
|
4381
|
-
lodash@^4.0.0, lodash@^4.17.
|
4581
|
+
lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.5, lodash@~4.17.10:
|
4382
4582
|
version "4.17.11"
|
4383
4583
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
|
4384
4584
|
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
|
@@ -4413,12 +4613,13 @@ lru-cache@^5.1.1:
|
|
4413
4613
|
dependencies:
|
4414
4614
|
yallist "^3.0.2"
|
4415
4615
|
|
4416
|
-
make-dir@^
|
4417
|
-
version "1.
|
4418
|
-
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.
|
4419
|
-
integrity sha512-
|
4616
|
+
make-dir@^2.0.0, make-dir@^2.1.0:
|
4617
|
+
version "2.1.0"
|
4618
|
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
4619
|
+
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
|
4420
4620
|
dependencies:
|
4421
|
-
pify "^
|
4621
|
+
pify "^4.0.1"
|
4622
|
+
semver "^5.6.0"
|
4422
4623
|
|
4423
4624
|
makeerror@1.0.x:
|
4424
4625
|
version "1.0.11"
|
@@ -4471,12 +4672,12 @@ mdn-data@~1.1.0:
|
|
4471
4672
|
integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==
|
4472
4673
|
|
4473
4674
|
mem@^4.0.0:
|
4474
|
-
version "4.
|
4475
|
-
resolved "https://registry.yarnpkg.com/mem/-/mem-4.
|
4476
|
-
integrity sha512-
|
4675
|
+
version "4.3.0"
|
4676
|
+
resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
|
4677
|
+
integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==
|
4477
4678
|
dependencies:
|
4478
4679
|
map-age-cleaner "^0.1.1"
|
4479
|
-
mimic-fn "^
|
4680
|
+
mimic-fn "^2.0.0"
|
4480
4681
|
p-is-promise "^2.0.0"
|
4481
4682
|
|
4482
4683
|
memory-fs@^0.4.0, memory-fs@~0.4.1:
|
@@ -4510,11 +4711,6 @@ merge-stream@^1.0.1:
|
|
4510
4711
|
dependencies:
|
4511
4712
|
readable-stream "^2.0.1"
|
4512
4713
|
|
4513
|
-
merge@^1.2.0:
|
4514
|
-
version "1.2.1"
|
4515
|
-
resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
|
4516
|
-
integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==
|
4517
|
-
|
4518
4714
|
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8:
|
4519
4715
|
version "3.1.10"
|
4520
4716
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
@@ -4542,29 +4738,35 @@ miller-rabin@^4.0.0:
|
|
4542
4738
|
bn.js "^4.0.0"
|
4543
4739
|
brorand "^1.0.1"
|
4544
4740
|
|
4545
|
-
mime-db
|
4546
|
-
version "1.
|
4547
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
4548
|
-
integrity sha512-
|
4741
|
+
mime-db@1.40.0:
|
4742
|
+
version "1.40.0"
|
4743
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32"
|
4744
|
+
integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==
|
4549
4745
|
|
4550
4746
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
4551
|
-
version "2.1.
|
4552
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
4553
|
-
integrity sha512-
|
4747
|
+
version "2.1.24"
|
4748
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81"
|
4749
|
+
integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==
|
4554
4750
|
dependencies:
|
4555
|
-
mime-db "
|
4751
|
+
mime-db "1.40.0"
|
4556
4752
|
|
4557
4753
|
mimic-fn@^1.0.0:
|
4558
4754
|
version "1.2.0"
|
4559
4755
|
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
|
4560
4756
|
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
|
4561
4757
|
|
4562
|
-
|
4563
|
-
version "
|
4564
|
-
resolved "https://registry.yarnpkg.com/
|
4565
|
-
integrity sha512-
|
4758
|
+
mimic-fn@^2.0.0:
|
4759
|
+
version "2.1.0"
|
4760
|
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
4761
|
+
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
4762
|
+
|
4763
|
+
mini-css-extract-plugin@^0.7.0:
|
4764
|
+
version "0.7.0"
|
4765
|
+
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0"
|
4766
|
+
integrity sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ==
|
4566
4767
|
dependencies:
|
4567
4768
|
loader-utils "^1.1.0"
|
4769
|
+
normalize-url "1.9.1"
|
4568
4770
|
schema-utils "^1.0.0"
|
4569
4771
|
webpack-sources "^1.1.0"
|
4570
4772
|
|
@@ -4578,7 +4780,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
|
4578
4780
|
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
4579
4781
|
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
|
4580
4782
|
|
4581
|
-
minimatch@^3.0.
|
4783
|
+
minimatch@^3.0.4, minimatch@~3.0.2:
|
4582
4784
|
version "3.0.4"
|
4583
4785
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
4584
4786
|
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
|
@@ -4681,10 +4883,10 @@ mute-stream@0.0.7:
|
|
4681
4883
|
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
4682
4884
|
integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
|
4683
4885
|
|
4684
|
-
nan@^2.
|
4685
|
-
version "2.
|
4686
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.
|
4687
|
-
integrity sha512-
|
4886
|
+
nan@^2.12.1, nan@^2.13.2:
|
4887
|
+
version "2.14.0"
|
4888
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
|
4889
|
+
integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
|
4688
4890
|
|
4689
4891
|
nanomatch@^1.2.9:
|
4690
4892
|
version "1.2.13"
|
@@ -4709,18 +4911,18 @@ natural-compare@^1.4.0:
|
|
4709
4911
|
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
|
4710
4912
|
|
4711
4913
|
needle@^2.2.1:
|
4712
|
-
version "2.
|
4713
|
-
resolved "https://registry.yarnpkg.com/needle/-/needle-2.
|
4714
|
-
integrity sha512-
|
4914
|
+
version "2.4.0"
|
4915
|
+
resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
|
4916
|
+
integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
|
4715
4917
|
dependencies:
|
4716
|
-
debug "^2.
|
4918
|
+
debug "^3.2.6"
|
4717
4919
|
iconv-lite "^0.4.4"
|
4718
4920
|
sax "^1.2.4"
|
4719
4921
|
|
4720
|
-
neo-async@^2.5.0:
|
4721
|
-
version "2.6.
|
4722
|
-
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.
|
4723
|
-
integrity sha512-
|
4922
|
+
neo-async@^2.5.0, neo-async@^2.6.0:
|
4923
|
+
version "2.6.1"
|
4924
|
+
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
|
4925
|
+
integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
|
4724
4926
|
|
4725
4927
|
nice-try@^1.0.4:
|
4726
4928
|
version "1.0.5"
|
@@ -4795,10 +4997,10 @@ node-notifier@^5.2.1:
|
|
4795
4997
|
shellwords "^0.1.1"
|
4796
4998
|
which "^1.3.0"
|
4797
4999
|
|
4798
|
-
node-pre-gyp@^0.
|
4799
|
-
version "0.
|
4800
|
-
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.
|
4801
|
-
integrity sha512-
|
5000
|
+
node-pre-gyp@^0.12.0:
|
5001
|
+
version "0.12.0"
|
5002
|
+
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149"
|
5003
|
+
integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A==
|
4802
5004
|
dependencies:
|
4803
5005
|
detect-libc "^1.0.2"
|
4804
5006
|
mkdirp "^0.5.1"
|
@@ -4811,17 +5013,17 @@ node-pre-gyp@^0.10.0:
|
|
4811
5013
|
semver "^5.3.0"
|
4812
5014
|
tar "^4"
|
4813
5015
|
|
4814
|
-
node-releases@^1.1.
|
4815
|
-
version "1.1.
|
4816
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
4817
|
-
integrity sha512-
|
5016
|
+
node-releases@^1.1.19:
|
5017
|
+
version "1.1.21"
|
5018
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.21.tgz#46c86f9adaceae4d63c75d3c2f2e6eee618e55f3"
|
5019
|
+
integrity sha512-TwnURTCjc8a+ElJUjmDqU6+12jhli1Q61xOQmdZ7ECZVBZuQpN/1UnembiIHDM1wCcfLvh5wrWXUF5H6ufX64Q==
|
4818
5020
|
dependencies:
|
4819
5021
|
semver "^5.3.0"
|
4820
5022
|
|
4821
|
-
node-sass@^4.
|
4822
|
-
version "4.
|
4823
|
-
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.
|
4824
|
-
integrity sha512-
|
5023
|
+
node-sass@^4.12.0:
|
5024
|
+
version "4.12.0"
|
5025
|
+
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017"
|
5026
|
+
integrity sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==
|
4825
5027
|
dependencies:
|
4826
5028
|
async-foreach "^0.1.3"
|
4827
5029
|
chalk "^1.1.1"
|
@@ -4830,12 +5032,10 @@ node-sass@^4.11.0:
|
|
4830
5032
|
get-stdin "^4.0.1"
|
4831
5033
|
glob "^7.0.3"
|
4832
5034
|
in-publish "^2.0.0"
|
4833
|
-
lodash
|
4834
|
-
lodash.clonedeep "^4.3.2"
|
4835
|
-
lodash.mergewith "^4.6.0"
|
5035
|
+
lodash "^4.17.11"
|
4836
5036
|
meow "^3.7.0"
|
4837
5037
|
mkdirp "^0.5.1"
|
4838
|
-
nan "^2.
|
5038
|
+
nan "^2.13.2"
|
4839
5039
|
node-gyp "^3.8.0"
|
4840
5040
|
npmlog "^4.0.0"
|
4841
5041
|
request "^2.88.0"
|
@@ -4885,6 +5085,16 @@ normalize-range@^0.1.2:
|
|
4885
5085
|
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
|
4886
5086
|
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
|
4887
5087
|
|
5088
|
+
normalize-url@1.9.1:
|
5089
|
+
version "1.9.1"
|
5090
|
+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
|
5091
|
+
integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
|
5092
|
+
dependencies:
|
5093
|
+
object-assign "^4.0.1"
|
5094
|
+
prepend-http "^1.0.0"
|
5095
|
+
query-string "^4.1.0"
|
5096
|
+
sort-keys "^1.0.0"
|
5097
|
+
|
4888
5098
|
normalize-url@^3.0.0:
|
4889
5099
|
version "3.3.0"
|
4890
5100
|
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
|
@@ -4938,9 +5148,9 @@ number-is-nan@^1.0.0:
|
|
4938
5148
|
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
|
4939
5149
|
|
4940
5150
|
nwsapi@^2.0.7:
|
4941
|
-
version "2.1.
|
4942
|
-
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.
|
4943
|
-
integrity sha512-
|
5151
|
+
version "2.1.4"
|
5152
|
+
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f"
|
5153
|
+
integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==
|
4944
5154
|
|
4945
5155
|
oauth-sign@~0.9.0:
|
4946
5156
|
version "0.9.0"
|
@@ -4962,9 +5172,9 @@ object-copy@^0.1.0:
|
|
4962
5172
|
kind-of "^3.0.3"
|
4963
5173
|
|
4964
5174
|
object-keys@^1.0.11, object-keys@^1.0.12:
|
4965
|
-
version "1.1.
|
4966
|
-
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.
|
4967
|
-
integrity sha512-
|
5175
|
+
version "1.1.1"
|
5176
|
+
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
5177
|
+
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
4968
5178
|
|
4969
5179
|
object-visit@^1.0.0:
|
4970
5180
|
version "1.0.1"
|
@@ -5127,9 +5337,9 @@ p-finally@^1.0.0:
|
|
5127
5337
|
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
|
5128
5338
|
|
5129
5339
|
p-is-promise@^2.0.0:
|
5130
|
-
version "2.
|
5131
|
-
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.
|
5132
|
-
integrity sha512-
|
5340
|
+
version "2.1.0"
|
5341
|
+
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
|
5342
|
+
integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
|
5133
5343
|
|
5134
5344
|
p-limit@^1.1.0:
|
5135
5345
|
version "1.3.0"
|
@@ -5170,9 +5380,9 @@ p-try@^1.0.0:
|
|
5170
5380
|
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
|
5171
5381
|
|
5172
5382
|
p-try@^2.0.0:
|
5173
|
-
version "2.
|
5174
|
-
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.
|
5175
|
-
integrity sha512-
|
5383
|
+
version "2.2.0"
|
5384
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
5385
|
+
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
5176
5386
|
|
5177
5387
|
pako@~1.0.5:
|
5178
5388
|
version "1.0.10"
|
@@ -5189,9 +5399,9 @@ parallel-transform@^1.1.0:
|
|
5189
5399
|
readable-stream "^2.1.5"
|
5190
5400
|
|
5191
5401
|
parent-module@^1.0.0:
|
5192
|
-
version "1.0.
|
5193
|
-
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.
|
5194
|
-
integrity sha512-
|
5402
|
+
version "1.0.1"
|
5403
|
+
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
|
5404
|
+
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
|
5195
5405
|
dependencies:
|
5196
5406
|
callsites "^3.0.0"
|
5197
5407
|
|
@@ -5333,6 +5543,11 @@ pify@^3.0.0:
|
|
5333
5543
|
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
5334
5544
|
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
5335
5545
|
|
5546
|
+
pify@^4.0.1:
|
5547
|
+
version "4.0.1"
|
5548
|
+
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
|
5549
|
+
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
|
5550
|
+
|
5336
5551
|
pinkie-promise@^2.0.0:
|
5337
5552
|
version "2.0.1"
|
5338
5553
|
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
|
@@ -5345,7 +5560,7 @@ pinkie@^2.0.0:
|
|
5345
5560
|
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
5346
5561
|
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
|
5347
5562
|
|
5348
|
-
pirates@^4.0.
|
5563
|
+
pirates@^4.0.1:
|
5349
5564
|
version "4.0.1"
|
5350
5565
|
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
|
5351
5566
|
integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
|
@@ -5371,12 +5586,12 @@ pn@^1.1.0:
|
|
5371
5586
|
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
|
5372
5587
|
integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
|
5373
5588
|
|
5374
|
-
pnp-webpack-plugin@^1.3
|
5375
|
-
version "1.3
|
5376
|
-
resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.3.
|
5377
|
-
integrity sha512-
|
5589
|
+
pnp-webpack-plugin@^1.4.3:
|
5590
|
+
version "1.4.3"
|
5591
|
+
resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.4.3.tgz#0a100b63f4a1d09cee6ee55a87393b69f03ab5c7"
|
5592
|
+
integrity sha512-ExrNwuFH3DudHwWY2uRMqyiCOBEDdhQYHIAsqW/CM6hIZlSgXC/ma/p08FoNOUhVyh9hl1NGnMpR94T5i3SHaQ==
|
5378
5593
|
dependencies:
|
5379
|
-
ts-pnp "^1.
|
5594
|
+
ts-pnp "^1.1.2"
|
5380
5595
|
|
5381
5596
|
posix-character-classes@^0.1.0:
|
5382
5597
|
version "0.1.1"
|
@@ -5419,12 +5634,12 @@ postcss-color-gray@^5.0.0:
|
|
5419
5634
|
postcss-values-parser "^2.0.0"
|
5420
5635
|
|
5421
5636
|
postcss-color-hex-alpha@^5.0.2:
|
5422
|
-
version "5.0.
|
5423
|
-
resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.
|
5424
|
-
integrity sha512-
|
5637
|
+
version "5.0.3"
|
5638
|
+
resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388"
|
5639
|
+
integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
|
5425
5640
|
dependencies:
|
5426
|
-
postcss "^7.0.
|
5427
|
-
postcss-values-parser "^2.0.
|
5641
|
+
postcss "^7.0.14"
|
5642
|
+
postcss-values-parser "^2.0.1"
|
5428
5643
|
|
5429
5644
|
postcss-color-mod-function@^3.0.3:
|
5430
5645
|
version "3.0.3"
|
@@ -5463,19 +5678,19 @@ postcss-convert-values@^4.0.1:
|
|
5463
5678
|
postcss-value-parser "^3.0.0"
|
5464
5679
|
|
5465
5680
|
postcss-custom-media@^7.0.7:
|
5466
|
-
version "7.0.
|
5467
|
-
resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.
|
5468
|
-
integrity sha512-
|
5681
|
+
version "7.0.8"
|
5682
|
+
resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c"
|
5683
|
+
integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
|
5469
5684
|
dependencies:
|
5470
|
-
postcss "^7.0.
|
5685
|
+
postcss "^7.0.14"
|
5471
5686
|
|
5472
5687
|
postcss-custom-properties@^8.0.9:
|
5473
|
-
version "8.0.
|
5474
|
-
resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.
|
5475
|
-
integrity sha512
|
5688
|
+
version "8.0.10"
|
5689
|
+
resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.10.tgz#e8dc969e1e15c555f0b836b7f278ef47e3cdeaff"
|
5690
|
+
integrity sha512-GDL0dyd7++goDR4SSasYdRNNvp4Gqy1XMzcCnTijiph7VB27XXpJ8bW/AI0i2VSBZ55TpdGhMr37kMSpRfYD0Q==
|
5476
5691
|
dependencies:
|
5477
|
-
postcss "^7.0.
|
5478
|
-
postcss-values-parser "^2.0.
|
5692
|
+
postcss "^7.0.14"
|
5693
|
+
postcss-values-parser "^2.0.1"
|
5479
5694
|
|
5480
5695
|
postcss-custom-selectors@^5.1.2:
|
5481
5696
|
version "5.1.2"
|
@@ -5708,22 +5923,22 @@ postcss-modules-extract-imports@^2.0.0:
|
|
5708
5923
|
dependencies:
|
5709
5924
|
postcss "^7.0.5"
|
5710
5925
|
|
5711
|
-
postcss-modules-local-by-default@^2.0.
|
5712
|
-
version "2.0.
|
5713
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.
|
5714
|
-
integrity sha512-
|
5926
|
+
postcss-modules-local-by-default@^2.0.6:
|
5927
|
+
version "2.0.6"
|
5928
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63"
|
5929
|
+
integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA==
|
5715
5930
|
dependencies:
|
5716
|
-
css-selector-tokenizer "^0.7.0"
|
5717
5931
|
postcss "^7.0.6"
|
5932
|
+
postcss-selector-parser "^6.0.0"
|
5718
5933
|
postcss-value-parser "^3.3.1"
|
5719
5934
|
|
5720
|
-
postcss-modules-scope@^2.
|
5721
|
-
version "2.0
|
5722
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.0.
|
5723
|
-
integrity sha512-
|
5935
|
+
postcss-modules-scope@^2.1.0:
|
5936
|
+
version "2.1.0"
|
5937
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb"
|
5938
|
+
integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A==
|
5724
5939
|
dependencies:
|
5725
|
-
css-selector-tokenizer "^0.7.0"
|
5726
5940
|
postcss "^7.0.6"
|
5941
|
+
postcss-selector-parser "^6.0.0"
|
5727
5942
|
|
5728
5943
|
postcss-modules-values@^2.0.0:
|
5729
5944
|
version "2.0.0"
|
@@ -5971,6 +6186,15 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-sel
|
|
5971
6186
|
indexes-of "^1.0.1"
|
5972
6187
|
uniq "^1.0.1"
|
5973
6188
|
|
6189
|
+
postcss-selector-parser@^6.0.0:
|
6190
|
+
version "6.0.2"
|
6191
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
6192
|
+
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
6193
|
+
dependencies:
|
6194
|
+
cssesc "^3.0.0"
|
6195
|
+
indexes-of "^1.0.1"
|
6196
|
+
uniq "^1.0.1"
|
6197
|
+
|
5974
6198
|
postcss-svgo@^4.0.2:
|
5975
6199
|
version "4.0.2"
|
5976
6200
|
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
|
@@ -5995,7 +6219,7 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3, postcss-value-parser@^
|
|
5995
6219
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
|
5996
6220
|
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
|
5997
6221
|
|
5998
|
-
postcss-values-parser@^2.0.0:
|
6222
|
+
postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
|
5999
6223
|
version "2.0.1"
|
6000
6224
|
resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f"
|
6001
6225
|
integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
|
@@ -6005,9 +6229,9 @@ postcss-values-parser@^2.0.0:
|
|
6005
6229
|
uniq "^1.0.1"
|
6006
6230
|
|
6007
6231
|
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6:
|
6008
|
-
version "7.0.
|
6009
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
6010
|
-
integrity sha512-
|
6232
|
+
version "7.0.16"
|
6233
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.16.tgz#48f64f1b4b558cb8b52c88987724359acb010da2"
|
6234
|
+
integrity sha512-MOo8zNSlIqh22Uaa3drkdIAgUGEL+AD1ESiSdmElLUmE2uVDo1QloiT/IfW9qRw8Gw+Y/w69UVMGwbufMSftxA==
|
6011
6235
|
dependencies:
|
6012
6236
|
chalk "^2.4.2"
|
6013
6237
|
source-map "^0.6.1"
|
@@ -6018,13 +6242,20 @@ prelude-ls@~1.1.2:
|
|
6018
6242
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
6019
6243
|
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
|
6020
6244
|
|
6021
|
-
|
6022
|
-
version "
|
6023
|
-
resolved "https://registry.yarnpkg.com/
|
6024
|
-
integrity
|
6245
|
+
prepend-http@^1.0.0:
|
6246
|
+
version "1.0.4"
|
6247
|
+
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
|
6248
|
+
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
|
6249
|
+
|
6250
|
+
pretty-format@^24.8.0:
|
6251
|
+
version "24.8.0"
|
6252
|
+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2"
|
6253
|
+
integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==
|
6025
6254
|
dependencies:
|
6255
|
+
"@jest/types" "^24.8.0"
|
6026
6256
|
ansi-regex "^4.0.0"
|
6027
6257
|
ansi-styles "^3.2.0"
|
6258
|
+
react-is "^16.8.4"
|
6028
6259
|
|
6029
6260
|
private@^0.1.6:
|
6030
6261
|
version "0.1.8"
|
@@ -6052,14 +6283,14 @@ promise-inflight@^1.0.1:
|
|
6052
6283
|
integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
|
6053
6284
|
|
6054
6285
|
prompts@^2.0.1:
|
6055
|
-
version "2.0
|
6056
|
-
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.
|
6057
|
-
integrity sha512
|
6286
|
+
version "2.1.0"
|
6287
|
+
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db"
|
6288
|
+
integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==
|
6058
6289
|
dependencies:
|
6059
6290
|
kleur "^3.0.2"
|
6060
6291
|
sisteransi "^1.0.0"
|
6061
6292
|
|
6062
|
-
prop-types@^15.
|
6293
|
+
prop-types@^15.7.2:
|
6063
6294
|
version "15.7.2"
|
6064
6295
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
6065
6296
|
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
@@ -6079,9 +6310,9 @@ pseudomap@^1.0.2:
|
|
6079
6310
|
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
6080
6311
|
|
6081
6312
|
psl@^1.1.24, psl@^1.1.28:
|
6082
|
-
version "1.1.
|
6083
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.
|
6084
|
-
integrity sha512
|
6313
|
+
version "1.1.32"
|
6314
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.32.tgz#3f132717cf2f9c169724b2b6caf373cf694198db"
|
6315
|
+
integrity sha512-MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g==
|
6085
6316
|
|
6086
6317
|
public-encrypt@^4.0.0:
|
6087
6318
|
version "4.0.3"
|
@@ -6145,6 +6376,14 @@ qs@~6.5.2:
|
|
6145
6376
|
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
|
6146
6377
|
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
|
6147
6378
|
|
6379
|
+
query-string@^4.1.0:
|
6380
|
+
version "4.3.4"
|
6381
|
+
resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
|
6382
|
+
integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
|
6383
|
+
dependencies:
|
6384
|
+
object-assign "^4.1.0"
|
6385
|
+
strict-uri-encode "^1.0.0"
|
6386
|
+
|
6148
6387
|
querystring-es3@^0.2.0:
|
6149
6388
|
version "0.2.1"
|
6150
6389
|
resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
|
@@ -6180,10 +6419,10 @@ rc@^1.2.7:
|
|
6180
6419
|
minimist "^1.2.0"
|
6181
6420
|
strip-json-comments "~2.0.1"
|
6182
6421
|
|
6183
|
-
react-is@^16.8.1:
|
6184
|
-
version "16.8.
|
6185
|
-
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.
|
6186
|
-
integrity sha512-
|
6422
|
+
react-is@^16.8.1, react-is@^16.8.4:
|
6423
|
+
version "16.8.6"
|
6424
|
+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
|
6425
|
+
integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
|
6187
6426
|
|
6188
6427
|
read-cache@^1.0.0:
|
6189
6428
|
version "1.0.0"
|
@@ -6265,7 +6504,7 @@ readdirp@^2.2.1:
|
|
6265
6504
|
micromatch "^3.1.10"
|
6266
6505
|
readable-stream "^2.0.2"
|
6267
6506
|
|
6268
|
-
realpath-native@^1.
|
6507
|
+
realpath-native@^1.1.0:
|
6269
6508
|
version "1.1.0"
|
6270
6509
|
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
|
6271
6510
|
integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
|
@@ -6280,27 +6519,27 @@ redent@^1.0.0:
|
|
6280
6519
|
indent-string "^2.1.0"
|
6281
6520
|
strip-indent "^1.0.1"
|
6282
6521
|
|
6283
|
-
regenerate-unicode-properties@^
|
6284
|
-
version "
|
6285
|
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-
|
6286
|
-
integrity sha512-
|
6522
|
+
regenerate-unicode-properties@^8.0.2:
|
6523
|
+
version "8.1.0"
|
6524
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
|
6525
|
+
integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
|
6287
6526
|
dependencies:
|
6288
6527
|
regenerate "^1.4.0"
|
6289
6528
|
|
6290
|
-
regenerate@^1.
|
6529
|
+
regenerate@^1.4.0:
|
6291
6530
|
version "1.4.0"
|
6292
6531
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
6293
6532
|
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
|
6294
6533
|
|
6295
|
-
regenerator-runtime@^0.
|
6296
|
-
version "0.
|
6297
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.
|
6298
|
-
integrity sha512-
|
6534
|
+
regenerator-runtime@^0.13.2:
|
6535
|
+
version "0.13.2"
|
6536
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447"
|
6537
|
+
integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA==
|
6299
6538
|
|
6300
|
-
regenerator-transform@^0.
|
6301
|
-
version "0.
|
6302
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.
|
6303
|
-
integrity sha512-
|
6539
|
+
regenerator-transform@^0.14.0:
|
6540
|
+
version "0.14.0"
|
6541
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf"
|
6542
|
+
integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w==
|
6304
6543
|
dependencies:
|
6305
6544
|
private "^0.1.6"
|
6306
6545
|
|
@@ -6312,54 +6551,33 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
6312
6551
|
extend-shallow "^3.0.2"
|
6313
6552
|
safe-regex "^1.1.0"
|
6314
6553
|
|
6315
|
-
regexp-tree@^0.1.
|
6316
|
-
version "0.1.
|
6317
|
-
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.
|
6318
|
-
integrity sha512-
|
6554
|
+
regexp-tree@^0.1.6:
|
6555
|
+
version "0.1.10"
|
6556
|
+
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc"
|
6557
|
+
integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ==
|
6319
6558
|
|
6320
6559
|
regexpp@^2.0.1:
|
6321
6560
|
version "2.0.1"
|
6322
6561
|
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
|
6323
6562
|
integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
|
6324
6563
|
|
6325
|
-
regexpu-core@^
|
6326
|
-
version "
|
6327
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-
|
6328
|
-
integrity
|
6329
|
-
dependencies:
|
6330
|
-
regenerate "^1.2.1"
|
6331
|
-
regjsgen "^0.2.0"
|
6332
|
-
regjsparser "^0.1.4"
|
6333
|
-
|
6334
|
-
regexpu-core@^4.1.3, regexpu-core@^4.2.0:
|
6335
|
-
version "4.4.0"
|
6336
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32"
|
6337
|
-
integrity sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA==
|
6564
|
+
regexpu-core@^4.5.4:
|
6565
|
+
version "4.5.4"
|
6566
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
|
6567
|
+
integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==
|
6338
6568
|
dependencies:
|
6339
6569
|
regenerate "^1.4.0"
|
6340
|
-
regenerate-unicode-properties "^
|
6570
|
+
regenerate-unicode-properties "^8.0.2"
|
6341
6571
|
regjsgen "^0.5.0"
|
6342
6572
|
regjsparser "^0.6.0"
|
6343
6573
|
unicode-match-property-ecmascript "^1.0.4"
|
6344
|
-
unicode-match-property-value-ecmascript "^1.0
|
6345
|
-
|
6346
|
-
regjsgen@^0.2.0:
|
6347
|
-
version "0.2.0"
|
6348
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
|
6349
|
-
integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
|
6574
|
+
unicode-match-property-value-ecmascript "^1.1.0"
|
6350
6575
|
|
6351
6576
|
regjsgen@^0.5.0:
|
6352
6577
|
version "0.5.0"
|
6353
6578
|
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd"
|
6354
6579
|
integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==
|
6355
6580
|
|
6356
|
-
regjsparser@^0.1.4:
|
6357
|
-
version "0.1.5"
|
6358
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
|
6359
|
-
integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
|
6360
|
-
dependencies:
|
6361
|
-
jsesc "~0.5.0"
|
6362
|
-
|
6363
6581
|
regjsparser@^0.6.0:
|
6364
6582
|
version "0.6.0"
|
6365
6583
|
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"
|
@@ -6446,6 +6664,11 @@ require-main-filename@^1.0.1:
|
|
6446
6664
|
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
6447
6665
|
integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
|
6448
6666
|
|
6667
|
+
require-main-filename@^2.0.0:
|
6668
|
+
version "2.0.0"
|
6669
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
6670
|
+
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
6671
|
+
|
6449
6672
|
resolve-cwd@^2.0.0:
|
6450
6673
|
version "2.0.0"
|
6451
6674
|
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
|
@@ -6481,10 +6704,10 @@ resolve@1.1.7:
|
|
6481
6704
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
6482
6705
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
6483
6706
|
|
6484
|
-
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.
|
6485
|
-
version "1.
|
6486
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
6487
|
-
integrity sha512-
|
6707
|
+
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
|
6708
|
+
version "1.11.0"
|
6709
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232"
|
6710
|
+
integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw==
|
6488
6711
|
dependencies:
|
6489
6712
|
path-parse "^1.0.6"
|
6490
6713
|
|
@@ -6511,7 +6734,7 @@ rgba-regex@^1.0.0:
|
|
6511
6734
|
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
|
6512
6735
|
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
|
6513
6736
|
|
6514
|
-
rimraf@2, rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
|
6737
|
+
rimraf@2, rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3:
|
6515
6738
|
version "2.6.3"
|
6516
6739
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
|
6517
6740
|
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
|
@@ -6526,10 +6749,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
|
|
6526
6749
|
hash-base "^3.0.0"
|
6527
6750
|
inherits "^2.0.1"
|
6528
6751
|
|
6529
|
-
rsvp@^
|
6530
|
-
version "
|
6531
|
-
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-
|
6532
|
-
integrity sha512-
|
6752
|
+
rsvp@^4.8.4:
|
6753
|
+
version "4.8.4"
|
6754
|
+
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911"
|
6755
|
+
integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA==
|
6533
6756
|
|
6534
6757
|
run-async@^2.2.0:
|
6535
6758
|
version "2.3.0"
|
@@ -6546,9 +6769,9 @@ run-queue@^1.0.0, run-queue@^1.0.3:
|
|
6546
6769
|
aproba "^1.1.1"
|
6547
6770
|
|
6548
6771
|
rxjs@^6.4.0:
|
6549
|
-
version "6.
|
6550
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.
|
6551
|
-
integrity sha512-
|
6772
|
+
version "6.5.2"
|
6773
|
+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7"
|
6774
|
+
integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==
|
6552
6775
|
dependencies:
|
6553
6776
|
tslib "^1.9.0"
|
6554
6777
|
|
@@ -6569,22 +6792,20 @@ safe-regex@^1.1.0:
|
|
6569
6792
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
6570
6793
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
6571
6794
|
|
6572
|
-
sane@^
|
6573
|
-
version "
|
6574
|
-
resolved "https://registry.yarnpkg.com/sane/-/sane-
|
6575
|
-
integrity sha512-
|
6795
|
+
sane@^4.0.3:
|
6796
|
+
version "4.1.0"
|
6797
|
+
resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
|
6798
|
+
integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
|
6576
6799
|
dependencies:
|
6800
|
+
"@cnakazawa/watch" "^1.0.3"
|
6577
6801
|
anymatch "^2.0.0"
|
6578
|
-
capture-exit "^
|
6579
|
-
exec-sh "^0.2
|
6802
|
+
capture-exit "^2.0.0"
|
6803
|
+
exec-sh "^0.3.2"
|
6580
6804
|
execa "^1.0.0"
|
6581
6805
|
fb-watchman "^2.0.0"
|
6582
6806
|
micromatch "^3.1.4"
|
6583
6807
|
minimist "^1.1.1"
|
6584
6808
|
walker "~1.0.5"
|
6585
|
-
watch "~0.18.0"
|
6586
|
-
optionalDependencies:
|
6587
|
-
fsevents "^1.2.3"
|
6588
6809
|
|
6589
6810
|
sass-graph@^2.2.4:
|
6590
6811
|
version "2.2.4"
|
@@ -6630,20 +6851,25 @@ scss-tokenizer@^0.2.3:
|
|
6630
6851
|
js-base64 "^2.1.8"
|
6631
6852
|
source-map "^0.4.2"
|
6632
6853
|
|
6633
|
-
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1:
|
6634
|
-
version "5.
|
6635
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.
|
6636
|
-
integrity sha512-
|
6854
|
+
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
|
6855
|
+
version "5.7.0"
|
6856
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
|
6857
|
+
integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
|
6858
|
+
|
6859
|
+
semver@^6.0.0, semver@^6.1.0:
|
6860
|
+
version "6.1.0"
|
6861
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.0.tgz#e95dc415d45ecf03f2f9f83b264a6b11f49c0cca"
|
6862
|
+
integrity sha512-kCqEOOHoBcFs/2Ccuk4Xarm/KiWRSLEX9CAZF8xkJ6ZPlIoTZ8V5f7J16vYLJqDbR7KrxTJpR2lqjIEm2Qx9cQ==
|
6637
6863
|
|
6638
6864
|
semver@~5.3.0:
|
6639
6865
|
version "5.3.0"
|
6640
6866
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
6641
6867
|
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
6642
6868
|
|
6643
|
-
serialize-javascript@^1.4.0:
|
6644
|
-
version "1.
|
6645
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.
|
6646
|
-
integrity sha512-
|
6869
|
+
serialize-javascript@^1.4.0, serialize-javascript@^1.7.0:
|
6870
|
+
version "1.7.0"
|
6871
|
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
|
6872
|
+
integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
|
6647
6873
|
|
6648
6874
|
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
6649
6875
|
version "2.0.0"
|
@@ -6770,6 +6996,13 @@ snapdragon@^0.8.1:
|
|
6770
6996
|
source-map-resolve "^0.5.0"
|
6771
6997
|
use "^3.1.0"
|
6772
6998
|
|
6999
|
+
sort-keys@^1.0.0:
|
7000
|
+
version "1.1.2"
|
7001
|
+
resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
|
7002
|
+
integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
|
7003
|
+
dependencies:
|
7004
|
+
is-plain-obj "^1.0.0"
|
7005
|
+
|
6773
7006
|
source-list-map@^2.0.0:
|
6774
7007
|
version "2.0.1"
|
6775
7008
|
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
|
@@ -6786,10 +7019,10 @@ source-map-resolve@^0.5.0:
|
|
6786
7019
|
source-map-url "^0.4.0"
|
6787
7020
|
urix "^0.1.0"
|
6788
7021
|
|
6789
|
-
source-map-support@^0.5.6, source-map-support@~0.5.
|
6790
|
-
version "0.5.
|
6791
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
6792
|
-
integrity sha512-
|
7022
|
+
source-map-support@^0.5.6, source-map-support@~0.5.10:
|
7023
|
+
version "0.5.12"
|
7024
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599"
|
7025
|
+
integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==
|
6793
7026
|
dependencies:
|
6794
7027
|
buffer-from "^1.0.0"
|
6795
7028
|
source-map "^0.6.0"
|
@@ -6838,9 +7071,9 @@ spdx-expression-parse@^3.0.0:
|
|
6838
7071
|
spdx-license-ids "^3.0.0"
|
6839
7072
|
|
6840
7073
|
spdx-license-ids@^3.0.0:
|
6841
|
-
version "3.0.
|
6842
|
-
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.
|
6843
|
-
integrity sha512-
|
7074
|
+
version "3.0.4"
|
7075
|
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1"
|
7076
|
+
integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==
|
6844
7077
|
|
6845
7078
|
split-string@^3.0.1, split-string@^3.0.2:
|
6846
7079
|
version "3.1.0"
|
@@ -6938,6 +7171,11 @@ stream-shift@^1.0.0:
|
|
6938
7171
|
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
|
6939
7172
|
integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=
|
6940
7173
|
|
7174
|
+
strict-uri-encode@^1.0.0:
|
7175
|
+
version "1.1.0"
|
7176
|
+
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
|
7177
|
+
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
|
7178
|
+
|
6941
7179
|
string-length@^2.0.0:
|
6942
7180
|
version "2.0.0"
|
6943
7181
|
resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
|
@@ -6964,13 +7202,13 @@ string-width@^1.0.1, string-width@^1.0.2:
|
|
6964
7202
|
strip-ansi "^4.0.0"
|
6965
7203
|
|
6966
7204
|
string-width@^3.0.0:
|
6967
|
-
version "3.
|
6968
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.
|
6969
|
-
integrity sha512-
|
7205
|
+
version "3.1.0"
|
7206
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
7207
|
+
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
|
6970
7208
|
dependencies:
|
6971
7209
|
emoji-regex "^7.0.1"
|
6972
7210
|
is-fullwidth-code-point "^2.0.0"
|
6973
|
-
strip-ansi "^5.
|
7211
|
+
strip-ansi "^5.1.0"
|
6974
7212
|
|
6975
7213
|
string_decoder@^1.0.0:
|
6976
7214
|
version "1.2.0"
|
@@ -7000,12 +7238,12 @@ strip-ansi@^4.0.0:
|
|
7000
7238
|
dependencies:
|
7001
7239
|
ansi-regex "^3.0.0"
|
7002
7240
|
|
7003
|
-
strip-ansi@^5.0.0:
|
7004
|
-
version "5.
|
7005
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.
|
7006
|
-
integrity sha512-
|
7241
|
+
strip-ansi@^5.0.0, strip-ansi@^5.1.0:
|
7242
|
+
version "5.2.0"
|
7243
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
7244
|
+
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
7007
7245
|
dependencies:
|
7008
|
-
ansi-regex "^4.
|
7246
|
+
ansi-regex "^4.1.0"
|
7009
7247
|
|
7010
7248
|
strip-bom@^2.0.0:
|
7011
7249
|
version "2.0.0"
|
@@ -7065,7 +7303,7 @@ supports-color@^5.3.0, supports-color@^5.5.0:
|
|
7065
7303
|
dependencies:
|
7066
7304
|
has-flag "^3.0.0"
|
7067
7305
|
|
7068
|
-
supports-color@^6.
|
7306
|
+
supports-color@^6.1.0:
|
7069
7307
|
version "6.1.0"
|
7070
7308
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
|
7071
7309
|
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
|
@@ -7073,9 +7311,9 @@ supports-color@^6.0.0, supports-color@^6.1.0:
|
|
7073
7311
|
has-flag "^3.0.0"
|
7074
7312
|
|
7075
7313
|
svgo@^1.0.0:
|
7076
|
-
version "1.2.
|
7077
|
-
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.
|
7078
|
-
integrity sha512-
|
7314
|
+
version "1.2.2"
|
7315
|
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316"
|
7316
|
+
integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA==
|
7079
7317
|
dependencies:
|
7080
7318
|
chalk "^2.4.1"
|
7081
7319
|
coa "^2.0.2"
|
@@ -7084,7 +7322,7 @@ svgo@^1.0.0:
|
|
7084
7322
|
css-tree "1.0.0-alpha.28"
|
7085
7323
|
css-url-regex "^1.1.0"
|
7086
7324
|
csso "^3.5.1"
|
7087
|
-
js-yaml "^3.
|
7325
|
+
js-yaml "^3.13.1"
|
7088
7326
|
mkdirp "~0.5.1"
|
7089
7327
|
object.values "^1.1.0"
|
7090
7328
|
sax "~1.2.4"
|
@@ -7098,9 +7336,9 @@ symbol-tree@^3.2.2:
|
|
7098
7336
|
integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=
|
7099
7337
|
|
7100
7338
|
table@^5.2.3:
|
7101
|
-
version "5.
|
7102
|
-
resolved "https://registry.yarnpkg.com/table/-/table-5.
|
7103
|
-
integrity sha512-
|
7339
|
+
version "5.4.0"
|
7340
|
+
resolved "https://registry.yarnpkg.com/table/-/table-5.4.0.tgz#d772a3216e68829920a41a32c18eda286c95d780"
|
7341
|
+
integrity sha512-nHFDrxmbrkU7JAFKqKbDJXfzrX2UBsWmrieXFTGxiI5e4ncg3VqsZeI4EzNmX0ncp4XNGVeoxIWJXfCIXwrsvw==
|
7104
7342
|
dependencies:
|
7105
7343
|
ajv "^6.9.1"
|
7106
7344
|
lodash "^4.17.11"
|
@@ -7108,17 +7346,17 @@ table@^5.2.3:
|
|
7108
7346
|
string-width "^3.0.0"
|
7109
7347
|
|
7110
7348
|
tapable@^1.0.0, tapable@^1.1.0:
|
7111
|
-
version "1.1.
|
7112
|
-
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.
|
7113
|
-
integrity sha512-
|
7349
|
+
version "1.1.3"
|
7350
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
|
7351
|
+
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
|
7114
7352
|
|
7115
7353
|
tar@^2.0.0:
|
7116
|
-
version "2.2.
|
7117
|
-
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.
|
7118
|
-
integrity
|
7354
|
+
version "2.2.2"
|
7355
|
+
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40"
|
7356
|
+
integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==
|
7119
7357
|
dependencies:
|
7120
7358
|
block-stream "*"
|
7121
|
-
fstream "^1.0.
|
7359
|
+
fstream "^1.0.12"
|
7122
7360
|
inherits "2"
|
7123
7361
|
|
7124
7362
|
tar@^4:
|
@@ -7134,38 +7372,40 @@ tar@^4:
|
|
7134
7372
|
safe-buffer "^5.1.2"
|
7135
7373
|
yallist "^3.0.2"
|
7136
7374
|
|
7137
|
-
terser-webpack-plugin@^1.1.0, terser-webpack-plugin@^1.
|
7138
|
-
version "1.
|
7139
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.
|
7140
|
-
integrity sha512-
|
7375
|
+
terser-webpack-plugin@^1.1.0, terser-webpack-plugin@^1.3.0:
|
7376
|
+
version "1.3.0"
|
7377
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4"
|
7378
|
+
integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg==
|
7141
7379
|
dependencies:
|
7142
|
-
cacache "^11.
|
7380
|
+
cacache "^11.3.2"
|
7143
7381
|
find-cache-dir "^2.0.0"
|
7382
|
+
is-wsl "^1.1.0"
|
7383
|
+
loader-utils "^1.2.3"
|
7144
7384
|
schema-utils "^1.0.0"
|
7145
|
-
serialize-javascript "^1.
|
7385
|
+
serialize-javascript "^1.7.0"
|
7146
7386
|
source-map "^0.6.1"
|
7147
|
-
terser "^
|
7148
|
-
webpack-sources "^1.
|
7149
|
-
worker-farm "^1.
|
7387
|
+
terser "^4.0.0"
|
7388
|
+
webpack-sources "^1.3.0"
|
7389
|
+
worker-farm "^1.7.0"
|
7150
7390
|
|
7151
|
-
terser@^
|
7152
|
-
version "
|
7153
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-
|
7154
|
-
integrity sha512-
|
7391
|
+
terser@^4.0.0:
|
7392
|
+
version "4.0.0"
|
7393
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374"
|
7394
|
+
integrity sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA==
|
7155
7395
|
dependencies:
|
7156
|
-
commander "
|
7396
|
+
commander "^2.19.0"
|
7157
7397
|
source-map "~0.6.1"
|
7158
|
-
source-map-support "~0.5.
|
7398
|
+
source-map-support "~0.5.10"
|
7159
7399
|
|
7160
|
-
test-exclude@^5.
|
7161
|
-
version "5.
|
7162
|
-
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.
|
7163
|
-
integrity sha512-
|
7400
|
+
test-exclude@^5.2.3:
|
7401
|
+
version "5.2.3"
|
7402
|
+
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0"
|
7403
|
+
integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==
|
7164
7404
|
dependencies:
|
7165
|
-
|
7405
|
+
glob "^7.1.3"
|
7166
7406
|
minimatch "^3.0.4"
|
7167
7407
|
read-pkg-up "^4.0.0"
|
7168
|
-
require-main-filename "^
|
7408
|
+
require-main-filename "^2.0.0"
|
7169
7409
|
|
7170
7410
|
text-table@^0.2.0:
|
7171
7411
|
version "0.2.0"
|
@@ -7289,10 +7529,10 @@ trim-right@^1.0.1:
|
|
7289
7529
|
dependencies:
|
7290
7530
|
glob "^7.1.2"
|
7291
7531
|
|
7292
|
-
ts-pnp@^1.
|
7293
|
-
version "1.
|
7294
|
-
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.
|
7295
|
-
integrity sha512-
|
7532
|
+
ts-pnp@^1.1.2:
|
7533
|
+
version "1.1.2"
|
7534
|
+
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.2.tgz#be8e4bfce5d00f0f58e0666a82260c34a57af552"
|
7535
|
+
integrity sha512-f5Knjh7XCyRIzoC/z1Su1yLLRrPrFCgtUAh/9fCSP6NKbATwpOL1+idQVXQokK9GRFURn/jYPGPfegIctwunoA==
|
7296
7536
|
|
7297
7537
|
tslib@^1.9.0:
|
7298
7538
|
version "1.9.3"
|
@@ -7329,11 +7569,11 @@ typedarray@^0.0.6:
|
|
7329
7569
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
7330
7570
|
|
7331
7571
|
uglify-js@^3.1.4:
|
7332
|
-
version "3.
|
7333
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.
|
7334
|
-
integrity sha512-
|
7572
|
+
version "3.5.15"
|
7573
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.15.tgz#fe2b5378fd0b09e116864041437bff889105ce24"
|
7574
|
+
integrity sha512-fe7aYFotptIddkwcm6YuA0HmknBZ52ZzOsUxZEdhhkSsz7RfjHDX2QDxwKTiv4JQ5t5NhfmpgAK+J7LiDhKSqg==
|
7335
7575
|
dependencies:
|
7336
|
-
commander "~2.
|
7576
|
+
commander "~2.20.0"
|
7337
7577
|
source-map "~0.6.1"
|
7338
7578
|
|
7339
7579
|
unicode-canonical-property-names-ecmascript@^1.0.4:
|
@@ -7349,15 +7589,15 @@ unicode-match-property-ecmascript@^1.0.4:
|
|
7349
7589
|
unicode-canonical-property-names-ecmascript "^1.0.4"
|
7350
7590
|
unicode-property-aliases-ecmascript "^1.0.4"
|
7351
7591
|
|
7352
|
-
unicode-match-property-value-ecmascript@^1.0
|
7353
|
-
version "1.0
|
7354
|
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.
|
7355
|
-
integrity sha512-
|
7592
|
+
unicode-match-property-value-ecmascript@^1.1.0:
|
7593
|
+
version "1.1.0"
|
7594
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
|
7595
|
+
integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
|
7356
7596
|
|
7357
7597
|
unicode-property-aliases-ecmascript@^1.0.4:
|
7358
|
-
version "1.0.
|
7359
|
-
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.
|
7360
|
-
integrity sha512-
|
7598
|
+
version "1.0.5"
|
7599
|
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
|
7600
|
+
integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
|
7361
7601
|
|
7362
7602
|
union-value@^1.0.0:
|
7363
7603
|
version "1.0.0"
|
@@ -7406,10 +7646,10 @@ unset-value@^1.0.0:
|
|
7406
7646
|
has-value "^0.3.1"
|
7407
7647
|
isobject "^3.0.0"
|
7408
7648
|
|
7409
|
-
upath@^1.1.
|
7410
|
-
version "1.1.
|
7411
|
-
resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.
|
7412
|
-
integrity sha512-
|
7649
|
+
upath@^1.1.1:
|
7650
|
+
version "1.1.2"
|
7651
|
+
resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068"
|
7652
|
+
integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==
|
7413
7653
|
|
7414
7654
|
uri-js@^4.2.2:
|
7415
7655
|
version "4.2.2"
|
@@ -7469,9 +7709,9 @@ uuid@^3.3.2:
|
|
7469
7709
|
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
|
7470
7710
|
|
7471
7711
|
v8-compile-cache@^2.0.2:
|
7472
|
-
version "2.0.
|
7473
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.
|
7474
|
-
integrity sha512-
|
7712
|
+
version "2.0.3"
|
7713
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe"
|
7714
|
+
integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==
|
7475
7715
|
|
7476
7716
|
validate-npm-package-license@^3.0.1:
|
7477
7717
|
version "3.0.4"
|
@@ -7482,9 +7722,9 @@ validate-npm-package-license@^3.0.1:
|
|
7482
7722
|
spdx-expression-parse "^3.0.0"
|
7483
7723
|
|
7484
7724
|
vendors@^1.0.0:
|
7485
|
-
version "1.0.
|
7486
|
-
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.
|
7487
|
-
integrity sha512-
|
7725
|
+
version "1.0.3"
|
7726
|
+
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0"
|
7727
|
+
integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==
|
7488
7728
|
|
7489
7729
|
verror@1.10.0:
|
7490
7730
|
version "1.10.0"
|
@@ -7509,21 +7749,13 @@ w3c-hr-time@^1.0.1:
|
|
7509
7749
|
dependencies:
|
7510
7750
|
browser-process-hrtime "^0.1.2"
|
7511
7751
|
|
7512
|
-
walker@~1.0.5:
|
7752
|
+
walker@^1.0.7, walker@~1.0.5:
|
7513
7753
|
version "1.0.7"
|
7514
7754
|
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
|
7515
7755
|
integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
|
7516
7756
|
dependencies:
|
7517
7757
|
makeerror "1.0.x"
|
7518
7758
|
|
7519
|
-
watch@~0.18.0:
|
7520
|
-
version "0.18.0"
|
7521
|
-
resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
|
7522
|
-
integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY=
|
7523
|
-
dependencies:
|
7524
|
-
exec-sh "^0.2.0"
|
7525
|
-
minimist "^1.2.0"
|
7526
|
-
|
7527
7759
|
watchpack@^1.5.0:
|
7528
7760
|
version "1.6.0"
|
7529
7761
|
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
|
@@ -7551,10 +7783,10 @@ webpack-assets-manifest@^3.1.1:
|
|
7551
7783
|
tapable "^1.0.0"
|
7552
7784
|
webpack-sources "^1.0.0"
|
7553
7785
|
|
7554
|
-
webpack-cli@^3.2
|
7555
|
-
version "3.2
|
7556
|
-
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.2.
|
7557
|
-
integrity sha512-
|
7786
|
+
webpack-cli@^3.3.2:
|
7787
|
+
version "3.3.2"
|
7788
|
+
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.2.tgz#aed2437b0db0a7faa2ad28484e166a5360014a91"
|
7789
|
+
integrity sha512-FLkobnaJJ+03j5eplxlI0TUxhGCOdfewspIGuvDVtpOlrAuKMFC57K42Ukxqs1tn8947/PM6tP95gQc0DCzRYA==
|
7558
7790
|
dependencies:
|
7559
7791
|
chalk "^2.4.1"
|
7560
7792
|
cross-spawn "^6.0.5"
|
@@ -7566,7 +7798,7 @@ webpack-cli@^3.2.3:
|
|
7566
7798
|
loader-utils "^1.1.0"
|
7567
7799
|
supports-color "^5.5.0"
|
7568
7800
|
v8-compile-cache "^2.0.2"
|
7569
|
-
yargs "^12.0.
|
7801
|
+
yargs "^12.0.5"
|
7570
7802
|
|
7571
7803
|
webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.3.0:
|
7572
7804
|
version "1.3.0"
|
@@ -7576,10 +7808,10 @@ webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-
|
|
7576
7808
|
source-list-map "^2.0.0"
|
7577
7809
|
source-map "~0.6.1"
|
7578
7810
|
|
7579
|
-
webpack@^4.
|
7580
|
-
version "4.
|
7581
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.
|
7582
|
-
integrity sha512-
|
7811
|
+
webpack@^4.32.2:
|
7812
|
+
version "4.32.2"
|
7813
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.32.2.tgz#3639375364a617e84b914ddb2c770aed511e5bc8"
|
7814
|
+
integrity sha512-F+H2Aa1TprTQrpodRAWUMJn7A8MgDx82yQiNvYMaj3d1nv3HetKU0oqEulL9huj8enirKi8KvEXQ3QtuHF89Zg==
|
7583
7815
|
dependencies:
|
7584
7816
|
"@webassemblyjs/ast" "1.8.5"
|
7585
7817
|
"@webassemblyjs/helper-module-context" "1.8.5"
|
@@ -7646,7 +7878,7 @@ which-module@^2.0.0:
|
|
7646
7878
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
7647
7879
|
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
7648
7880
|
|
7649
|
-
which@1, which@^1.2.
|
7881
|
+
which@1, which@^1.2.14, which@^1.2.9, which@^1.3.0:
|
7650
7882
|
version "1.3.1"
|
7651
7883
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
7652
7884
|
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
@@ -7670,10 +7902,10 @@ wordwrap@~1.0.0:
|
|
7670
7902
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
7671
7903
|
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
|
7672
7904
|
|
7673
|
-
worker-farm@^1.
|
7674
|
-
version "1.
|
7675
|
-
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.
|
7676
|
-
integrity sha512-
|
7905
|
+
worker-farm@^1.7.0:
|
7906
|
+
version "1.7.0"
|
7907
|
+
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
|
7908
|
+
integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
|
7677
7909
|
dependencies:
|
7678
7910
|
errno "~0.1.7"
|
7679
7911
|
|
@@ -7758,7 +7990,7 @@ yargs-parser@^5.0.0:
|
|
7758
7990
|
dependencies:
|
7759
7991
|
camelcase "^3.0.0"
|
7760
7992
|
|
7761
|
-
yargs@^12.0.2, yargs@^12.0.
|
7993
|
+
yargs@^12.0.2, yargs@^12.0.5:
|
7762
7994
|
version "12.0.5"
|
7763
7995
|
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
|
7764
7996
|
integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
|