simplecov-material 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/builds.yml +2 -2
- data/.github/workflows/tests.yml +1 -1
- data/.rubocop.yml +9 -9
- data/CHANGELOG.md +9 -2
- data/bin/setup +1 -0
- data/dist/scripts/table.js +3 -1
- data/dist/scripts/topbar.js +15 -0
- data/dist/styles/table.scss +22 -14
- data/lib/simplecov-material/version.rb +1 -1
- data/package.json +1 -1
- data/public/application.css +40 -35
- data/public/application.js +74 -2
- data/simplecov-material.gemspec +2 -2
- data/views/group_page.erb +20 -20
- data/views/main.erb +2 -1
- data/yarn.lock +517 -510
- metadata +5 -6
data/simplecov-material.gemspec
CHANGED
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Christopher Pezza"]
|
11
11
|
spec.email = ["chiefpansancolt@gmail.com"]
|
12
12
|
spec.summary = "HTML Material Design View for Simplecov formatter"
|
13
|
-
spec.description =
|
14
|
-
|
13
|
+
spec.description = "HTML Material Design View of Simplecov as a formatter"\
|
14
|
+
"that is clean, easy to read."
|
15
15
|
spec.homepage = "https://github.com/chiefpansancolt/simplecov-material"
|
16
16
|
spec.license = "MIT"
|
17
17
|
|
data/views/group_page.erb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="tab-groups" name="<%= title_id %>" style="<%= hide_show(title_id) %>">
|
2
2
|
<div class="mdc-layout-grid">
|
3
3
|
<div class="mdc-layout-grid__inner">
|
4
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
4
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
5
5
|
<div class="mdc-card card-tile">
|
6
6
|
<p class="card-title">Covered</p>
|
7
7
|
<h4 class="card-data mdc-typography--headline4 <%= coverage_class(files.covered_percent) %>">
|
@@ -9,7 +9,7 @@
|
|
9
9
|
</h4>
|
10
10
|
</div>
|
11
11
|
</div>
|
12
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
12
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
13
13
|
<div class="mdc-card card-tile">
|
14
14
|
<p class="card-title">Hits/Line</p>
|
15
15
|
<h4 class="card-data mdc-typography--headline4 <%= strength_class(files.covered_strength) %>">
|
@@ -17,7 +17,7 @@
|
|
17
17
|
</h4>
|
18
18
|
</div>
|
19
19
|
</div>
|
20
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
20
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
21
21
|
<div class="mdc-card card-tile">
|
22
22
|
<p class="card-title"># of Files</p>
|
23
23
|
<h4 class="card-data mdc-typography--headline4">
|
@@ -25,7 +25,7 @@
|
|
25
25
|
</h4>
|
26
26
|
</div>
|
27
27
|
</div>
|
28
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
28
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
29
29
|
<div class="mdc-card card-tile">
|
30
30
|
<p class="card-title">Relevent Lines</p>
|
31
31
|
<h4 class="card-data mdc-typography--headline4">
|
@@ -33,7 +33,7 @@
|
|
33
33
|
</h4>
|
34
34
|
</div>
|
35
35
|
</div>
|
36
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
36
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
37
37
|
<div class="mdc-card card-tile">
|
38
38
|
<p class="card-title">Lines Covered</p>
|
39
39
|
<h4 class="card-data mdc-typography--headline4 green">
|
@@ -41,7 +41,7 @@
|
|
41
41
|
</h4>
|
42
42
|
</div>
|
43
43
|
</div>
|
44
|
-
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2">
|
44
|
+
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2-desktop mdc-layout-grid__cell--span-4-tablet">
|
45
45
|
<div class="mdc-card card-tile">
|
46
46
|
<p class="card-title">Lines Missed</p>
|
47
47
|
<h4 class="card-data mdc-typography--headline4 red">
|
@@ -75,37 +75,37 @@
|
|
75
75
|
<table class="mdc-data-table__table" id="<%= title_id %>-table">
|
76
76
|
<thead>
|
77
77
|
<tr class="mdc-data-table__header-row">
|
78
|
-
<th class="mdc-data-table__header-cell width-
|
78
|
+
<th class="mdc-data-table__header-cell width-32" role="columnheader" scope="col">
|
79
79
|
<i class="material-icons hide">arrow_upward</i>
|
80
80
|
<i class="material-icons hide">arrow_downward</i>
|
81
81
|
File
|
82
82
|
</th>
|
83
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
83
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-12" role="columnheader" scope="col">
|
84
84
|
<i class="material-icons hide">arrow_upward</i>
|
85
85
|
<i class="material-icons hide">arrow_downward</i>
|
86
86
|
% Covered
|
87
87
|
</th>
|
88
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
88
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-8" role="columnheader" scope="col">
|
89
89
|
<i class="material-icons hide">arrow_upward</i>
|
90
90
|
<i class="material-icons hide">arrow_downward</i>
|
91
91
|
Lines
|
92
92
|
</th>
|
93
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
93
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-12" role="columnheader" scope="col">
|
94
94
|
<i class="material-icons hide">arrow_upward</i>
|
95
95
|
<i class="material-icons hide">arrow_downward</i>
|
96
96
|
Relevant Lines
|
97
97
|
</th>
|
98
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
98
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-12" role="columnheader" scope="col">
|
99
99
|
<i class="material-icons hide">arrow_upward</i>
|
100
100
|
<i class="material-icons hide">arrow_downward</i>
|
101
101
|
Lines Covered
|
102
102
|
</th>
|
103
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
103
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-12" role="columnheader" scope="col">
|
104
104
|
<i class="material-icons hide">arrow_upward</i>
|
105
105
|
<i class="material-icons hide">arrow_downward</i>
|
106
106
|
Lines Missed
|
107
107
|
</th>
|
108
|
-
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-
|
108
|
+
<th class="mdc-data-table__header-cell mdc-data-table__header-cell--numeric width-12" role="columnheader" scope="col">
|
109
109
|
<i class="material-icons hide">arrow_upward</i>
|
110
110
|
<i class="material-icons hide">arrow_downward</i>
|
111
111
|
Avg Hits/Line
|
@@ -116,27 +116,27 @@
|
|
116
116
|
<% files.each do |source_file| %>
|
117
117
|
<tr class="mdc-data-table__row clickable" name="<%= shortened_filename(source_file) %>"
|
118
118
|
onclick="openModal(this.attributes.name.value)">
|
119
|
-
<td class="width-
|
119
|
+
<td class="width-32" title="<%= shortened_filename(source_file) %>" data-sort-val="<%= shortened_filename(source_file) %>">
|
120
120
|
<div class="overflow">
|
121
121
|
<%= shortened_filename(source_file) %>
|
122
122
|
</div>
|
123
123
|
</td>
|
124
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
124
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-12 <%= coverage_class(source_file.covered_percent) %>" data-sort-val="<%= source_file.covered_percent.round(2).to_s %>">
|
125
125
|
<%= source_file.covered_percent.round(2).to_s %>%
|
126
126
|
</td>
|
127
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
127
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-8" data-sort-val="<%= source_file.lines.count %>">
|
128
128
|
<%= format_number(source_file.lines.count) %>
|
129
129
|
</td>
|
130
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
130
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-12" data-sort-val="<%= source_file.covered_lines.count + source_file.missed_lines.count %>">
|
131
131
|
<%= format_number(source_file.covered_lines.count + source_file.missed_lines.count) %>
|
132
132
|
</td>
|
133
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
133
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-12" data-sort-val="<%= source_file.covered_lines.count %>">
|
134
134
|
<%= format_number(source_file.covered_lines.count) %>
|
135
135
|
</td>
|
136
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
136
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-12" data-sort-val="<%= source_file.missed_lines.count %>">
|
137
137
|
<%= format_number(source_file.missed_lines.count) %>
|
138
138
|
</td>
|
139
|
-
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-
|
139
|
+
<td class="mdc-data-table__cell mdc-data-table__cell--numeric width-12" data-sort-val="<%= source_file.covered_strength %>">
|
140
140
|
<%= format_number(source_file.covered_strength) %>
|
141
141
|
</td>
|
142
142
|
</tr>
|
data/views/main.erb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
</head>
|
9
9
|
|
10
10
|
<body class="mdc-typography">
|
11
|
-
<aside class="mdc-drawer">
|
11
|
+
<aside class="mdc-drawer mdc-drawer--dismissible mdc-drawer--open">
|
12
12
|
<div class="mdc-drawer__header">
|
13
13
|
<h3 class="mdc-drawer__title">Code Coverage</h3>
|
14
14
|
<h6 class="mdc-drawer__subtitle">
|
@@ -48,6 +48,7 @@
|
|
48
48
|
<header class="mdc-top-app-bar mdc-top-app-bar--fixed app-bar" id="app-bar">
|
49
49
|
<div class="mdc-top-app-bar__row">
|
50
50
|
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
|
51
|
+
<a href="#" class="demo-menu material-icons mdc-top-app-bar__navigation-icon">menu</a>
|
51
52
|
<span class="mdc-top-app-bar__title">
|
52
53
|
<%= SimpleCov.project_name.split('-').map(&:capitalize).join(' ') %>
|
53
54
|
</span>
|
data/yarn.lock
CHANGED
@@ -10,17 +10,17 @@
|
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
12
|
"@babel/core@>=7.2.2", "@babel/core@^7.4.5":
|
13
|
-
version "7.7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.
|
15
|
-
integrity sha512-
|
13
|
+
version "7.7.5"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.5.tgz#ae1323cd035b5160293307f50647e83f8ba62f7e"
|
15
|
+
integrity sha512-M42+ScN4+1S9iB6f+TL7QBpoQETxbclx+KNoKJABghnKYE+fMzSGqst0BZJc8CpI625bwPwYgUyRvxZ+0mZzpw==
|
16
16
|
dependencies:
|
17
17
|
"@babel/code-frame" "^7.5.5"
|
18
|
-
"@babel/generator" "^7.7.
|
19
|
-
"@babel/helpers" "^7.7.
|
20
|
-
"@babel/parser" "^7.7.
|
21
|
-
"@babel/template" "^7.7.
|
22
|
-
"@babel/traverse" "^7.7.
|
23
|
-
"@babel/types" "^7.7.
|
18
|
+
"@babel/generator" "^7.7.4"
|
19
|
+
"@babel/helpers" "^7.7.4"
|
20
|
+
"@babel/parser" "^7.7.5"
|
21
|
+
"@babel/template" "^7.7.4"
|
22
|
+
"@babel/traverse" "^7.7.4"
|
23
|
+
"@babel/types" "^7.7.4"
|
24
24
|
convert-source-map "^1.7.0"
|
25
25
|
debug "^4.1.0"
|
26
26
|
json5 "^2.1.0"
|
@@ -29,120 +29,120 @@
|
|
29
29
|
semver "^5.4.1"
|
30
30
|
source-map "^0.5.0"
|
31
31
|
|
32
|
-
"@babel/generator@^7.7.
|
33
|
-
version "7.7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.
|
35
|
-
integrity sha512-
|
32
|
+
"@babel/generator@^7.7.4":
|
33
|
+
version "7.7.4"
|
34
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.4.tgz#db651e2840ca9aa66f327dcec1dc5f5fa9611369"
|
35
|
+
integrity sha512-m5qo2WgdOJeyYngKImbkyQrnUN1mPceaG5BV+G0E3gWsa4l/jCSryWJdM2x8OuGAOyh+3d5pVYfZWCiNFtynxg==
|
36
36
|
dependencies:
|
37
|
-
"@babel/types" "^7.7.
|
37
|
+
"@babel/types" "^7.7.4"
|
38
38
|
jsesc "^2.5.1"
|
39
39
|
lodash "^4.17.13"
|
40
40
|
source-map "^0.5.0"
|
41
41
|
|
42
|
-
"@babel/helper-annotate-as-pure@^7.
|
43
|
-
version "7.7.
|
44
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.
|
45
|
-
integrity sha512-
|
42
|
+
"@babel/helper-annotate-as-pure@^7.7.4":
|
43
|
+
version "7.7.4"
|
44
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz#bb3faf1e74b74bd547e867e48f551fa6b098b6ce"
|
45
|
+
integrity sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==
|
46
46
|
dependencies:
|
47
|
-
"@babel/types" "^7.7.
|
47
|
+
"@babel/types" "^7.7.4"
|
48
48
|
|
49
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
50
|
-
version "7.7.
|
51
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.
|
52
|
-
integrity sha512-
|
49
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.7.4":
|
50
|
+
version "7.7.4"
|
51
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz#5f73f2b28580e224b5b9bd03146a4015d6217f5f"
|
52
|
+
integrity sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==
|
53
53
|
dependencies:
|
54
|
-
"@babel/helper-explode-assignable-expression" "^7.7.
|
55
|
-
"@babel/types" "^7.7.
|
54
|
+
"@babel/helper-explode-assignable-expression" "^7.7.4"
|
55
|
+
"@babel/types" "^7.7.4"
|
56
56
|
|
57
|
-
"@babel/helper-call-delegate@^7.
|
58
|
-
version "7.7.
|
59
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.
|
60
|
-
integrity sha512-
|
57
|
+
"@babel/helper-call-delegate@^7.7.4":
|
58
|
+
version "7.7.4"
|
59
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz#621b83e596722b50c0066f9dc37d3232e461b801"
|
60
|
+
integrity sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==
|
61
61
|
dependencies:
|
62
|
-
"@babel/helper-hoist-variables" "^7.7.
|
63
|
-
"@babel/traverse" "^7.7.
|
64
|
-
"@babel/types" "^7.7.
|
62
|
+
"@babel/helper-hoist-variables" "^7.7.4"
|
63
|
+
"@babel/traverse" "^7.7.4"
|
64
|
+
"@babel/types" "^7.7.4"
|
65
65
|
|
66
|
-
"@babel/helper-create-regexp-features-plugin@^7.7.
|
67
|
-
version "7.7.
|
68
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.
|
69
|
-
integrity sha512-
|
66
|
+
"@babel/helper-create-regexp-features-plugin@^7.7.4":
|
67
|
+
version "7.7.4"
|
68
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz#6d5762359fd34f4da1500e4cff9955b5299aaf59"
|
69
|
+
integrity sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
|
70
70
|
dependencies:
|
71
71
|
"@babel/helper-regex" "^7.4.4"
|
72
72
|
regexpu-core "^4.6.0"
|
73
73
|
|
74
|
-
"@babel/helper-define-map@^7.7.
|
75
|
-
version "7.7.
|
76
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.
|
77
|
-
integrity sha512-
|
74
|
+
"@babel/helper-define-map@^7.7.4":
|
75
|
+
version "7.7.4"
|
76
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz#2841bf92eb8bd9c906851546fe6b9d45e162f176"
|
77
|
+
integrity sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==
|
78
78
|
dependencies:
|
79
|
-
"@babel/helper-function-name" "^7.7.
|
80
|
-
"@babel/types" "^7.7.
|
79
|
+
"@babel/helper-function-name" "^7.7.4"
|
80
|
+
"@babel/types" "^7.7.4"
|
81
81
|
lodash "^4.17.13"
|
82
82
|
|
83
|
-
"@babel/helper-explode-assignable-expression@^7.7.
|
84
|
-
version "7.7.
|
85
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.
|
86
|
-
integrity sha512-
|
83
|
+
"@babel/helper-explode-assignable-expression@^7.7.4":
|
84
|
+
version "7.7.4"
|
85
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz#fa700878e008d85dc51ba43e9fb835cddfe05c84"
|
86
|
+
integrity sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==
|
87
87
|
dependencies:
|
88
|
-
"@babel/traverse" "^7.7.
|
89
|
-
"@babel/types" "^7.7.
|
88
|
+
"@babel/traverse" "^7.7.4"
|
89
|
+
"@babel/types" "^7.7.4"
|
90
90
|
|
91
|
-
"@babel/helper-function-name@^7.7.
|
92
|
-
version "7.7.
|
93
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.
|
94
|
-
integrity sha512-
|
91
|
+
"@babel/helper-function-name@^7.7.4":
|
92
|
+
version "7.7.4"
|
93
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz#ab6e041e7135d436d8f0a3eca15de5b67a341a2e"
|
94
|
+
integrity sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==
|
95
95
|
dependencies:
|
96
|
-
"@babel/helper-get-function-arity" "^7.7.
|
97
|
-
"@babel/template" "^7.7.
|
98
|
-
"@babel/types" "^7.7.
|
96
|
+
"@babel/helper-get-function-arity" "^7.7.4"
|
97
|
+
"@babel/template" "^7.7.4"
|
98
|
+
"@babel/types" "^7.7.4"
|
99
99
|
|
100
|
-
"@babel/helper-get-function-arity@^7.
|
101
|
-
version "7.7.
|
102
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.
|
103
|
-
integrity sha512-
|
100
|
+
"@babel/helper-get-function-arity@^7.7.4":
|
101
|
+
version "7.7.4"
|
102
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz#cb46348d2f8808e632f0ab048172130e636005f0"
|
103
|
+
integrity sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==
|
104
104
|
dependencies:
|
105
|
-
"@babel/types" "^7.7.
|
105
|
+
"@babel/types" "^7.7.4"
|
106
106
|
|
107
|
-
"@babel/helper-hoist-variables@^7.7.
|
108
|
-
version "7.7.
|
109
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.
|
110
|
-
integrity sha512-
|
107
|
+
"@babel/helper-hoist-variables@^7.7.4":
|
108
|
+
version "7.7.4"
|
109
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz#612384e3d823fdfaaf9fce31550fe5d4db0f3d12"
|
110
|
+
integrity sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==
|
111
111
|
dependencies:
|
112
|
-
"@babel/types" "^7.7.
|
112
|
+
"@babel/types" "^7.7.4"
|
113
113
|
|
114
|
-
"@babel/helper-member-expression-to-functions@^7.7.
|
115
|
-
version "7.7.
|
116
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.
|
117
|
-
integrity sha512-
|
114
|
+
"@babel/helper-member-expression-to-functions@^7.7.4":
|
115
|
+
version "7.7.4"
|
116
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz#356438e2569df7321a8326644d4b790d2122cb74"
|
117
|
+
integrity sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==
|
118
118
|
dependencies:
|
119
|
-
"@babel/types" "^7.7.
|
119
|
+
"@babel/types" "^7.7.4"
|
120
120
|
|
121
|
-
"@babel/helper-module-imports@^7.7.
|
122
|
-
version "7.7.
|
123
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.
|
124
|
-
integrity sha512-
|
121
|
+
"@babel/helper-module-imports@^7.7.4":
|
122
|
+
version "7.7.4"
|
123
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91"
|
124
|
+
integrity sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==
|
125
125
|
dependencies:
|
126
|
-
"@babel/types" "^7.7.
|
126
|
+
"@babel/types" "^7.7.4"
|
127
127
|
|
128
|
-
"@babel/helper-module-transforms@^7.
|
129
|
-
version "7.7.
|
130
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.
|
131
|
-
integrity sha512-
|
128
|
+
"@babel/helper-module-transforms@^7.7.4", "@babel/helper-module-transforms@^7.7.5":
|
129
|
+
version "7.7.5"
|
130
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.5.tgz#d044da7ffd91ec967db25cd6748f704b6b244835"
|
131
|
+
integrity sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==
|
132
132
|
dependencies:
|
133
|
-
"@babel/helper-module-imports" "^7.7.
|
134
|
-
"@babel/helper-simple-access" "^7.7.
|
135
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
136
|
-
"@babel/template" "^7.7.
|
137
|
-
"@babel/types" "^7.7.
|
133
|
+
"@babel/helper-module-imports" "^7.7.4"
|
134
|
+
"@babel/helper-simple-access" "^7.7.4"
|
135
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
136
|
+
"@babel/template" "^7.7.4"
|
137
|
+
"@babel/types" "^7.7.4"
|
138
138
|
lodash "^4.17.13"
|
139
139
|
|
140
|
-
"@babel/helper-optimise-call-expression@^7.7.
|
141
|
-
version "7.7.
|
142
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.
|
143
|
-
integrity sha512-
|
140
|
+
"@babel/helper-optimise-call-expression@^7.7.4":
|
141
|
+
version "7.7.4"
|
142
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz#034af31370d2995242aa4df402c3b7794b2dcdf2"
|
143
|
+
integrity sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==
|
144
144
|
dependencies:
|
145
|
-
"@babel/types" "^7.7.
|
145
|
+
"@babel/types" "^7.7.4"
|
146
146
|
|
147
147
|
"@babel/helper-plugin-utils@^7.0.0":
|
148
148
|
version "7.0.0"
|
@@ -156,60 +156,60 @@
|
|
156
156
|
dependencies:
|
157
157
|
lodash "^4.17.13"
|
158
158
|
|
159
|
-
"@babel/helper-remap-async-to-generator@^7.7.
|
160
|
-
version "7.7.
|
161
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.
|
162
|
-
integrity sha512-
|
163
|
-
dependencies:
|
164
|
-
"@babel/helper-annotate-as-pure" "^7.7.
|
165
|
-
"@babel/helper-wrap-function" "^7.7.
|
166
|
-
"@babel/template" "^7.7.
|
167
|
-
"@babel/traverse" "^7.7.
|
168
|
-
"@babel/types" "^7.7.
|
169
|
-
|
170
|
-
"@babel/helper-replace-supers@^7.
|
171
|
-
version "7.7.
|
172
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.
|
173
|
-
integrity sha512-
|
174
|
-
dependencies:
|
175
|
-
"@babel/helper-member-expression-to-functions" "^7.7.
|
176
|
-
"@babel/helper-optimise-call-expression" "^7.7.
|
177
|
-
"@babel/traverse" "^7.7.
|
178
|
-
"@babel/types" "^7.7.
|
179
|
-
|
180
|
-
"@babel/helper-simple-access@^7.7.
|
181
|
-
version "7.7.
|
182
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.
|
183
|
-
integrity sha512-
|
184
|
-
dependencies:
|
185
|
-
"@babel/template" "^7.7.
|
186
|
-
"@babel/types" "^7.7.
|
187
|
-
|
188
|
-
"@babel/helper-split-export-declaration@^7.7.
|
189
|
-
version "7.7.
|
190
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.
|
191
|
-
integrity sha512-
|
192
|
-
dependencies:
|
193
|
-
"@babel/types" "^7.7.
|
194
|
-
|
195
|
-
"@babel/helper-wrap-function@^7.7.
|
196
|
-
version "7.7.
|
197
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.
|
198
|
-
integrity sha512-
|
199
|
-
dependencies:
|
200
|
-
"@babel/helper-function-name" "^7.7.
|
201
|
-
"@babel/template" "^7.7.
|
202
|
-
"@babel/traverse" "^7.7.
|
203
|
-
"@babel/types" "^7.7.
|
204
|
-
|
205
|
-
"@babel/helpers@^7.7.
|
206
|
-
version "7.7.
|
207
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.
|
208
|
-
integrity sha512-
|
209
|
-
dependencies:
|
210
|
-
"@babel/template" "^7.7.
|
211
|
-
"@babel/traverse" "^7.7.
|
212
|
-
"@babel/types" "^7.7.
|
159
|
+
"@babel/helper-remap-async-to-generator@^7.7.4":
|
160
|
+
version "7.7.4"
|
161
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz#c68c2407350d9af0e061ed6726afb4fff16d0234"
|
162
|
+
integrity sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==
|
163
|
+
dependencies:
|
164
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
165
|
+
"@babel/helper-wrap-function" "^7.7.4"
|
166
|
+
"@babel/template" "^7.7.4"
|
167
|
+
"@babel/traverse" "^7.7.4"
|
168
|
+
"@babel/types" "^7.7.4"
|
169
|
+
|
170
|
+
"@babel/helper-replace-supers@^7.7.4":
|
171
|
+
version "7.7.4"
|
172
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz#3c881a6a6a7571275a72d82e6107126ec9e2cdd2"
|
173
|
+
integrity sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==
|
174
|
+
dependencies:
|
175
|
+
"@babel/helper-member-expression-to-functions" "^7.7.4"
|
176
|
+
"@babel/helper-optimise-call-expression" "^7.7.4"
|
177
|
+
"@babel/traverse" "^7.7.4"
|
178
|
+
"@babel/types" "^7.7.4"
|
179
|
+
|
180
|
+
"@babel/helper-simple-access@^7.7.4":
|
181
|
+
version "7.7.4"
|
182
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz#a169a0adb1b5f418cfc19f22586b2ebf58a9a294"
|
183
|
+
integrity sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==
|
184
|
+
dependencies:
|
185
|
+
"@babel/template" "^7.7.4"
|
186
|
+
"@babel/types" "^7.7.4"
|
187
|
+
|
188
|
+
"@babel/helper-split-export-declaration@^7.7.4":
|
189
|
+
version "7.7.4"
|
190
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz#57292af60443c4a3622cf74040ddc28e68336fd8"
|
191
|
+
integrity sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==
|
192
|
+
dependencies:
|
193
|
+
"@babel/types" "^7.7.4"
|
194
|
+
|
195
|
+
"@babel/helper-wrap-function@^7.7.4":
|
196
|
+
version "7.7.4"
|
197
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz#37ab7fed5150e22d9d7266e830072c0cdd8baace"
|
198
|
+
integrity sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==
|
199
|
+
dependencies:
|
200
|
+
"@babel/helper-function-name" "^7.7.4"
|
201
|
+
"@babel/template" "^7.7.4"
|
202
|
+
"@babel/traverse" "^7.7.4"
|
203
|
+
"@babel/types" "^7.7.4"
|
204
|
+
|
205
|
+
"@babel/helpers@^7.7.4":
|
206
|
+
version "7.7.4"
|
207
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.4.tgz#62c215b9e6c712dadc15a9a0dcab76c92a940302"
|
208
|
+
integrity sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==
|
209
|
+
dependencies:
|
210
|
+
"@babel/template" "^7.7.4"
|
211
|
+
"@babel/traverse" "^7.7.4"
|
212
|
+
"@babel/types" "^7.7.4"
|
213
213
|
|
214
214
|
"@babel/highlight@^7.0.0":
|
215
215
|
version "7.5.0"
|
@@ -220,431 +220,431 @@
|
|
220
220
|
esutils "^2.0.2"
|
221
221
|
js-tokens "^4.0.0"
|
222
222
|
|
223
|
-
"@babel/parser@^7.7.
|
224
|
-
version "7.7.
|
225
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.
|
226
|
-
integrity sha512-
|
223
|
+
"@babel/parser@^7.7.4", "@babel/parser@^7.7.5":
|
224
|
+
version "7.7.5"
|
225
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.5.tgz#cbf45321619ac12d83363fcf9c94bb67fa646d71"
|
226
|
+
integrity sha512-KNlOe9+/nk4i29g0VXgl8PEXIRms5xKLJeuZ6UptN0fHv+jDiriG+y94X6qAgWTR0h3KaoM1wK5G5h7MHFRSig==
|
227
227
|
|
228
|
-
"@babel/plugin-proposal-async-generator-functions@^7.7.
|
229
|
-
version "7.7.
|
230
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.
|
231
|
-
integrity sha512-
|
228
|
+
"@babel/plugin-proposal-async-generator-functions@^7.7.4":
|
229
|
+
version "7.7.4"
|
230
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz#0351c5ac0a9e927845fffd5b82af476947b7ce6d"
|
231
|
+
integrity sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
|
232
232
|
dependencies:
|
233
233
|
"@babel/helper-plugin-utils" "^7.0.0"
|
234
|
-
"@babel/helper-remap-async-to-generator" "^7.7.
|
235
|
-
"@babel/plugin-syntax-async-generators" "^7.
|
234
|
+
"@babel/helper-remap-async-to-generator" "^7.7.4"
|
235
|
+
"@babel/plugin-syntax-async-generators" "^7.7.4"
|
236
236
|
|
237
|
-
"@babel/plugin-proposal-dynamic-import@^7.7.
|
238
|
-
version "7.7.
|
239
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.
|
240
|
-
integrity sha512-
|
237
|
+
"@babel/plugin-proposal-dynamic-import@^7.7.4":
|
238
|
+
version "7.7.4"
|
239
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz#dde64a7f127691758cbfed6cf70de0fa5879d52d"
|
240
|
+
integrity sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
|
241
241
|
dependencies:
|
242
242
|
"@babel/helper-plugin-utils" "^7.0.0"
|
243
|
-
"@babel/plugin-syntax-dynamic-import" "^7.
|
243
|
+
"@babel/plugin-syntax-dynamic-import" "^7.7.4"
|
244
244
|
|
245
|
-
"@babel/plugin-proposal-json-strings@^7.
|
246
|
-
version "7.
|
247
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.
|
248
|
-
integrity sha512-
|
245
|
+
"@babel/plugin-proposal-json-strings@^7.7.4":
|
246
|
+
version "7.7.4"
|
247
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz#7700a6bfda771d8dc81973249eac416c6b4c697d"
|
248
|
+
integrity sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
|
249
249
|
dependencies:
|
250
250
|
"@babel/helper-plugin-utils" "^7.0.0"
|
251
|
-
"@babel/plugin-syntax-json-strings" "^7.
|
251
|
+
"@babel/plugin-syntax-json-strings" "^7.7.4"
|
252
252
|
|
253
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
254
|
-
version "7.
|
255
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
256
|
-
integrity sha512-
|
253
|
+
"@babel/plugin-proposal-object-rest-spread@^7.7.4":
|
254
|
+
version "7.7.4"
|
255
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.4.tgz#cc57849894a5c774214178c8ab64f6334ec8af71"
|
256
|
+
integrity sha512-rnpnZR3/iWKmiQyJ3LKJpSwLDcX/nSXhdLk4Aq/tXOApIvyu7qoabrige0ylsAJffaUC51WiBu209Q0U+86OWQ==
|
257
257
|
dependencies:
|
258
258
|
"@babel/helper-plugin-utils" "^7.0.0"
|
259
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.
|
259
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.7.4"
|
260
260
|
|
261
|
-
"@babel/plugin-proposal-optional-catch-binding@^7.
|
262
|
-
version "7.
|
263
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.
|
264
|
-
integrity sha512-
|
261
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.7.4":
|
262
|
+
version "7.7.4"
|
263
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz#ec21e8aeb09ec6711bc0a39ca49520abee1de379"
|
264
|
+
integrity sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
|
265
265
|
dependencies:
|
266
266
|
"@babel/helper-plugin-utils" "^7.0.0"
|
267
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.
|
267
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.7.4"
|
268
268
|
|
269
|
-
"@babel/plugin-proposal-unicode-property-regex@^7.7.
|
270
|
-
version "7.7.
|
271
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.
|
272
|
-
integrity sha512-
|
269
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.7.4":
|
270
|
+
version "7.7.4"
|
271
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.4.tgz#7c239ccaf09470dbe1d453d50057460e84517ebb"
|
272
|
+
integrity sha512-cHgqHgYvffluZk85dJ02vloErm3Y6xtH+2noOBOJ2kXOJH3aVCDnj5eR/lVNlTnYu4hndAPJD3rTFjW3qee0PA==
|
273
273
|
dependencies:
|
274
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
274
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
275
275
|
"@babel/helper-plugin-utils" "^7.0.0"
|
276
276
|
|
277
|
-
"@babel/plugin-syntax-async-generators@^7.
|
278
|
-
version "7.
|
279
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.
|
280
|
-
integrity sha512-
|
277
|
+
"@babel/plugin-syntax-async-generators@^7.7.4":
|
278
|
+
version "7.7.4"
|
279
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz#331aaf310a10c80c44a66b238b6e49132bd3c889"
|
280
|
+
integrity sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
|
281
281
|
dependencies:
|
282
282
|
"@babel/helper-plugin-utils" "^7.0.0"
|
283
283
|
|
284
|
-
"@babel/plugin-syntax-dynamic-import@^7.
|
285
|
-
version "7.
|
286
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.
|
287
|
-
integrity sha512-
|
284
|
+
"@babel/plugin-syntax-dynamic-import@^7.7.4":
|
285
|
+
version "7.7.4"
|
286
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz#29ca3b4415abfe4a5ec381e903862ad1a54c3aec"
|
287
|
+
integrity sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
|
288
288
|
dependencies:
|
289
289
|
"@babel/helper-plugin-utils" "^7.0.0"
|
290
290
|
|
291
|
-
"@babel/plugin-syntax-json-strings@^7.
|
292
|
-
version "7.
|
293
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.
|
294
|
-
integrity sha512-
|
291
|
+
"@babel/plugin-syntax-json-strings@^7.7.4":
|
292
|
+
version "7.7.4"
|
293
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz#86e63f7d2e22f9e27129ac4e83ea989a382e86cc"
|
294
|
+
integrity sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
|
295
295
|
dependencies:
|
296
296
|
"@babel/helper-plugin-utils" "^7.0.0"
|
297
297
|
|
298
|
-
"@babel/plugin-syntax-object-rest-spread@^7.
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.
|
301
|
-
integrity sha512-
|
298
|
+
"@babel/plugin-syntax-object-rest-spread@^7.7.4":
|
299
|
+
version "7.7.4"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz#47cf220d19d6d0d7b154304701f468fc1cc6ff46"
|
301
|
+
integrity sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
|
302
302
|
dependencies:
|
303
303
|
"@babel/helper-plugin-utils" "^7.0.0"
|
304
304
|
|
305
|
-
"@babel/plugin-syntax-optional-catch-binding@^7.
|
306
|
-
version "7.
|
307
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.
|
308
|
-
integrity sha512-
|
305
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.7.4":
|
306
|
+
version "7.7.4"
|
307
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz#a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6"
|
308
|
+
integrity sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
|
309
309
|
dependencies:
|
310
310
|
"@babel/helper-plugin-utils" "^7.0.0"
|
311
311
|
|
312
|
-
"@babel/plugin-syntax-top-level-await@^7.7.
|
313
|
-
version "7.7.
|
314
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.
|
315
|
-
integrity sha512-
|
312
|
+
"@babel/plugin-syntax-top-level-await@^7.7.4":
|
313
|
+
version "7.7.4"
|
314
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz#bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da"
|
315
|
+
integrity sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
|
316
316
|
dependencies:
|
317
317
|
"@babel/helper-plugin-utils" "^7.0.0"
|
318
318
|
|
319
|
-
"@babel/plugin-transform-arrow-functions@^7.
|
320
|
-
version "7.
|
321
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
322
|
-
integrity sha512-
|
319
|
+
"@babel/plugin-transform-arrow-functions@^7.7.4":
|
320
|
+
version "7.7.4"
|
321
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz#76309bd578addd8aee3b379d809c802305a98a12"
|
322
|
+
integrity sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
|
323
323
|
dependencies:
|
324
324
|
"@babel/helper-plugin-utils" "^7.0.0"
|
325
325
|
|
326
|
-
"@babel/plugin-transform-async-to-generator@^7.7.
|
327
|
-
version "7.7.
|
328
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.
|
329
|
-
integrity sha512-
|
326
|
+
"@babel/plugin-transform-async-to-generator@^7.7.4":
|
327
|
+
version "7.7.4"
|
328
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz#694cbeae6d613a34ef0292713fa42fb45c4470ba"
|
329
|
+
integrity sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
|
330
330
|
dependencies:
|
331
|
-
"@babel/helper-module-imports" "^7.7.
|
331
|
+
"@babel/helper-module-imports" "^7.7.4"
|
332
332
|
"@babel/helper-plugin-utils" "^7.0.0"
|
333
|
-
"@babel/helper-remap-async-to-generator" "^7.7.
|
333
|
+
"@babel/helper-remap-async-to-generator" "^7.7.4"
|
334
334
|
|
335
|
-
"@babel/plugin-transform-block-scoped-functions@^7.
|
336
|
-
version "7.
|
337
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
338
|
-
integrity sha512-
|
335
|
+
"@babel/plugin-transform-block-scoped-functions@^7.7.4":
|
336
|
+
version "7.7.4"
|
337
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz#d0d9d5c269c78eaea76227ace214b8d01e4d837b"
|
338
|
+
integrity sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
|
339
339
|
dependencies:
|
340
340
|
"@babel/helper-plugin-utils" "^7.0.0"
|
341
341
|
|
342
|
-
"@babel/plugin-transform-block-scoping@^7.
|
343
|
-
version "7.
|
344
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
345
|
-
integrity sha512-
|
342
|
+
"@babel/plugin-transform-block-scoping@^7.7.4":
|
343
|
+
version "7.7.4"
|
344
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz#200aad0dcd6bb80372f94d9e628ea062c58bf224"
|
345
|
+
integrity sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
|
346
346
|
dependencies:
|
347
347
|
"@babel/helper-plugin-utils" "^7.0.0"
|
348
348
|
lodash "^4.17.13"
|
349
349
|
|
350
|
-
"@babel/plugin-transform-classes@^7.7.
|
351
|
-
version "7.7.
|
352
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.
|
353
|
-
integrity sha512
|
350
|
+
"@babel/plugin-transform-classes@^7.7.4":
|
351
|
+
version "7.7.4"
|
352
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz#c92c14be0a1399e15df72667067a8f510c9400ec"
|
353
|
+
integrity sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
|
354
354
|
dependencies:
|
355
|
-
"@babel/helper-annotate-as-pure" "^7.7.
|
356
|
-
"@babel/helper-define-map" "^7.7.
|
357
|
-
"@babel/helper-function-name" "^7.7.
|
358
|
-
"@babel/helper-optimise-call-expression" "^7.7.
|
355
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
356
|
+
"@babel/helper-define-map" "^7.7.4"
|
357
|
+
"@babel/helper-function-name" "^7.7.4"
|
358
|
+
"@babel/helper-optimise-call-expression" "^7.7.4"
|
359
359
|
"@babel/helper-plugin-utils" "^7.0.0"
|
360
|
-
"@babel/helper-replace-supers" "^7.7.
|
361
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
360
|
+
"@babel/helper-replace-supers" "^7.7.4"
|
361
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
362
362
|
globals "^11.1.0"
|
363
363
|
|
364
|
-
"@babel/plugin-transform-computed-properties@^7.
|
365
|
-
version "7.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
367
|
-
integrity sha512-
|
364
|
+
"@babel/plugin-transform-computed-properties@^7.7.4":
|
365
|
+
version "7.7.4"
|
366
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz#e856c1628d3238ffe12d668eb42559f79a81910d"
|
367
|
+
integrity sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
|
368
368
|
dependencies:
|
369
369
|
"@babel/helper-plugin-utils" "^7.0.0"
|
370
370
|
|
371
|
-
"@babel/plugin-transform-destructuring@^7.
|
372
|
-
version "7.
|
373
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
374
|
-
integrity sha512-
|
371
|
+
"@babel/plugin-transform-destructuring@^7.7.4":
|
372
|
+
version "7.7.4"
|
373
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz#2b713729e5054a1135097b6a67da1b6fe8789267"
|
374
|
+
integrity sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
|
375
375
|
dependencies:
|
376
376
|
"@babel/helper-plugin-utils" "^7.0.0"
|
377
377
|
|
378
|
-
"@babel/plugin-transform-dotall-regex@^7.7.
|
379
|
-
version "7.7.
|
380
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.
|
381
|
-
integrity sha512-
|
378
|
+
"@babel/plugin-transform-dotall-regex@^7.7.4":
|
379
|
+
version "7.7.4"
|
380
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.4.tgz#f7ccda61118c5b7a2599a72d5e3210884a021e96"
|
381
|
+
integrity sha512-mk0cH1zyMa/XHeb6LOTXTbG7uIJ8Rrjlzu91pUx/KS3JpcgaTDwMS8kM+ar8SLOvlL2Lofi4CGBAjCo3a2x+lw==
|
382
382
|
dependencies:
|
383
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
383
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
384
384
|
"@babel/helper-plugin-utils" "^7.0.0"
|
385
385
|
|
386
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
387
|
-
version "7.
|
388
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
389
|
-
integrity sha512-
|
386
|
+
"@babel/plugin-transform-duplicate-keys@^7.7.4":
|
387
|
+
version "7.7.4"
|
388
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz#3d21731a42e3f598a73835299dd0169c3b90ac91"
|
389
|
+
integrity sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
|
390
390
|
dependencies:
|
391
391
|
"@babel/helper-plugin-utils" "^7.0.0"
|
392
392
|
|
393
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
394
|
-
version "7.
|
395
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
396
|
-
integrity sha512-
|
393
|
+
"@babel/plugin-transform-exponentiation-operator@^7.7.4":
|
394
|
+
version "7.7.4"
|
395
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz#dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9"
|
396
|
+
integrity sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
|
397
397
|
dependencies:
|
398
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
398
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.7.4"
|
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.7.4":
|
402
|
+
version "7.7.4"
|
403
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz#248800e3a5e507b1f103d8b4ca998e77c63932bc"
|
404
|
+
integrity sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
|
405
405
|
dependencies:
|
406
406
|
"@babel/helper-plugin-utils" "^7.0.0"
|
407
407
|
|
408
|
-
"@babel/plugin-transform-function-name@^7.7.
|
409
|
-
version "7.7.
|
410
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.
|
411
|
-
integrity sha512-
|
408
|
+
"@babel/plugin-transform-function-name@^7.7.4":
|
409
|
+
version "7.7.4"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz#75a6d3303d50db638ff8b5385d12451c865025b1"
|
411
|
+
integrity sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
|
412
412
|
dependencies:
|
413
|
-
"@babel/helper-function-name" "^7.7.
|
413
|
+
"@babel/helper-function-name" "^7.7.4"
|
414
414
|
"@babel/helper-plugin-utils" "^7.0.0"
|
415
415
|
|
416
|
-
"@babel/plugin-transform-literals@^7.
|
417
|
-
version "7.
|
418
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
419
|
-
integrity sha512-
|
416
|
+
"@babel/plugin-transform-literals@^7.7.4":
|
417
|
+
version "7.7.4"
|
418
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz#27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e"
|
419
|
+
integrity sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
|
420
420
|
dependencies:
|
421
421
|
"@babel/helper-plugin-utils" "^7.0.0"
|
422
422
|
|
423
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
426
|
-
integrity sha512-
|
423
|
+
"@babel/plugin-transform-member-expression-literals@^7.7.4":
|
424
|
+
version "7.7.4"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz#aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a"
|
426
|
+
integrity sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
|
427
427
|
dependencies:
|
428
428
|
"@babel/helper-plugin-utils" "^7.0.0"
|
429
429
|
|
430
|
-
"@babel/plugin-transform-modules-amd@^7.5
|
431
|
-
version "7.5
|
432
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.
|
433
|
-
integrity sha512-
|
430
|
+
"@babel/plugin-transform-modules-amd@^7.7.5":
|
431
|
+
version "7.7.5"
|
432
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.5.tgz#39e0fb717224b59475b306402bb8eedab01e729c"
|
433
|
+
integrity sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
|
434
434
|
dependencies:
|
435
|
-
"@babel/helper-module-transforms" "^7.
|
435
|
+
"@babel/helper-module-transforms" "^7.7.5"
|
436
436
|
"@babel/helper-plugin-utils" "^7.0.0"
|
437
437
|
babel-plugin-dynamic-import-node "^2.3.0"
|
438
438
|
|
439
|
-
"@babel/plugin-transform-modules-commonjs@^7.7.
|
440
|
-
version "7.7.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.
|
442
|
-
integrity sha512-
|
439
|
+
"@babel/plugin-transform-modules-commonjs@^7.7.5":
|
440
|
+
version "7.7.5"
|
441
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.5.tgz#1d27f5eb0bcf7543e774950e5b2fa782e637b345"
|
442
|
+
integrity sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==
|
443
443
|
dependencies:
|
444
|
-
"@babel/helper-module-transforms" "^7.7.
|
444
|
+
"@babel/helper-module-transforms" "^7.7.5"
|
445
445
|
"@babel/helper-plugin-utils" "^7.0.0"
|
446
|
-
"@babel/helper-simple-access" "^7.7.
|
446
|
+
"@babel/helper-simple-access" "^7.7.4"
|
447
447
|
babel-plugin-dynamic-import-node "^2.3.0"
|
448
448
|
|
449
|
-
"@babel/plugin-transform-modules-systemjs@^7.7.
|
450
|
-
version "7.7.
|
451
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.
|
452
|
-
integrity sha512-
|
449
|
+
"@babel/plugin-transform-modules-systemjs@^7.7.4":
|
450
|
+
version "7.7.4"
|
451
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz#cd98152339d3e763dfe838b7d4273edaf520bb30"
|
452
|
+
integrity sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
|
453
453
|
dependencies:
|
454
|
-
"@babel/helper-hoist-variables" "^7.7.
|
454
|
+
"@babel/helper-hoist-variables" "^7.7.4"
|
455
455
|
"@babel/helper-plugin-utils" "^7.0.0"
|
456
456
|
babel-plugin-dynamic-import-node "^2.3.0"
|
457
457
|
|
458
|
-
"@babel/plugin-transform-modules-umd@^7.7.
|
459
|
-
version "7.7.
|
460
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.
|
461
|
-
integrity sha512-
|
458
|
+
"@babel/plugin-transform-modules-umd@^7.7.4":
|
459
|
+
version "7.7.4"
|
460
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz#1027c355a118de0aae9fee00ad7813c584d9061f"
|
461
|
+
integrity sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
|
462
462
|
dependencies:
|
463
|
-
"@babel/helper-module-transforms" "^7.7.
|
463
|
+
"@babel/helper-module-transforms" "^7.7.4"
|
464
464
|
"@babel/helper-plugin-utils" "^7.0.0"
|
465
465
|
|
466
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.7.
|
467
|
-
version "7.7.
|
468
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.
|
469
|
-
integrity sha512
|
466
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.7.4":
|
467
|
+
version "7.7.4"
|
468
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz#fb3bcc4ee4198e7385805007373d6b6f42c98220"
|
469
|
+
integrity sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
|
470
470
|
dependencies:
|
471
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
471
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
472
472
|
|
473
|
-
"@babel/plugin-transform-new-target@^7.
|
474
|
-
version "7.
|
475
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
476
|
-
integrity sha512-
|
473
|
+
"@babel/plugin-transform-new-target@^7.7.4":
|
474
|
+
version "7.7.4"
|
475
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz#4a0753d2d60639437be07b592a9e58ee00720167"
|
476
|
+
integrity sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
|
477
477
|
dependencies:
|
478
478
|
"@babel/helper-plugin-utils" "^7.0.0"
|
479
479
|
|
480
|
-
"@babel/plugin-transform-object-super@^7.
|
481
|
-
version "7.
|
482
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
483
|
-
integrity sha512-
|
480
|
+
"@babel/plugin-transform-object-super@^7.7.4":
|
481
|
+
version "7.7.4"
|
482
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz#48488937a2d586c0148451bf51af9d7dda567262"
|
483
|
+
integrity sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
|
484
484
|
dependencies:
|
485
485
|
"@babel/helper-plugin-utils" "^7.0.0"
|
486
|
-
"@babel/helper-replace-supers" "^7.
|
486
|
+
"@babel/helper-replace-supers" "^7.7.4"
|
487
487
|
|
488
|
-
"@babel/plugin-transform-parameters@^7.
|
489
|
-
version "7.
|
490
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
491
|
-
integrity sha512-
|
488
|
+
"@babel/plugin-transform-parameters@^7.7.4":
|
489
|
+
version "7.7.4"
|
490
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.4.tgz#da4555c97f39b51ac089d31c7380f03bca4075ce"
|
491
|
+
integrity sha512-VJwhVePWPa0DqE9vcfptaJSzNDKrWU/4FbYCjZERtmqEs05g3UMXnYMZoXja7JAJ7Y7sPZipwm/pGApZt7wHlw==
|
492
492
|
dependencies:
|
493
|
-
"@babel/helper-call-delegate" "^7.
|
494
|
-
"@babel/helper-get-function-arity" "^7.
|
493
|
+
"@babel/helper-call-delegate" "^7.7.4"
|
494
|
+
"@babel/helper-get-function-arity" "^7.7.4"
|
495
495
|
"@babel/helper-plugin-utils" "^7.0.0"
|
496
496
|
|
497
|
-
"@babel/plugin-transform-property-literals@^7.
|
498
|
-
version "7.
|
499
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
500
|
-
integrity sha512-
|
497
|
+
"@babel/plugin-transform-property-literals@^7.7.4":
|
498
|
+
version "7.7.4"
|
499
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz#2388d6505ef89b266103f450f9167e6bd73f98c2"
|
500
|
+
integrity sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
|
501
501
|
dependencies:
|
502
502
|
"@babel/helper-plugin-utils" "^7.0.0"
|
503
503
|
|
504
|
-
"@babel/plugin-transform-regenerator@^7.7.
|
505
|
-
version "7.7.
|
506
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.
|
507
|
-
integrity sha512
|
504
|
+
"@babel/plugin-transform-regenerator@^7.7.5":
|
505
|
+
version "7.7.5"
|
506
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.5.tgz#3a8757ee1a2780f390e89f246065ecf59c26fce9"
|
507
|
+
integrity sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
|
508
508
|
dependencies:
|
509
509
|
regenerator-transform "^0.14.0"
|
510
510
|
|
511
|
-
"@babel/plugin-transform-reserved-words@^7.
|
512
|
-
version "7.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
514
|
-
integrity sha512-
|
511
|
+
"@babel/plugin-transform-reserved-words@^7.7.4":
|
512
|
+
version "7.7.4"
|
513
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz#6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb"
|
514
|
+
integrity sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
|
515
515
|
dependencies:
|
516
516
|
"@babel/helper-plugin-utils" "^7.0.0"
|
517
517
|
|
518
|
-
"@babel/plugin-transform-shorthand-properties@^7.
|
519
|
-
version "7.
|
520
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
521
|
-
integrity sha512-
|
518
|
+
"@babel/plugin-transform-shorthand-properties@^7.7.4":
|
519
|
+
version "7.7.4"
|
520
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz#74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e"
|
521
|
+
integrity sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
|
522
522
|
dependencies:
|
523
523
|
"@babel/helper-plugin-utils" "^7.0.0"
|
524
524
|
|
525
|
-
"@babel/plugin-transform-spread@^7.
|
526
|
-
version "7.
|
527
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
528
|
-
integrity sha512-
|
525
|
+
"@babel/plugin-transform-spread@^7.7.4":
|
526
|
+
version "7.7.4"
|
527
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz#aa673b356fe6b7e70d69b6e33a17fef641008578"
|
528
|
+
integrity sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
|
529
529
|
dependencies:
|
530
530
|
"@babel/helper-plugin-utils" "^7.0.0"
|
531
531
|
|
532
|
-
"@babel/plugin-transform-sticky-regex@^7.
|
533
|
-
version "7.
|
534
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
535
|
-
integrity sha512-
|
532
|
+
"@babel/plugin-transform-sticky-regex@^7.7.4":
|
533
|
+
version "7.7.4"
|
534
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz#ffb68c05090c30732076b1285dc1401b404a123c"
|
535
|
+
integrity sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
|
536
536
|
dependencies:
|
537
537
|
"@babel/helper-plugin-utils" "^7.0.0"
|
538
538
|
"@babel/helper-regex" "^7.0.0"
|
539
539
|
|
540
|
-
"@babel/plugin-transform-template-literals@^7.
|
541
|
-
version "7.
|
542
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
543
|
-
integrity sha512-
|
540
|
+
"@babel/plugin-transform-template-literals@^7.7.4":
|
541
|
+
version "7.7.4"
|
542
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz#1eb6411736dd3fe87dbd20cc6668e5121c17d604"
|
543
|
+
integrity sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
|
544
544
|
dependencies:
|
545
|
-
"@babel/helper-annotate-as-pure" "^7.
|
545
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
546
546
|
"@babel/helper-plugin-utils" "^7.0.0"
|
547
547
|
|
548
|
-
"@babel/plugin-transform-typeof-symbol@^7.
|
549
|
-
version "7.
|
550
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
551
|
-
integrity sha512-
|
548
|
+
"@babel/plugin-transform-typeof-symbol@^7.7.4":
|
549
|
+
version "7.7.4"
|
550
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz#3174626214f2d6de322882e498a38e8371b2140e"
|
551
|
+
integrity sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
|
552
552
|
dependencies:
|
553
553
|
"@babel/helper-plugin-utils" "^7.0.0"
|
554
554
|
|
555
|
-
"@babel/plugin-transform-unicode-regex@^7.7.
|
556
|
-
version "7.7.
|
557
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.
|
558
|
-
integrity sha512-
|
555
|
+
"@babel/plugin-transform-unicode-regex@^7.7.4":
|
556
|
+
version "7.7.4"
|
557
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz#a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae"
|
558
|
+
integrity sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
|
559
559
|
dependencies:
|
560
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
560
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
561
561
|
"@babel/helper-plugin-utils" "^7.0.0"
|
562
562
|
|
563
563
|
"@babel/preset-env@^7.4.5":
|
564
|
-
version "7.7.
|
565
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.
|
566
|
-
integrity sha512
|
564
|
+
version "7.7.5"
|
565
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.5.tgz#f28573ed493edb4ba763b37fb4fbb85601469370"
|
566
|
+
integrity sha512-wDPbiaZdGzsJuTWlpLHJxmwslwHGLZ8F5v69zX3oAWeTOFWdy4OJHoTKg26oAnFg052v+/LAPY5os9KB0LrOEA==
|
567
567
|
dependencies:
|
568
|
-
"@babel/helper-module-imports" "^7.7.
|
568
|
+
"@babel/helper-module-imports" "^7.7.4"
|
569
569
|
"@babel/helper-plugin-utils" "^7.0.0"
|
570
|
-
"@babel/plugin-proposal-async-generator-functions" "^7.7.
|
571
|
-
"@babel/plugin-proposal-dynamic-import" "^7.7.
|
572
|
-
"@babel/plugin-proposal-json-strings" "^7.
|
573
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
574
|
-
"@babel/plugin-proposal-optional-catch-binding" "^7.
|
575
|
-
"@babel/plugin-proposal-unicode-property-regex" "^7.7.
|
576
|
-
"@babel/plugin-syntax-async-generators" "^7.
|
577
|
-
"@babel/plugin-syntax-dynamic-import" "^7.
|
578
|
-
"@babel/plugin-syntax-json-strings" "^7.
|
579
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.
|
580
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.
|
581
|
-
"@babel/plugin-syntax-top-level-await" "^7.7.
|
582
|
-
"@babel/plugin-transform-arrow-functions" "^7.
|
583
|
-
"@babel/plugin-transform-async-to-generator" "^7.7.
|
584
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.
|
585
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
586
|
-
"@babel/plugin-transform-classes" "^7.7.
|
587
|
-
"@babel/plugin-transform-computed-properties" "^7.
|
588
|
-
"@babel/plugin-transform-destructuring" "^7.
|
589
|
-
"@babel/plugin-transform-dotall-regex" "^7.7.
|
590
|
-
"@babel/plugin-transform-duplicate-keys" "^7.
|
591
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.
|
592
|
-
"@babel/plugin-transform-for-of" "^7.
|
593
|
-
"@babel/plugin-transform-function-name" "^7.7.
|
594
|
-
"@babel/plugin-transform-literals" "^7.
|
595
|
-
"@babel/plugin-transform-member-expression-literals" "^7.
|
596
|
-
"@babel/plugin-transform-modules-amd" "^7.5
|
597
|
-
"@babel/plugin-transform-modules-commonjs" "^7.7.
|
598
|
-
"@babel/plugin-transform-modules-systemjs" "^7.7.
|
599
|
-
"@babel/plugin-transform-modules-umd" "^7.7.
|
600
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.7.
|
601
|
-
"@babel/plugin-transform-new-target" "^7.
|
602
|
-
"@babel/plugin-transform-object-super" "^7.
|
603
|
-
"@babel/plugin-transform-parameters" "^7.
|
604
|
-
"@babel/plugin-transform-property-literals" "^7.
|
605
|
-
"@babel/plugin-transform-regenerator" "^7.7.
|
606
|
-
"@babel/plugin-transform-reserved-words" "^7.
|
607
|
-
"@babel/plugin-transform-shorthand-properties" "^7.
|
608
|
-
"@babel/plugin-transform-spread" "^7.
|
609
|
-
"@babel/plugin-transform-sticky-regex" "^7.
|
610
|
-
"@babel/plugin-transform-template-literals" "^7.
|
611
|
-
"@babel/plugin-transform-typeof-symbol" "^7.
|
612
|
-
"@babel/plugin-transform-unicode-regex" "^7.7.
|
613
|
-
"@babel/types" "^7.7.
|
570
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.7.4"
|
571
|
+
"@babel/plugin-proposal-dynamic-import" "^7.7.4"
|
572
|
+
"@babel/plugin-proposal-json-strings" "^7.7.4"
|
573
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.7.4"
|
574
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.7.4"
|
575
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.7.4"
|
576
|
+
"@babel/plugin-syntax-async-generators" "^7.7.4"
|
577
|
+
"@babel/plugin-syntax-dynamic-import" "^7.7.4"
|
578
|
+
"@babel/plugin-syntax-json-strings" "^7.7.4"
|
579
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.7.4"
|
580
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.7.4"
|
581
|
+
"@babel/plugin-syntax-top-level-await" "^7.7.4"
|
582
|
+
"@babel/plugin-transform-arrow-functions" "^7.7.4"
|
583
|
+
"@babel/plugin-transform-async-to-generator" "^7.7.4"
|
584
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.7.4"
|
585
|
+
"@babel/plugin-transform-block-scoping" "^7.7.4"
|
586
|
+
"@babel/plugin-transform-classes" "^7.7.4"
|
587
|
+
"@babel/plugin-transform-computed-properties" "^7.7.4"
|
588
|
+
"@babel/plugin-transform-destructuring" "^7.7.4"
|
589
|
+
"@babel/plugin-transform-dotall-regex" "^7.7.4"
|
590
|
+
"@babel/plugin-transform-duplicate-keys" "^7.7.4"
|
591
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.7.4"
|
592
|
+
"@babel/plugin-transform-for-of" "^7.7.4"
|
593
|
+
"@babel/plugin-transform-function-name" "^7.7.4"
|
594
|
+
"@babel/plugin-transform-literals" "^7.7.4"
|
595
|
+
"@babel/plugin-transform-member-expression-literals" "^7.7.4"
|
596
|
+
"@babel/plugin-transform-modules-amd" "^7.7.5"
|
597
|
+
"@babel/plugin-transform-modules-commonjs" "^7.7.5"
|
598
|
+
"@babel/plugin-transform-modules-systemjs" "^7.7.4"
|
599
|
+
"@babel/plugin-transform-modules-umd" "^7.7.4"
|
600
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.7.4"
|
601
|
+
"@babel/plugin-transform-new-target" "^7.7.4"
|
602
|
+
"@babel/plugin-transform-object-super" "^7.7.4"
|
603
|
+
"@babel/plugin-transform-parameters" "^7.7.4"
|
604
|
+
"@babel/plugin-transform-property-literals" "^7.7.4"
|
605
|
+
"@babel/plugin-transform-regenerator" "^7.7.5"
|
606
|
+
"@babel/plugin-transform-reserved-words" "^7.7.4"
|
607
|
+
"@babel/plugin-transform-shorthand-properties" "^7.7.4"
|
608
|
+
"@babel/plugin-transform-spread" "^7.7.4"
|
609
|
+
"@babel/plugin-transform-sticky-regex" "^7.7.4"
|
610
|
+
"@babel/plugin-transform-template-literals" "^7.7.4"
|
611
|
+
"@babel/plugin-transform-typeof-symbol" "^7.7.4"
|
612
|
+
"@babel/plugin-transform-unicode-regex" "^7.7.4"
|
613
|
+
"@babel/types" "^7.7.4"
|
614
614
|
browserslist "^4.6.0"
|
615
|
-
core-js-compat "^3.
|
615
|
+
core-js-compat "^3.4.7"
|
616
616
|
invariant "^2.2.2"
|
617
617
|
js-levenshtein "^1.1.3"
|
618
618
|
semver "^5.5.0"
|
619
619
|
|
620
|
-
"@babel/template@^7.7.
|
621
|
-
version "7.7.
|
622
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.
|
623
|
-
integrity sha512-
|
620
|
+
"@babel/template@^7.7.4":
|
621
|
+
version "7.7.4"
|
622
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.4.tgz#428a7d9eecffe27deac0a98e23bf8e3675d2a77b"
|
623
|
+
integrity sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==
|
624
624
|
dependencies:
|
625
625
|
"@babel/code-frame" "^7.0.0"
|
626
|
-
"@babel/parser" "^7.7.
|
627
|
-
"@babel/types" "^7.7.
|
626
|
+
"@babel/parser" "^7.7.4"
|
627
|
+
"@babel/types" "^7.7.4"
|
628
628
|
|
629
|
-
"@babel/traverse@^7.7.
|
630
|
-
version "7.7.
|
631
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.
|
632
|
-
integrity sha512-
|
629
|
+
"@babel/traverse@^7.7.4":
|
630
|
+
version "7.7.4"
|
631
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.4.tgz#9c1e7c60fb679fe4fcfaa42500833333c2058558"
|
632
|
+
integrity sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==
|
633
633
|
dependencies:
|
634
634
|
"@babel/code-frame" "^7.5.5"
|
635
|
-
"@babel/generator" "^7.7.
|
636
|
-
"@babel/helper-function-name" "^7.7.
|
637
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
638
|
-
"@babel/parser" "^7.7.
|
639
|
-
"@babel/types" "^7.7.
|
635
|
+
"@babel/generator" "^7.7.4"
|
636
|
+
"@babel/helper-function-name" "^7.7.4"
|
637
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
638
|
+
"@babel/parser" "^7.7.4"
|
639
|
+
"@babel/types" "^7.7.4"
|
640
640
|
debug "^4.1.0"
|
641
641
|
globals "^11.1.0"
|
642
642
|
lodash "^4.17.13"
|
643
643
|
|
644
|
-
"@babel/types@^7.7.
|
645
|
-
version "7.7.
|
646
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.
|
647
|
-
integrity sha512-
|
644
|
+
"@babel/types@^7.7.4":
|
645
|
+
version "7.7.4"
|
646
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193"
|
647
|
+
integrity sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==
|
648
648
|
dependencies:
|
649
649
|
esutils "^2.0.2"
|
650
650
|
lodash "^4.17.13"
|
@@ -1189,9 +1189,9 @@
|
|
1189
1189
|
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
|
1190
1190
|
|
1191
1191
|
"@types/node@*":
|
1192
|
-
version "12.12.
|
1193
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.
|
1194
|
-
integrity sha512-
|
1192
|
+
version "12.12.14"
|
1193
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.14.tgz#1c1d6e3c75dba466e0326948d56e8bd72a1903d2"
|
1194
|
+
integrity sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA==
|
1195
1195
|
|
1196
1196
|
"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2":
|
1197
1197
|
version "2.0.3"
|
@@ -1381,9 +1381,9 @@ acorn-jsx@^5.1.0:
|
|
1381
1381
|
integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==
|
1382
1382
|
|
1383
1383
|
acorn@^6.2.1:
|
1384
|
-
version "6.
|
1385
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.
|
1386
|
-
integrity sha512
|
1384
|
+
version "6.4.0"
|
1385
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"
|
1386
|
+
integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
|
1387
1387
|
|
1388
1388
|
acorn@^7.1.0:
|
1389
1389
|
version "7.1.0"
|
@@ -1584,12 +1584,12 @@ atob@^2.1.1:
|
|
1584
1584
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1585
1585
|
|
1586
1586
|
autoprefixer@^9.5.1, autoprefixer@^9.6.0:
|
1587
|
-
version "9.7.
|
1588
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.
|
1589
|
-
integrity sha512-
|
1587
|
+
version "9.7.3"
|
1588
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.3.tgz#fd42ed03f53de9beb4ca0d61fb4f7268a9bb50b4"
|
1589
|
+
integrity sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
|
1590
1590
|
dependencies:
|
1591
|
-
browserslist "^4.
|
1592
|
-
caniuse-lite "^1.0.
|
1591
|
+
browserslist "^4.8.0"
|
1592
|
+
caniuse-lite "^1.0.30001012"
|
1593
1593
|
chalk "^2.4.2"
|
1594
1594
|
normalize-range "^0.1.2"
|
1595
1595
|
num2fraction "^1.2.2"
|
@@ -1602,9 +1602,9 @@ aws-sign2@~0.7.0:
|
|
1602
1602
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
1603
1603
|
|
1604
1604
|
aws4@^1.8.0:
|
1605
|
-
version "1.
|
1606
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
1607
|
-
integrity sha512-
|
1605
|
+
version "1.9.0"
|
1606
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz#24390e6ad61386b0a747265754d2a17219de862c"
|
1607
|
+
integrity sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A==
|
1608
1608
|
|
1609
1609
|
babel-loader@^8.0.6:
|
1610
1610
|
version "8.0.6"
|
@@ -1684,9 +1684,9 @@ block-stream@*:
|
|
1684
1684
|
inherits "~2.0.0"
|
1685
1685
|
|
1686
1686
|
bluebird@^3.5.5:
|
1687
|
-
version "3.7.
|
1688
|
-
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.
|
1689
|
-
integrity sha512-
|
1687
|
+
version "3.7.2"
|
1688
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
|
1689
|
+
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
|
1690
1690
|
|
1691
1691
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1692
1692
|
version "4.11.8"
|
@@ -1788,14 +1788,14 @@ browserify-zlib@^0.2.0:
|
|
1788
1788
|
dependencies:
|
1789
1789
|
pako "~1.0.5"
|
1790
1790
|
|
1791
|
-
browserslist@^4.6.0, browserslist@^4.
|
1792
|
-
version "4.
|
1793
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1794
|
-
integrity sha512
|
1791
|
+
browserslist@^4.6.0, browserslist@^4.8.0:
|
1792
|
+
version "4.8.2"
|
1793
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.2.tgz#b45720ad5fbc8713b7253c20766f701c9a694289"
|
1794
|
+
integrity sha512-+M4oeaTplPm/f1pXDw84YohEv7B1i/2Aisei8s4s6k3QsoSHa7i5sz8u/cGQkkatCPxMASKxPualR4wwYgVboA==
|
1795
1795
|
dependencies:
|
1796
|
-
caniuse-lite "^1.0.
|
1797
|
-
electron-to-chromium "^1.3.
|
1798
|
-
node-releases "^1.1.
|
1796
|
+
caniuse-lite "^1.0.30001015"
|
1797
|
+
electron-to-chromium "^1.3.322"
|
1798
|
+
node-releases "^1.1.42"
|
1799
1799
|
|
1800
1800
|
btoa@^1.2.1:
|
1801
1801
|
version "1.2.1"
|
@@ -1928,10 +1928,10 @@ camelcase@^5.0.0, camelcase@^5.3.1:
|
|
1928
1928
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1929
1929
|
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
1930
1930
|
|
1931
|
-
caniuse-lite@^1.0.
|
1932
|
-
version "1.0.
|
1933
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1934
|
-
integrity sha512
|
1931
|
+
caniuse-lite@^1.0.30001012, caniuse-lite@^1.0.30001015:
|
1932
|
+
version "1.0.30001015"
|
1933
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001015.tgz#15a7ddf66aba786a71d99626bc8f2b91c6f0f5f0"
|
1934
|
+
integrity sha512-/xL2AbW/XWHNu1gnIrO8UitBGoFthcsDgU9VLK1/dpsoxbaD5LscHozKze05R6WLsBvLhqv78dAPozMFQBYLbQ==
|
1935
1935
|
|
1936
1936
|
caseless@~0.12.0:
|
1937
1937
|
version "0.12.0"
|
@@ -2189,12 +2189,12 @@ copy-descriptor@^0.1.0:
|
|
2189
2189
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
2190
2190
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
2191
2191
|
|
2192
|
-
core-js-compat@^3.
|
2193
|
-
version "3.4.
|
2194
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.
|
2195
|
-
integrity sha512-
|
2192
|
+
core-js-compat@^3.4.7:
|
2193
|
+
version "3.4.7"
|
2194
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.7.tgz#39f8080b1d92a524d6d90505c42b9c5c1eb90611"
|
2195
|
+
integrity sha512-57+mgz/P/xsGdjwQYkwtBZR3LuISaxD1dEwVDtbk8xJMqAmwqaxLOvnNT7kdJ7jYE/NjNptyzXi+IQFMi/2fCw==
|
2196
2196
|
dependencies:
|
2197
|
-
browserslist "^4.
|
2197
|
+
browserslist "^4.8.0"
|
2198
2198
|
semver "^6.3.0"
|
2199
2199
|
|
2200
2200
|
core-js@^2.4.0:
|
@@ -2285,22 +2285,22 @@ crypto-browserify@^3.11.0:
|
|
2285
2285
|
randomfill "^1.0.3"
|
2286
2286
|
|
2287
2287
|
css-loader@^3.0.0:
|
2288
|
-
version "3.2.
|
2289
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.2.
|
2290
|
-
integrity sha512-
|
2288
|
+
version "3.2.1"
|
2289
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.2.1.tgz#62849b45a414b7bde0bfba17325a026471040eae"
|
2290
|
+
integrity sha512-q40kYdcBNzMvkIImCL2O+wk8dh+RGwPPV9Dfz3n7XtOYPXqe2Z6VgtvoxjkLHz02gmhepG9sOAJOUlx+3hHsBg==
|
2291
2291
|
dependencies:
|
2292
2292
|
camelcase "^5.3.1"
|
2293
2293
|
cssesc "^3.0.0"
|
2294
2294
|
icss-utils "^4.1.1"
|
2295
2295
|
loader-utils "^1.2.3"
|
2296
2296
|
normalize-path "^3.0.0"
|
2297
|
-
postcss "^7.0.
|
2297
|
+
postcss "^7.0.23"
|
2298
2298
|
postcss-modules-extract-imports "^2.0.0"
|
2299
2299
|
postcss-modules-local-by-default "^3.0.2"
|
2300
|
-
postcss-modules-scope "^2.1.
|
2300
|
+
postcss-modules-scope "^2.1.1"
|
2301
2301
|
postcss-modules-values "^3.0.0"
|
2302
|
-
postcss-value-parser "^4.0.
|
2303
|
-
schema-utils "^2.
|
2302
|
+
postcss-value-parser "^4.0.2"
|
2303
|
+
schema-utils "^2.6.0"
|
2304
2304
|
|
2305
2305
|
cssesc@^3.0.0:
|
2306
2306
|
version "3.0.0"
|
@@ -2518,15 +2518,15 @@ ecc-jsbn@~0.1.1:
|
|
2518
2518
|
jsbn "~0.1.0"
|
2519
2519
|
safer-buffer "^2.1.0"
|
2520
2520
|
|
2521
|
-
electron-to-chromium@^1.3.
|
2522
|
-
version "1.3.
|
2523
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2524
|
-
integrity sha512-
|
2521
|
+
electron-to-chromium@^1.3.322:
|
2522
|
+
version "1.3.322"
|
2523
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8"
|
2524
|
+
integrity sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA==
|
2525
2525
|
|
2526
2526
|
elliptic@^6.0.0:
|
2527
|
-
version "6.5.
|
2528
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.
|
2529
|
-
integrity sha512-
|
2527
|
+
version "6.5.2"
|
2528
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
2529
|
+
integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
|
2530
2530
|
dependencies:
|
2531
2531
|
bn.js "^4.4.0"
|
2532
2532
|
brorand "^1.0.1"
|
@@ -2601,22 +2601,22 @@ error-ex@^1.2.0, error-ex@^1.3.1:
|
|
2601
2601
|
is-arrayish "^0.2.1"
|
2602
2602
|
|
2603
2603
|
es-abstract@^1.4.3:
|
2604
|
-
version "1.16.
|
2605
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.
|
2606
|
-
integrity sha512-
|
2604
|
+
version "1.16.3"
|
2605
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.3.tgz#52490d978f96ff9f89ec15b5cf244304a5bca161"
|
2606
|
+
integrity sha512-WtY7Fx5LiOnSYgF5eg/1T+GONaGmpvpPdCpSnYij+U2gDTL0UPfWrhDw7b2IYb+9NQJsYpCA0wOQvZfsd6YwRw==
|
2607
2607
|
dependencies:
|
2608
|
-
es-to-primitive "^1.2.
|
2608
|
+
es-to-primitive "^1.2.1"
|
2609
2609
|
function-bind "^1.1.1"
|
2610
2610
|
has "^1.0.3"
|
2611
|
-
has-symbols "^1.0.
|
2611
|
+
has-symbols "^1.0.1"
|
2612
2612
|
is-callable "^1.1.4"
|
2613
2613
|
is-regex "^1.0.4"
|
2614
|
-
object-inspect "^1.
|
2614
|
+
object-inspect "^1.7.0"
|
2615
2615
|
object-keys "^1.1.1"
|
2616
2616
|
string.prototype.trimleft "^2.1.0"
|
2617
2617
|
string.prototype.trimright "^2.1.0"
|
2618
2618
|
|
2619
|
-
es-to-primitive@^1.2.
|
2619
|
+
es-to-primitive@^1.2.1:
|
2620
2620
|
version "1.2.1"
|
2621
2621
|
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
2622
2622
|
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
@@ -2664,9 +2664,9 @@ eslint-visitor-keys@^1.1.0:
|
|
2664
2664
|
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
|
2665
2665
|
|
2666
2666
|
eslint@^6.0.1:
|
2667
|
-
version "6.
|
2668
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.
|
2669
|
-
integrity sha512-
|
2667
|
+
version "6.7.2"
|
2668
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.7.2.tgz#c17707ca4ad7b2d8af986a33feba71e18a9fecd1"
|
2669
|
+
integrity sha512-qMlSWJaCSxDFr8fBPvJM9kJwbazrhNcBU3+DszDW1OlEwKBBRWsJc7NJFelvwQpanHCR14cOLD41x8Eqvo3Nng==
|
2670
2670
|
dependencies:
|
2671
2671
|
"@babel/code-frame" "^7.0.0"
|
2672
2672
|
ajv "^6.10.0"
|
@@ -2683,7 +2683,7 @@ eslint@^6.0.1:
|
|
2683
2683
|
file-entry-cache "^5.0.1"
|
2684
2684
|
functional-red-black-tree "^1.0.1"
|
2685
2685
|
glob-parent "^5.0.0"
|
2686
|
-
globals "^
|
2686
|
+
globals "^12.1.0"
|
2687
2687
|
ignore "^4.0.6"
|
2688
2688
|
import-fresh "^3.0.0"
|
2689
2689
|
imurmurhash "^0.1.4"
|
@@ -2696,7 +2696,7 @@ eslint@^6.0.1:
|
|
2696
2696
|
minimatch "^3.0.4"
|
2697
2697
|
mkdirp "^0.5.1"
|
2698
2698
|
natural-compare "^1.4.0"
|
2699
|
-
optionator "^0.8.
|
2699
|
+
optionator "^0.8.3"
|
2700
2700
|
progress "^2.0.0"
|
2701
2701
|
regexpp "^2.0.1"
|
2702
2702
|
semver "^6.1.2"
|
@@ -3214,11 +3214,18 @@ global-prefix@^3.0.0:
|
|
3214
3214
|
kind-of "^6.0.2"
|
3215
3215
|
which "^1.3.1"
|
3216
3216
|
|
3217
|
-
globals@^11.1.0
|
3217
|
+
globals@^11.1.0:
|
3218
3218
|
version "11.12.0"
|
3219
3219
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
3220
3220
|
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
3221
3221
|
|
3222
|
+
globals@^12.1.0:
|
3223
|
+
version "12.3.0"
|
3224
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13"
|
3225
|
+
integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==
|
3226
|
+
dependencies:
|
3227
|
+
type-fest "^0.8.1"
|
3228
|
+
|
3222
3229
|
globby@^9.2.0:
|
3223
3230
|
version "9.2.0"
|
3224
3231
|
resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
|
@@ -4595,10 +4602,10 @@ node-pre-gyp@^0.12.0:
|
|
4595
4602
|
semver "^5.3.0"
|
4596
4603
|
tar "^4"
|
4597
4604
|
|
4598
|
-
node-releases@^1.1.
|
4599
|
-
version "1.1.
|
4600
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
4601
|
-
integrity sha512
|
4605
|
+
node-releases@^1.1.42:
|
4606
|
+
version "1.1.42"
|
4607
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.42.tgz#a999f6a62f8746981f6da90627a8d2fc090bbad7"
|
4608
|
+
integrity sha512-OQ/ESmUqGawI2PRX+XIRao44qWYBBfN54ImQYdWVTQqUckuejOg76ysSqDBK8NG3zwySRVnX36JwDQ6x+9GxzA==
|
4602
4609
|
dependencies:
|
4603
4610
|
semver "^6.3.0"
|
4604
4611
|
|
@@ -4746,7 +4753,7 @@ object-copy@^0.1.0:
|
|
4746
4753
|
define-property "^0.2.5"
|
4747
4754
|
kind-of "^3.0.3"
|
4748
4755
|
|
4749
|
-
object-inspect@^1.
|
4756
|
+
object-inspect@^1.7.0:
|
4750
4757
|
version "1.7.0"
|
4751
4758
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
|
4752
4759
|
integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
|
@@ -4794,7 +4801,7 @@ onetime@^5.1.0:
|
|
4794
4801
|
dependencies:
|
4795
4802
|
mimic-fn "^2.1.0"
|
4796
4803
|
|
4797
|
-
optionator@^0.8.
|
4804
|
+
optionator@^0.8.3:
|
4798
4805
|
version "0.8.3"
|
4799
4806
|
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
4800
4807
|
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
|
@@ -5155,10 +5162,10 @@ postcss-modules-local-by-default@^3.0.2:
|
|
5155
5162
|
postcss-selector-parser "^6.0.2"
|
5156
5163
|
postcss-value-parser "^4.0.0"
|
5157
5164
|
|
5158
|
-
postcss-modules-scope@^2.1.
|
5159
|
-
version "2.1.
|
5160
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.
|
5161
|
-
integrity sha512-
|
5165
|
+
postcss-modules-scope@^2.1.1:
|
5166
|
+
version "2.1.1"
|
5167
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba"
|
5168
|
+
integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
|
5162
5169
|
dependencies:
|
5163
5170
|
postcss "^7.0.6"
|
5164
5171
|
postcss-selector-parser "^6.0.0"
|
@@ -5250,9 +5257,9 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2:
|
|
5250
5257
|
integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
|
5251
5258
|
|
5252
5259
|
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7:
|
5253
|
-
version "7.0.
|
5254
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
5255
|
-
integrity sha512-
|
5260
|
+
version "7.0.24"
|
5261
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.24.tgz#972c3c5be431b32e40caefe6c81b5a19117704c2"
|
5262
|
+
integrity sha512-Xl0XvdNWg+CblAXzNvbSOUvgJXwSjmbAKORqyw9V2AlHrm1js2gFw9y3jibBAhpKZi8b5JzJCVh/FyzPsTtgTA==
|
5256
5263
|
dependencies:
|
5257
5264
|
chalk "^2.4.2"
|
5258
5265
|
source-map "^0.6.1"
|
@@ -5299,9 +5306,9 @@ pseudomap@^1.0.2:
|
|
5299
5306
|
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
5300
5307
|
|
5301
5308
|
psl@^1.1.24:
|
5302
|
-
version "1.
|
5303
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.
|
5304
|
-
integrity sha512-
|
5309
|
+
version "1.6.0"
|
5310
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.6.0.tgz#60557582ee23b6c43719d9890fb4170ecd91e110"
|
5311
|
+
integrity sha512-SYKKmVel98NCOYXpkwUqZqh0ahZeeKfmisiLIcEZdsb+WbLv02g/dI5BUmZnIyOe7RzZtLax81nnb2HbvC2tzA==
|
5305
5312
|
|
5306
5313
|
public-encrypt@^4.0.0:
|
5307
5314
|
version "4.0.3"
|
@@ -5696,9 +5703,9 @@ resolve-url@^0.2.1:
|
|
5696
5703
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
5697
5704
|
|
5698
5705
|
resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1:
|
5699
|
-
version "1.
|
5700
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
5701
|
-
integrity sha512-
|
5706
|
+
version "1.13.1"
|
5707
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16"
|
5708
|
+
integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==
|
5702
5709
|
dependencies:
|
5703
5710
|
path-parse "^1.0.6"
|
5704
5711
|
|
@@ -5815,10 +5822,10 @@ schema-utils@^1.0.0:
|
|
5815
5822
|
ajv-errors "^1.0.0"
|
5816
5823
|
ajv-keywords "^3.1.0"
|
5817
5824
|
|
5818
|
-
schema-utils@^2.
|
5819
|
-
version "2.
|
5820
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.
|
5821
|
-
integrity sha512-
|
5825
|
+
schema-utils@^2.5.0, schema-utils@^2.6.0:
|
5826
|
+
version "2.6.1"
|
5827
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
|
5828
|
+
integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
|
5822
5829
|
dependencies:
|
5823
5830
|
ajv "^6.10.2"
|
5824
5831
|
ajv-keywords "^3.4.1"
|
@@ -5846,10 +5853,10 @@ semver@~5.3.0:
|
|
5846
5853
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
5847
5854
|
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
5848
5855
|
|
5849
|
-
serialize-javascript@^1.
|
5850
|
-
version "1.
|
5851
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.
|
5852
|
-
integrity sha512-
|
5856
|
+
serialize-javascript@^2.1.1:
|
5857
|
+
version "2.1.1"
|
5858
|
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.1.tgz#952907a04a3e3a75af7f73d92d15e233862048b2"
|
5859
|
+
integrity sha512-MPLPRpD4FNqWq9tTIjYG5LesFouDhdyH0EPY3gVK4DRD5+g4aDqdNSzLIwceulo3Yj+PL1bPh6laE5+H6LTcrQ==
|
5853
5860
|
|
5854
5861
|
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
5855
5862
|
version "2.0.0"
|
@@ -6438,24 +6445,24 @@ tar@^4:
|
|
6438
6445
|
yallist "^3.0.3"
|
6439
6446
|
|
6440
6447
|
terser-webpack-plugin@^1.4.1:
|
6441
|
-
version "1.4.
|
6442
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.
|
6443
|
-
integrity sha512-
|
6448
|
+
version "1.4.2"
|
6449
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.2.tgz#e23c0d554587d1f473bd0cf68627720e733890a4"
|
6450
|
+
integrity sha512-fdEb91kR2l+BVgES77N/NTXWZlpX6vX+pYPjnX5grcDYBF2CMnzJiXX4NNlna4l04lvCW39lZ+O/jSvUhHH/ew==
|
6444
6451
|
dependencies:
|
6445
6452
|
cacache "^12.0.2"
|
6446
6453
|
find-cache-dir "^2.1.0"
|
6447
6454
|
is-wsl "^1.1.0"
|
6448
6455
|
schema-utils "^1.0.0"
|
6449
|
-
serialize-javascript "^1.
|
6456
|
+
serialize-javascript "^2.1.1"
|
6450
6457
|
source-map "^0.6.1"
|
6451
6458
|
terser "^4.1.2"
|
6452
6459
|
webpack-sources "^1.4.0"
|
6453
6460
|
worker-farm "^1.7.0"
|
6454
6461
|
|
6455
6462
|
terser@^4.1.2:
|
6456
|
-
version "4.4.
|
6457
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.
|
6458
|
-
integrity sha512-
|
6463
|
+
version "4.4.2"
|
6464
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.2.tgz#448fffad0245f4c8a277ce89788b458bfd7706e8"
|
6465
|
+
integrity sha512-Uufrsvhj9O1ikwgITGsZ5EZS6qPokUOkCegS7fYOdGTv+OA90vndUbU6PEjr5ePqHfNUbGyMO7xyIZv2MhsALQ==
|
6459
6466
|
dependencies:
|
6460
6467
|
commander "^2.20.0"
|
6461
6468
|
source-map "~0.6.1"
|