super 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +2 -1
- data/README.md +55 -23
- data/app/assets/javascripts/super/application.js +1062 -261
- data/app/assets/stylesheets/super/application.css +72775 -50711
- data/app/controllers/super/application_controller.rb +39 -50
- data/app/helpers/super/application_helper.rb +24 -17
- data/app/views/layouts/super/application.html.erb +4 -0
- data/app/views/super/application/{_resources_header.html.erb → _collection_header.html.erb} +5 -6
- data/app/views/super/application/_flash.html.erb +13 -13
- data/app/views/super/application/_form_field_select.html.erb +1 -1
- data/app/views/super/application/_form_has_many.html.erb +1 -1
- data/app/views/super/application/{_resource_header.html.erb → _member_header.html.erb} +6 -6
- data/app/views/super/application/_super_layout.html.erb +7 -12
- data/app/views/super/application/_super_panel.html.erb +2 -6
- data/app/views/super/application/_super_schema_display_actions.html.erb +5 -0
- data/app/views/super/application/_super_schema_display_index.html.erb +39 -0
- data/app/views/super/application/_super_schema_display_show.html.erb +8 -0
- data/app/views/super/application/{_form.html.erb → _super_schema_form.html.erb} +2 -4
- data/app/views/super/application/edit.html.erb +2 -2
- data/app/views/super/application/index.html.erb +2 -2
- data/app/views/super/application/new.html.erb +2 -2
- data/app/views/super/application/show.html.erb +2 -2
- data/app/views/super/feather/{_chevron_down.svg → _chevron_down.html} +0 -0
- data/config/locales/en.yml +5 -0
- data/docs/cheat.md +41 -0
- data/docs/webpacker.md +1 -1
- data/frontend/super-frontend/dist/application.css +72775 -50711
- data/frontend/super-frontend/dist/application.js +1062 -261
- data/frontend/super-frontend/package.json +1 -1
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +6 -8
- data/frontend/super-frontend/tailwind.config.js +7 -1
- data/frontend/super-frontend/yarn.lock +1103 -1195
- data/lib/generators/super/install/install_generator.rb +16 -0
- data/lib/super.rb +2 -2
- data/lib/super/action_inquirer.rb +2 -2
- data/lib/super/client_error.rb +43 -0
- data/lib/super/configuration.rb +1 -1
- data/lib/super/controls.rb +17 -101
- data/lib/super/controls/optional.rb +65 -0
- data/lib/super/controls/required.rb +41 -0
- data/lib/super/controls/steps.rb +115 -0
- data/lib/super/display/schema_types.rb +45 -2
- data/lib/super/error.rb +8 -9
- data/lib/super/form.rb +48 -0
- data/lib/super/form/schema_types.rb +8 -1
- data/lib/super/layout.rb +28 -0
- data/lib/super/link.rb +55 -32
- data/lib/super/panel.rb +13 -0
- data/lib/super/partial/resolving.rb +24 -0
- data/lib/super/schema.rb +19 -5
- data/lib/super/version.rb +1 -1
- data/lib/super/view_helper.rb +1 -1
- metadata +40 -15
- data/app/views/super/application/_index.html.erb +0 -45
- data/app/views/super/application/_show.html.erb +0 -10
- data/docs/controls.md +0 -39
- data/lib/super/display.rb +0 -9
- data/lib/super/step.rb +0 -36
- data/lib/tasks/super_tasks.rake +0 -4
@@ -8,14 +8,12 @@ export default class extends Controller {
|
|
8
8
|
call(event: Event) {
|
9
9
|
event.preventDefault();
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
);
|
11
|
+
const unixtime = new Date().getTime();
|
12
|
+
let content = this.templateTarget!.innerHTML.replace(
|
13
|
+
/TEMPLATEINDEX/g,
|
14
|
+
unixtime.toString()
|
15
|
+
);
|
17
16
|
|
18
|
-
|
19
|
-
}
|
17
|
+
this.templateTarget!.insertAdjacentHTML("beforebegin", content);
|
20
18
|
}
|
21
19
|
}
|
@@ -1,9 +1,15 @@
|
|
1
|
+
// Tailwind's recommend ordering of variants:
|
2
|
+
// 'responsive', 'group-hover', 'group-focus', 'focus-within', 'first',
|
3
|
+
// 'last', 'odd', 'even', 'hover', 'focus', 'active', 'visited', 'disabled'
|
1
4
|
module.exports = {
|
2
5
|
theme: {
|
3
6
|
extend: {},
|
4
7
|
},
|
5
8
|
variants: {
|
6
|
-
|
9
|
+
backgroundColor: ({ after }) => after(["group-hover"], "responsive"),
|
10
|
+
borderColor: ({ after }) => after(["group-hover"], "responsive"),
|
11
|
+
borderRadius: ({ after }) => after(["first", "last"], "responsive"),
|
12
|
+
padding: ({ after }) => after(["first", "last"]),
|
7
13
|
},
|
8
14
|
plugins: [],
|
9
15
|
};
|
@@ -2,339 +2,379 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
-
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.
|
6
|
-
version "7.
|
7
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
8
|
-
integrity sha512-
|
5
|
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
|
6
|
+
version "7.10.4"
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
|
8
|
+
integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
|
9
9
|
dependencies:
|
10
|
-
"@babel/highlight" "^7.
|
10
|
+
"@babel/highlight" "^7.10.4"
|
11
11
|
|
12
|
-
"@babel/compat-data@^7.
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.
|
15
|
-
integrity sha512-
|
16
|
-
dependencies:
|
17
|
-
browserslist "^4.11.1"
|
18
|
-
invariant "^2.2.4"
|
19
|
-
semver "^5.5.0"
|
12
|
+
"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7":
|
13
|
+
version "7.12.7"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
|
15
|
+
integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
|
20
16
|
|
21
17
|
"@babel/core@^7.4.4":
|
22
|
-
version "7.9
|
23
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.
|
24
|
-
integrity sha512-
|
25
|
-
dependencies:
|
26
|
-
"@babel/code-frame" "^7.
|
27
|
-
"@babel/generator" "^7.
|
28
|
-
"@babel/helper-module-transforms" "^7.
|
29
|
-
"@babel/helpers" "^7.
|
30
|
-
"@babel/parser" "^7.
|
31
|
-
"@babel/template" "^7.
|
32
|
-
"@babel/traverse" "^7.9
|
33
|
-
"@babel/types" "^7.
|
18
|
+
version "7.12.9"
|
19
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
|
20
|
+
integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
|
21
|
+
dependencies:
|
22
|
+
"@babel/code-frame" "^7.10.4"
|
23
|
+
"@babel/generator" "^7.12.5"
|
24
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
25
|
+
"@babel/helpers" "^7.12.5"
|
26
|
+
"@babel/parser" "^7.12.7"
|
27
|
+
"@babel/template" "^7.12.7"
|
28
|
+
"@babel/traverse" "^7.12.9"
|
29
|
+
"@babel/types" "^7.12.7"
|
34
30
|
convert-source-map "^1.7.0"
|
35
31
|
debug "^4.1.0"
|
36
32
|
gensync "^1.0.0-beta.1"
|
37
33
|
json5 "^2.1.2"
|
38
|
-
lodash "^4.17.
|
34
|
+
lodash "^4.17.19"
|
39
35
|
resolve "^1.3.2"
|
40
36
|
semver "^5.4.1"
|
41
37
|
source-map "^0.5.0"
|
42
38
|
|
43
|
-
"@babel/generator@^7.
|
44
|
-
version "7.
|
45
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
46
|
-
integrity sha512
|
39
|
+
"@babel/generator@^7.12.5", "@babel/generator@^7.4.4":
|
40
|
+
version "7.12.5"
|
41
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
|
42
|
+
integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
|
47
43
|
dependencies:
|
48
|
-
"@babel/types" "^7.
|
44
|
+
"@babel/types" "^7.12.5"
|
49
45
|
jsesc "^2.5.1"
|
50
|
-
lodash "^4.17.13"
|
51
46
|
source-map "^0.5.0"
|
52
47
|
|
53
|
-
"@babel/helper-annotate-as-pure@^7.
|
54
|
-
version "7.
|
55
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
56
|
-
integrity sha512-
|
48
|
+
"@babel/helper-annotate-as-pure@^7.10.4":
|
49
|
+
version "7.10.4"
|
50
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
|
51
|
+
integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
|
57
52
|
dependencies:
|
58
|
-
"@babel/types" "^7.
|
59
|
-
|
60
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
|
61
|
-
version "7.8.3"
|
62
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
|
63
|
-
integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
|
64
|
-
dependencies:
|
65
|
-
"@babel/helper-explode-assignable-expression" "^7.8.3"
|
66
|
-
"@babel/types" "^7.8.3"
|
67
|
-
|
68
|
-
"@babel/helper-builder-react-jsx-experimental@^7.9.0":
|
69
|
-
version "7.9.5"
|
70
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3"
|
71
|
-
integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==
|
72
|
-
dependencies:
|
73
|
-
"@babel/helper-annotate-as-pure" "^7.8.3"
|
74
|
-
"@babel/helper-module-imports" "^7.8.3"
|
75
|
-
"@babel/types" "^7.9.5"
|
76
|
-
|
77
|
-
"@babel/helper-builder-react-jsx@^7.9.0":
|
78
|
-
version "7.9.0"
|
79
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32"
|
80
|
-
integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==
|
81
|
-
dependencies:
|
82
|
-
"@babel/helper-annotate-as-pure" "^7.8.3"
|
83
|
-
"@babel/types" "^7.9.0"
|
84
|
-
|
85
|
-
"@babel/helper-compilation-targets@^7.9.6":
|
86
|
-
version "7.9.6"
|
87
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz#1e05b7ccc9d38d2f8b40b458b380a04dcfadd38a"
|
88
|
-
integrity sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==
|
89
|
-
dependencies:
|
90
|
-
"@babel/compat-data" "^7.9.6"
|
91
|
-
browserslist "^4.11.1"
|
92
|
-
invariant "^2.2.4"
|
93
|
-
levenary "^1.1.1"
|
94
|
-
semver "^5.5.0"
|
53
|
+
"@babel/types" "^7.10.4"
|
95
54
|
|
96
|
-
"@babel/helper-
|
97
|
-
version "7.
|
98
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
99
|
-
integrity sha512-
|
55
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
|
56
|
+
version "7.10.4"
|
57
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
|
58
|
+
integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
|
100
59
|
dependencies:
|
101
|
-
"@babel/helper-
|
102
|
-
"@babel/
|
103
|
-
regexpu-core "^4.7.0"
|
60
|
+
"@babel/helper-explode-assignable-expression" "^7.10.4"
|
61
|
+
"@babel/types" "^7.10.4"
|
104
62
|
|
105
|
-
"@babel/helper-
|
106
|
-
version "7.
|
107
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
108
|
-
integrity sha512-
|
109
|
-
dependencies:
|
110
|
-
"@babel/helper-function-name" "^7.8.3"
|
111
|
-
"@babel/types" "^7.8.3"
|
112
|
-
lodash "^4.17.13"
|
113
|
-
|
114
|
-
"@babel/helper-explode-assignable-expression@^7.8.3":
|
115
|
-
version "7.8.3"
|
116
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
|
117
|
-
integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
|
63
|
+
"@babel/helper-builder-react-jsx-experimental@^7.12.4":
|
64
|
+
version "7.12.4"
|
65
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48"
|
66
|
+
integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==
|
118
67
|
dependencies:
|
119
|
-
"@babel/
|
120
|
-
"@babel/
|
68
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
69
|
+
"@babel/helper-module-imports" "^7.12.1"
|
70
|
+
"@babel/types" "^7.12.1"
|
121
71
|
|
122
|
-
"@babel/helper-
|
123
|
-
version "7.
|
124
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
125
|
-
integrity sha512-
|
72
|
+
"@babel/helper-builder-react-jsx@^7.10.4":
|
73
|
+
version "7.10.4"
|
74
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
|
75
|
+
integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
|
126
76
|
dependencies:
|
127
|
-
"@babel/helper-
|
128
|
-
"@babel/
|
129
|
-
"@babel/types" "^7.9.5"
|
77
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
78
|
+
"@babel/types" "^7.10.4"
|
130
79
|
|
131
|
-
"@babel/helper-
|
132
|
-
version "7.
|
133
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
134
|
-
integrity sha512
|
80
|
+
"@babel/helper-compilation-targets@^7.12.5":
|
81
|
+
version "7.12.5"
|
82
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
|
83
|
+
integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
|
135
84
|
dependencies:
|
136
|
-
"@babel/
|
137
|
-
|
138
|
-
"
|
139
|
-
|
140
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
|
141
|
-
integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
|
142
|
-
dependencies:
|
143
|
-
"@babel/types" "^7.8.3"
|
144
|
-
|
145
|
-
"@babel/helper-member-expression-to-functions@^7.8.3":
|
146
|
-
version "7.8.3"
|
147
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
|
148
|
-
integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
|
149
|
-
dependencies:
|
150
|
-
"@babel/types" "^7.8.3"
|
151
|
-
|
152
|
-
"@babel/helper-module-imports@^7.8.3":
|
153
|
-
version "7.8.3"
|
154
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
155
|
-
integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
|
156
|
-
dependencies:
|
157
|
-
"@babel/types" "^7.8.3"
|
158
|
-
|
159
|
-
"@babel/helper-module-transforms@^7.9.0":
|
160
|
-
version "7.9.0"
|
161
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
|
162
|
-
integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
|
163
|
-
dependencies:
|
164
|
-
"@babel/helper-module-imports" "^7.8.3"
|
165
|
-
"@babel/helper-replace-supers" "^7.8.6"
|
166
|
-
"@babel/helper-simple-access" "^7.8.3"
|
167
|
-
"@babel/helper-split-export-declaration" "^7.8.3"
|
168
|
-
"@babel/template" "^7.8.6"
|
169
|
-
"@babel/types" "^7.9.0"
|
170
|
-
lodash "^4.17.13"
|
171
|
-
|
172
|
-
"@babel/helper-optimise-call-expression@^7.8.3":
|
173
|
-
version "7.8.3"
|
174
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
|
175
|
-
integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
|
176
|
-
dependencies:
|
177
|
-
"@babel/types" "^7.8.3"
|
178
|
-
|
179
|
-
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
180
|
-
version "7.8.3"
|
181
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
|
182
|
-
integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
|
85
|
+
"@babel/compat-data" "^7.12.5"
|
86
|
+
"@babel/helper-validator-option" "^7.12.1"
|
87
|
+
browserslist "^4.14.5"
|
88
|
+
semver "^5.5.0"
|
183
89
|
|
184
|
-
"@babel/helper-
|
185
|
-
version "7.
|
186
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
187
|
-
integrity sha512-
|
188
|
-
dependencies:
|
189
|
-
|
90
|
+
"@babel/helper-create-class-features-plugin@^7.12.1":
|
91
|
+
version "7.12.1"
|
92
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
|
93
|
+
integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
|
94
|
+
dependencies:
|
95
|
+
"@babel/helper-function-name" "^7.10.4"
|
96
|
+
"@babel/helper-member-expression-to-functions" "^7.12.1"
|
97
|
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
98
|
+
"@babel/helper-replace-supers" "^7.12.1"
|
99
|
+
"@babel/helper-split-export-declaration" "^7.10.4"
|
100
|
+
|
101
|
+
"@babel/helper-create-regexp-features-plugin@^7.12.1":
|
102
|
+
version "7.12.7"
|
103
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
|
104
|
+
integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
|
105
|
+
dependencies:
|
106
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
107
|
+
regexpu-core "^4.7.1"
|
108
|
+
|
109
|
+
"@babel/helper-define-map@^7.10.4":
|
110
|
+
version "7.10.5"
|
111
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
|
112
|
+
integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
|
113
|
+
dependencies:
|
114
|
+
"@babel/helper-function-name" "^7.10.4"
|
115
|
+
"@babel/types" "^7.10.5"
|
116
|
+
lodash "^4.17.19"
|
117
|
+
|
118
|
+
"@babel/helper-explode-assignable-expression@^7.10.4":
|
119
|
+
version "7.12.1"
|
120
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"
|
121
|
+
integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
|
122
|
+
dependencies:
|
123
|
+
"@babel/types" "^7.12.1"
|
124
|
+
|
125
|
+
"@babel/helper-function-name@^7.10.4":
|
126
|
+
version "7.10.4"
|
127
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
|
128
|
+
integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
|
129
|
+
dependencies:
|
130
|
+
"@babel/helper-get-function-arity" "^7.10.4"
|
131
|
+
"@babel/template" "^7.10.4"
|
132
|
+
"@babel/types" "^7.10.4"
|
133
|
+
|
134
|
+
"@babel/helper-get-function-arity@^7.10.4":
|
135
|
+
version "7.10.4"
|
136
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
|
137
|
+
integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
|
138
|
+
dependencies:
|
139
|
+
"@babel/types" "^7.10.4"
|
140
|
+
|
141
|
+
"@babel/helper-hoist-variables@^7.10.4":
|
142
|
+
version "7.10.4"
|
143
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
|
144
|
+
integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
|
145
|
+
dependencies:
|
146
|
+
"@babel/types" "^7.10.4"
|
147
|
+
|
148
|
+
"@babel/helper-member-expression-to-functions@^7.12.1":
|
149
|
+
version "7.12.7"
|
150
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
|
151
|
+
integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
|
152
|
+
dependencies:
|
153
|
+
"@babel/types" "^7.12.7"
|
154
|
+
|
155
|
+
"@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
|
156
|
+
version "7.12.5"
|
157
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
|
158
|
+
integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
|
159
|
+
dependencies:
|
160
|
+
"@babel/types" "^7.12.5"
|
161
|
+
|
162
|
+
"@babel/helper-module-transforms@^7.12.1":
|
163
|
+
version "7.12.1"
|
164
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
|
165
|
+
integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
|
166
|
+
dependencies:
|
167
|
+
"@babel/helper-module-imports" "^7.12.1"
|
168
|
+
"@babel/helper-replace-supers" "^7.12.1"
|
169
|
+
"@babel/helper-simple-access" "^7.12.1"
|
170
|
+
"@babel/helper-split-export-declaration" "^7.11.0"
|
171
|
+
"@babel/helper-validator-identifier" "^7.10.4"
|
172
|
+
"@babel/template" "^7.10.4"
|
173
|
+
"@babel/traverse" "^7.12.1"
|
174
|
+
"@babel/types" "^7.12.1"
|
175
|
+
lodash "^4.17.19"
|
176
|
+
|
177
|
+
"@babel/helper-optimise-call-expression@^7.10.4":
|
178
|
+
version "7.12.7"
|
179
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c"
|
180
|
+
integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==
|
181
|
+
dependencies:
|
182
|
+
"@babel/types" "^7.12.7"
|
183
|
+
|
184
|
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
185
|
+
version "7.10.4"
|
186
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
|
187
|
+
integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
|
188
|
+
|
189
|
+
"@babel/helper-remap-async-to-generator@^7.12.1":
|
190
|
+
version "7.12.1"
|
191
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
|
192
|
+
integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
|
193
|
+
dependencies:
|
194
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
195
|
+
"@babel/helper-wrap-function" "^7.10.4"
|
196
|
+
"@babel/types" "^7.12.1"
|
197
|
+
|
198
|
+
"@babel/helper-replace-supers@^7.12.1":
|
199
|
+
version "7.12.5"
|
200
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9"
|
201
|
+
integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
|
202
|
+
dependencies:
|
203
|
+
"@babel/helper-member-expression-to-functions" "^7.12.1"
|
204
|
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
205
|
+
"@babel/traverse" "^7.12.5"
|
206
|
+
"@babel/types" "^7.12.5"
|
207
|
+
|
208
|
+
"@babel/helper-simple-access@^7.12.1":
|
209
|
+
version "7.12.1"
|
210
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
|
211
|
+
integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
|
212
|
+
dependencies:
|
213
|
+
"@babel/types" "^7.12.1"
|
214
|
+
|
215
|
+
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
|
216
|
+
version "7.12.1"
|
217
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
|
218
|
+
integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
|
219
|
+
dependencies:
|
220
|
+
"@babel/types" "^7.12.1"
|
221
|
+
|
222
|
+
"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
|
223
|
+
version "7.11.0"
|
224
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
|
225
|
+
integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
|
226
|
+
dependencies:
|
227
|
+
"@babel/types" "^7.11.0"
|
228
|
+
|
229
|
+
"@babel/helper-validator-identifier@^7.10.4":
|
230
|
+
version "7.10.4"
|
231
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
|
232
|
+
integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
|
233
|
+
|
234
|
+
"@babel/helper-validator-option@^7.12.1":
|
235
|
+
version "7.12.1"
|
236
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9"
|
237
|
+
integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==
|
238
|
+
|
239
|
+
"@babel/helper-wrap-function@^7.10.4":
|
240
|
+
version "7.12.3"
|
241
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9"
|
242
|
+
integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
|
243
|
+
dependencies:
|
244
|
+
"@babel/helper-function-name" "^7.10.4"
|
245
|
+
"@babel/template" "^7.10.4"
|
246
|
+
"@babel/traverse" "^7.10.4"
|
247
|
+
"@babel/types" "^7.10.4"
|
248
|
+
|
249
|
+
"@babel/helpers@^7.12.5":
|
250
|
+
version "7.12.5"
|
251
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
|
252
|
+
integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
|
253
|
+
dependencies:
|
254
|
+
"@babel/template" "^7.10.4"
|
255
|
+
"@babel/traverse" "^7.12.5"
|
256
|
+
"@babel/types" "^7.12.5"
|
257
|
+
|
258
|
+
"@babel/highlight@^7.10.4":
|
259
|
+
version "7.10.4"
|
260
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
|
261
|
+
integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
|
262
|
+
dependencies:
|
263
|
+
"@babel/helper-validator-identifier" "^7.10.4"
|
264
|
+
chalk "^2.0.0"
|
265
|
+
js-tokens "^4.0.0"
|
190
266
|
|
191
|
-
"@babel/
|
192
|
-
version "7.
|
193
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
194
|
-
integrity sha512-
|
195
|
-
dependencies:
|
196
|
-
"@babel/helper-annotate-as-pure" "^7.8.3"
|
197
|
-
"@babel/helper-wrap-function" "^7.8.3"
|
198
|
-
"@babel/template" "^7.8.3"
|
199
|
-
"@babel/traverse" "^7.8.3"
|
200
|
-
"@babel/types" "^7.8.3"
|
201
|
-
|
202
|
-
"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6":
|
203
|
-
version "7.9.6"
|
204
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz#03149d7e6a5586ab6764996cd31d6981a17e1444"
|
205
|
-
integrity sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==
|
206
|
-
dependencies:
|
207
|
-
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
208
|
-
"@babel/helper-optimise-call-expression" "^7.8.3"
|
209
|
-
"@babel/traverse" "^7.9.6"
|
210
|
-
"@babel/types" "^7.9.6"
|
211
|
-
|
212
|
-
"@babel/helper-simple-access@^7.8.3":
|
213
|
-
version "7.8.3"
|
214
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
|
215
|
-
integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
|
216
|
-
dependencies:
|
217
|
-
"@babel/template" "^7.8.3"
|
218
|
-
"@babel/types" "^7.8.3"
|
267
|
+
"@babel/parser@^7.12.7", "@babel/parser@^7.4.4":
|
268
|
+
version "7.12.7"
|
269
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
|
270
|
+
integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
|
219
271
|
|
220
|
-
"@babel/
|
221
|
-
version "7.
|
222
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
223
|
-
integrity sha512-
|
272
|
+
"@babel/plugin-proposal-async-generator-functions@^7.12.1":
|
273
|
+
version "7.12.1"
|
274
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e"
|
275
|
+
integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==
|
224
276
|
dependencies:
|
225
|
-
"@babel/
|
226
|
-
|
227
|
-
"@babel/
|
228
|
-
version "7.9.5"
|
229
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
|
230
|
-
integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==
|
277
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
278
|
+
"@babel/helper-remap-async-to-generator" "^7.12.1"
|
279
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
231
280
|
|
232
|
-
"@babel/
|
233
|
-
version "7.
|
234
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
235
|
-
integrity sha512-
|
281
|
+
"@babel/plugin-proposal-class-properties@^7.12.1":
|
282
|
+
version "7.12.1"
|
283
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
|
284
|
+
integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
|
236
285
|
dependencies:
|
237
|
-
"@babel/helper-
|
238
|
-
"@babel/
|
239
|
-
"@babel/traverse" "^7.8.3"
|
240
|
-
"@babel/types" "^7.8.3"
|
286
|
+
"@babel/helper-create-class-features-plugin" "^7.12.1"
|
287
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
241
288
|
|
242
|
-
"@babel/
|
243
|
-
version "7.
|
244
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
245
|
-
integrity sha512-
|
289
|
+
"@babel/plugin-proposal-dynamic-import@^7.12.1":
|
290
|
+
version "7.12.1"
|
291
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"
|
292
|
+
integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
|
246
293
|
dependencies:
|
247
|
-
"@babel/
|
248
|
-
"@babel/
|
249
|
-
"@babel/types" "^7.9.6"
|
294
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
295
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
250
296
|
|
251
|
-
"@babel/
|
252
|
-
version "7.
|
253
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
254
|
-
integrity sha512-
|
297
|
+
"@babel/plugin-proposal-export-namespace-from@^7.12.1":
|
298
|
+
version "7.12.1"
|
299
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"
|
300
|
+
integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
|
255
301
|
dependencies:
|
256
|
-
"@babel/helper-
|
257
|
-
|
258
|
-
js-tokens "^4.0.0"
|
302
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
303
|
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
259
304
|
|
260
|
-
"@babel/
|
261
|
-
version "7.
|
262
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
263
|
-
integrity sha512-
|
264
|
-
|
265
|
-
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
|
266
|
-
version "7.8.3"
|
267
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
|
268
|
-
integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
|
305
|
+
"@babel/plugin-proposal-json-strings@^7.12.1":
|
306
|
+
version "7.12.1"
|
307
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c"
|
308
|
+
integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
|
269
309
|
dependencies:
|
270
|
-
"@babel/helper-plugin-utils" "^7.
|
271
|
-
"@babel/
|
272
|
-
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
273
|
-
|
274
|
-
"@babel/plugin-proposal-dynamic-import@^7.8.3":
|
275
|
-
version "7.8.3"
|
276
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
|
277
|
-
integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
|
278
|
-
dependencies:
|
279
|
-
"@babel/helper-plugin-utils" "^7.8.3"
|
280
|
-
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
310
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
311
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
281
312
|
|
282
|
-
"@babel/plugin-proposal-
|
283
|
-
version "7.
|
284
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
285
|
-
integrity sha512-
|
313
|
+
"@babel/plugin-proposal-logical-assignment-operators@^7.12.1":
|
314
|
+
version "7.12.1"
|
315
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751"
|
316
|
+
integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
|
286
317
|
dependencies:
|
287
|
-
"@babel/helper-plugin-utils" "^7.
|
288
|
-
"@babel/plugin-syntax-
|
318
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
319
|
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
289
320
|
|
290
|
-
"@babel/plugin-proposal-nullish-coalescing-operator@^7.
|
291
|
-
version "7.
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.
|
293
|
-
integrity sha512-
|
321
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1":
|
322
|
+
version "7.12.1"
|
323
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
|
324
|
+
integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
|
294
325
|
dependencies:
|
295
|
-
"@babel/helper-plugin-utils" "^7.
|
326
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
296
327
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
297
328
|
|
298
|
-
"@babel/plugin-proposal-numeric-separator@^7.
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.
|
301
|
-
integrity sha512-
|
329
|
+
"@babel/plugin-proposal-numeric-separator@^7.12.7":
|
330
|
+
version "7.12.7"
|
331
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
|
332
|
+
integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
|
302
333
|
dependencies:
|
303
|
-
"@babel/helper-plugin-utils" "^7.
|
304
|
-
"@babel/plugin-syntax-numeric-separator" "^7.
|
334
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
335
|
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
305
336
|
|
306
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
307
|
-
version "7.
|
308
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
309
|
-
integrity sha512-
|
337
|
+
"@babel/plugin-proposal-object-rest-spread@^7.12.1":
|
338
|
+
version "7.12.1"
|
339
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
|
340
|
+
integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
|
310
341
|
dependencies:
|
311
|
-
"@babel/helper-plugin-utils" "^7.
|
342
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
312
343
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
313
|
-
"@babel/plugin-transform-parameters" "^7.
|
344
|
+
"@babel/plugin-transform-parameters" "^7.12.1"
|
314
345
|
|
315
|
-
"@babel/plugin-proposal-optional-catch-binding@^7.
|
316
|
-
version "7.
|
317
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.
|
318
|
-
integrity sha512-
|
346
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.12.1":
|
347
|
+
version "7.12.1"
|
348
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942"
|
349
|
+
integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
|
319
350
|
dependencies:
|
320
|
-
"@babel/helper-plugin-utils" "^7.
|
351
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
321
352
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
322
353
|
|
323
|
-
"@babel/plugin-proposal-optional-chaining@^7.
|
324
|
-
version "7.
|
325
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.
|
326
|
-
integrity sha512-
|
354
|
+
"@babel/plugin-proposal-optional-chaining@^7.12.7":
|
355
|
+
version "7.12.7"
|
356
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
|
357
|
+
integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
|
327
358
|
dependencies:
|
328
|
-
"@babel/helper-plugin-utils" "^7.
|
359
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
360
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
329
361
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
330
362
|
|
331
|
-
"@babel/plugin-proposal-
|
332
|
-
version "7.
|
333
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
334
|
-
integrity sha512-
|
363
|
+
"@babel/plugin-proposal-private-methods@^7.12.1":
|
364
|
+
version "7.12.1"
|
365
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389"
|
366
|
+
integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
|
335
367
|
dependencies:
|
336
|
-
"@babel/helper-create-
|
337
|
-
"@babel/helper-plugin-utils" "^7.
|
368
|
+
"@babel/helper-create-class-features-plugin" "^7.12.1"
|
369
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
370
|
+
|
371
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
|
372
|
+
version "7.12.1"
|
373
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072"
|
374
|
+
integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
|
375
|
+
dependencies:
|
376
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
377
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
338
378
|
|
339
379
|
"@babel/plugin-syntax-async-generators@^7.8.0":
|
340
380
|
version "7.8.4"
|
@@ -343,6 +383,13 @@
|
|
343
383
|
dependencies:
|
344
384
|
"@babel/helper-plugin-utils" "^7.8.0"
|
345
385
|
|
386
|
+
"@babel/plugin-syntax-class-properties@^7.12.1":
|
387
|
+
version "7.12.1"
|
388
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978"
|
389
|
+
integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
|
390
|
+
dependencies:
|
391
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
392
|
+
|
346
393
|
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
347
394
|
version "7.8.3"
|
348
395
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
@@ -350,13 +397,20 @@
|
|
350
397
|
dependencies:
|
351
398
|
"@babel/helper-plugin-utils" "^7.8.0"
|
352
399
|
|
353
|
-
"@babel/plugin-syntax-
|
400
|
+
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
|
354
401
|
version "7.8.3"
|
355
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
356
|
-
integrity sha512-
|
402
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
|
403
|
+
integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
|
357
404
|
dependencies:
|
358
405
|
"@babel/helper-plugin-utils" "^7.8.3"
|
359
406
|
|
407
|
+
"@babel/plugin-syntax-flow@^7.12.1":
|
408
|
+
version "7.12.1"
|
409
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz#a77670d9abe6d63e8acadf4c31bb1eb5a506bbdd"
|
410
|
+
integrity sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==
|
411
|
+
dependencies:
|
412
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
413
|
+
|
360
414
|
"@babel/plugin-syntax-json-strings@^7.8.0":
|
361
415
|
version "7.8.3"
|
362
416
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
@@ -364,12 +418,19 @@
|
|
364
418
|
dependencies:
|
365
419
|
"@babel/helper-plugin-utils" "^7.8.0"
|
366
420
|
|
367
|
-
"@babel/plugin-syntax-jsx@^7.
|
368
|
-
version "7.
|
369
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.
|
370
|
-
integrity sha512-
|
421
|
+
"@babel/plugin-syntax-jsx@^7.12.1":
|
422
|
+
version "7.12.1"
|
423
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
|
424
|
+
integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
|
371
425
|
dependencies:
|
372
|
-
"@babel/helper-plugin-utils" "^7.
|
426
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
427
|
+
|
428
|
+
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
|
429
|
+
version "7.10.4"
|
430
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
|
431
|
+
integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
|
432
|
+
dependencies:
|
433
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
373
434
|
|
374
435
|
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
375
436
|
version "7.8.3"
|
@@ -378,12 +439,12 @@
|
|
378
439
|
dependencies:
|
379
440
|
"@babel/helper-plugin-utils" "^7.8.0"
|
380
441
|
|
381
|
-
"@babel/plugin-syntax-numeric-separator@^7.
|
382
|
-
version "7.
|
383
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.
|
384
|
-
integrity sha512-
|
442
|
+
"@babel/plugin-syntax-numeric-separator@^7.10.4":
|
443
|
+
version "7.10.4"
|
444
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
|
445
|
+
integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
|
385
446
|
dependencies:
|
386
|
-
"@babel/helper-plugin-utils" "^7.
|
447
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
387
448
|
|
388
449
|
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
389
450
|
version "7.8.3"
|
@@ -406,345 +467,356 @@
|
|
406
467
|
dependencies:
|
407
468
|
"@babel/helper-plugin-utils" "^7.8.0"
|
408
469
|
|
409
|
-
"@babel/plugin-syntax-top-level-await@^7.
|
410
|
-
version "7.
|
411
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.
|
412
|
-
integrity sha512-
|
470
|
+
"@babel/plugin-syntax-top-level-await@^7.12.1":
|
471
|
+
version "7.12.1"
|
472
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0"
|
473
|
+
integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
|
413
474
|
dependencies:
|
414
|
-
"@babel/helper-plugin-utils" "^7.
|
475
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
415
476
|
|
416
|
-
"@babel/plugin-transform-arrow-functions@^7.
|
417
|
-
version "7.
|
418
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
419
|
-
integrity sha512-
|
477
|
+
"@babel/plugin-transform-arrow-functions@^7.12.1":
|
478
|
+
version "7.12.1"
|
479
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"
|
480
|
+
integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
|
420
481
|
dependencies:
|
421
|
-
"@babel/helper-plugin-utils" "^7.
|
482
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
422
483
|
|
423
|
-
"@babel/plugin-transform-async-to-generator@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
426
|
-
integrity sha512-
|
484
|
+
"@babel/plugin-transform-async-to-generator@^7.12.1":
|
485
|
+
version "7.12.1"
|
486
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1"
|
487
|
+
integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
|
427
488
|
dependencies:
|
428
|
-
"@babel/helper-module-imports" "^7.
|
429
|
-
"@babel/helper-plugin-utils" "^7.
|
430
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
489
|
+
"@babel/helper-module-imports" "^7.12.1"
|
490
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
491
|
+
"@babel/helper-remap-async-to-generator" "^7.12.1"
|
431
492
|
|
432
|
-
"@babel/plugin-transform-block-scoped-functions@^7.
|
433
|
-
version "7.
|
434
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
435
|
-
integrity sha512-
|
493
|
+
"@babel/plugin-transform-block-scoped-functions@^7.12.1":
|
494
|
+
version "7.12.1"
|
495
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"
|
496
|
+
integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
|
436
497
|
dependencies:
|
437
|
-
"@babel/helper-plugin-utils" "^7.
|
498
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
438
499
|
|
439
|
-
"@babel/plugin-transform-block-scoping@^7.
|
440
|
-
version "7.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
442
|
-
integrity sha512-
|
500
|
+
"@babel/plugin-transform-block-scoping@^7.12.1":
|
501
|
+
version "7.12.1"
|
502
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1"
|
503
|
+
integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==
|
443
504
|
dependencies:
|
444
|
-
"@babel/helper-plugin-utils" "^7.
|
445
|
-
lodash "^4.17.13"
|
505
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
446
506
|
|
447
|
-
"@babel/plugin-transform-classes@^7.
|
448
|
-
version "7.
|
449
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
450
|
-
integrity sha512
|
507
|
+
"@babel/plugin-transform-classes@^7.12.1":
|
508
|
+
version "7.12.1"
|
509
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6"
|
510
|
+
integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
|
451
511
|
dependencies:
|
452
|
-
"@babel/helper-annotate-as-pure" "^7.
|
453
|
-
"@babel/helper-define-map" "^7.
|
454
|
-
"@babel/helper-function-name" "^7.
|
455
|
-
"@babel/helper-optimise-call-expression" "^7.
|
456
|
-
"@babel/helper-plugin-utils" "^7.
|
457
|
-
"@babel/helper-replace-supers" "^7.
|
458
|
-
"@babel/helper-split-export-declaration" "^7.
|
512
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
513
|
+
"@babel/helper-define-map" "^7.10.4"
|
514
|
+
"@babel/helper-function-name" "^7.10.4"
|
515
|
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
516
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
517
|
+
"@babel/helper-replace-supers" "^7.12.1"
|
518
|
+
"@babel/helper-split-export-declaration" "^7.10.4"
|
459
519
|
globals "^11.1.0"
|
460
520
|
|
461
|
-
"@babel/plugin-transform-computed-properties@^7.
|
462
|
-
version "7.
|
463
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
464
|
-
integrity sha512-
|
521
|
+
"@babel/plugin-transform-computed-properties@^7.12.1":
|
522
|
+
version "7.12.1"
|
523
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852"
|
524
|
+
integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
|
465
525
|
dependencies:
|
466
|
-
"@babel/helper-plugin-utils" "^7.
|
526
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
467
527
|
|
468
|
-
"@babel/plugin-transform-destructuring@^7.
|
469
|
-
version "7.
|
470
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
471
|
-
integrity sha512-
|
528
|
+
"@babel/plugin-transform-destructuring@^7.12.1":
|
529
|
+
version "7.12.1"
|
530
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847"
|
531
|
+
integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
|
472
532
|
dependencies:
|
473
|
-
"@babel/helper-plugin-utils" "^7.
|
533
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
474
534
|
|
475
|
-
"@babel/plugin-transform-dotall-regex@^7.
|
476
|
-
version "7.
|
477
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
478
|
-
integrity sha512-
|
535
|
+
"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4":
|
536
|
+
version "7.12.1"
|
537
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975"
|
538
|
+
integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
|
479
539
|
dependencies:
|
480
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
481
|
-
"@babel/helper-plugin-utils" "^7.
|
540
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
541
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
482
542
|
|
483
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
484
|
-
version "7.
|
485
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
486
|
-
integrity sha512-
|
543
|
+
"@babel/plugin-transform-duplicate-keys@^7.12.1":
|
544
|
+
version "7.12.1"
|
545
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228"
|
546
|
+
integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
|
487
547
|
dependencies:
|
488
|
-
"@babel/helper-plugin-utils" "^7.
|
548
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
489
549
|
|
490
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
491
|
-
version "7.
|
492
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
493
|
-
integrity sha512-
|
550
|
+
"@babel/plugin-transform-exponentiation-operator@^7.12.1":
|
551
|
+
version "7.12.1"
|
552
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"
|
553
|
+
integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
|
494
554
|
dependencies:
|
495
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
496
|
-
"@babel/helper-plugin-utils" "^7.
|
555
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
|
556
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
497
557
|
|
498
558
|
"@babel/plugin-transform-flow-strip-types@^7.4.4":
|
499
|
-
version "7.
|
500
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.
|
501
|
-
integrity sha512-
|
559
|
+
version "7.12.1"
|
560
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz#8430decfa7eb2aea5414ed4a3fa6e1652b7d77c4"
|
561
|
+
integrity sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
|
502
562
|
dependencies:
|
503
|
-
"@babel/helper-plugin-utils" "^7.
|
504
|
-
"@babel/plugin-syntax-flow" "^7.
|
563
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
564
|
+
"@babel/plugin-syntax-flow" "^7.12.1"
|
505
565
|
|
506
|
-
"@babel/plugin-transform-for-of@^7.
|
507
|
-
version "7.
|
508
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
509
|
-
integrity sha512-
|
566
|
+
"@babel/plugin-transform-for-of@^7.12.1":
|
567
|
+
version "7.12.1"
|
568
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
|
569
|
+
integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
|
510
570
|
dependencies:
|
511
|
-
"@babel/helper-plugin-utils" "^7.
|
571
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
512
572
|
|
513
|
-
"@babel/plugin-transform-function-name@^7.
|
514
|
-
version "7.
|
515
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
516
|
-
integrity sha512-
|
573
|
+
"@babel/plugin-transform-function-name@^7.12.1":
|
574
|
+
version "7.12.1"
|
575
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667"
|
576
|
+
integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
|
517
577
|
dependencies:
|
518
|
-
"@babel/helper-function-name" "^7.
|
519
|
-
"@babel/helper-plugin-utils" "^7.
|
578
|
+
"@babel/helper-function-name" "^7.10.4"
|
579
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
520
580
|
|
521
|
-
"@babel/plugin-transform-literals@^7.
|
522
|
-
version "7.
|
523
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
524
|
-
integrity sha512
|
581
|
+
"@babel/plugin-transform-literals@^7.12.1":
|
582
|
+
version "7.12.1"
|
583
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"
|
584
|
+
integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
|
525
585
|
dependencies:
|
526
|
-
"@babel/helper-plugin-utils" "^7.
|
586
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
527
587
|
|
528
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
529
|
-
version "7.
|
530
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
531
|
-
integrity sha512-
|
588
|
+
"@babel/plugin-transform-member-expression-literals@^7.12.1":
|
589
|
+
version "7.12.1"
|
590
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad"
|
591
|
+
integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
|
532
592
|
dependencies:
|
533
|
-
"@babel/helper-plugin-utils" "^7.
|
593
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
534
594
|
|
535
|
-
"@babel/plugin-transform-modules-amd@^7.
|
536
|
-
version "7.
|
537
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
538
|
-
integrity sha512-
|
595
|
+
"@babel/plugin-transform-modules-amd@^7.12.1":
|
596
|
+
version "7.12.1"
|
597
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9"
|
598
|
+
integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
|
539
599
|
dependencies:
|
540
|
-
"@babel/helper-module-transforms" "^7.
|
541
|
-
"@babel/helper-plugin-utils" "^7.
|
600
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
601
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
542
602
|
babel-plugin-dynamic-import-node "^2.3.3"
|
543
603
|
|
544
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
545
|
-
version "7.
|
546
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
547
|
-
integrity sha512-
|
604
|
+
"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.4.4":
|
605
|
+
version "7.12.1"
|
606
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648"
|
607
|
+
integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
|
548
608
|
dependencies:
|
549
|
-
"@babel/helper-module-transforms" "^7.
|
550
|
-
"@babel/helper-plugin-utils" "^7.
|
551
|
-
"@babel/helper-simple-access" "^7.
|
609
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
610
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
611
|
+
"@babel/helper-simple-access" "^7.12.1"
|
552
612
|
babel-plugin-dynamic-import-node "^2.3.3"
|
553
613
|
|
554
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
555
|
-
version "7.
|
556
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
557
|
-
integrity sha512-
|
614
|
+
"@babel/plugin-transform-modules-systemjs@^7.12.1":
|
615
|
+
version "7.12.1"
|
616
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086"
|
617
|
+
integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
|
558
618
|
dependencies:
|
559
|
-
"@babel/helper-hoist-variables" "^7.
|
560
|
-
"@babel/helper-module-transforms" "^7.
|
561
|
-
"@babel/helper-plugin-utils" "^7.
|
619
|
+
"@babel/helper-hoist-variables" "^7.10.4"
|
620
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
621
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
622
|
+
"@babel/helper-validator-identifier" "^7.10.4"
|
562
623
|
babel-plugin-dynamic-import-node "^2.3.3"
|
563
624
|
|
564
|
-
"@babel/plugin-transform-modules-umd@^7.
|
565
|
-
version "7.
|
566
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
567
|
-
integrity sha512-
|
625
|
+
"@babel/plugin-transform-modules-umd@^7.12.1":
|
626
|
+
version "7.12.1"
|
627
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"
|
628
|
+
integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
|
568
629
|
dependencies:
|
569
|
-
"@babel/helper-module-transforms" "^7.
|
570
|
-
"@babel/helper-plugin-utils" "^7.
|
630
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
631
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
571
632
|
|
572
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
573
|
-
version "7.
|
574
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
575
|
-
integrity sha512-
|
633
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1":
|
634
|
+
version "7.12.1"
|
635
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753"
|
636
|
+
integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
|
576
637
|
dependencies:
|
577
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
638
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
578
639
|
|
579
|
-
"@babel/plugin-transform-new-target@^7.
|
580
|
-
version "7.
|
581
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
582
|
-
integrity sha512
|
640
|
+
"@babel/plugin-transform-new-target@^7.12.1":
|
641
|
+
version "7.12.1"
|
642
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0"
|
643
|
+
integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
|
583
644
|
dependencies:
|
584
|
-
"@babel/helper-plugin-utils" "^7.
|
645
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
585
646
|
|
586
|
-
"@babel/plugin-transform-object-super@^7.
|
587
|
-
version "7.
|
588
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
589
|
-
integrity sha512-
|
647
|
+
"@babel/plugin-transform-object-super@^7.12.1":
|
648
|
+
version "7.12.1"
|
649
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e"
|
650
|
+
integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==
|
590
651
|
dependencies:
|
591
|
-
"@babel/helper-plugin-utils" "^7.
|
592
|
-
"@babel/helper-replace-supers" "^7.
|
652
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
653
|
+
"@babel/helper-replace-supers" "^7.12.1"
|
593
654
|
|
594
|
-
"@babel/plugin-transform-parameters@^7.
|
595
|
-
version "7.
|
596
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
597
|
-
integrity sha512-
|
655
|
+
"@babel/plugin-transform-parameters@^7.12.1":
|
656
|
+
version "7.12.1"
|
657
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
|
658
|
+
integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
|
598
659
|
dependencies:
|
599
|
-
"@babel/helper-
|
600
|
-
"@babel/helper-plugin-utils" "^7.8.3"
|
660
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
601
661
|
|
602
|
-
"@babel/plugin-transform-property-literals@^7.
|
603
|
-
version "7.
|
604
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
605
|
-
integrity sha512-
|
662
|
+
"@babel/plugin-transform-property-literals@^7.12.1":
|
663
|
+
version "7.12.1"
|
664
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd"
|
665
|
+
integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
|
606
666
|
dependencies:
|
607
|
-
"@babel/helper-plugin-utils" "^7.
|
667
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
608
668
|
|
609
669
|
"@babel/plugin-transform-react-jsx@^7.0.0":
|
610
|
-
version "7.
|
611
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.
|
612
|
-
integrity sha512-
|
670
|
+
version "7.12.7"
|
671
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz#8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f"
|
672
|
+
integrity sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==
|
613
673
|
dependencies:
|
614
|
-
"@babel/helper-builder-react-jsx" "^7.
|
615
|
-
"@babel/helper-builder-react-jsx-experimental" "^7.
|
616
|
-
"@babel/helper-plugin-utils" "^7.
|
617
|
-
"@babel/plugin-syntax-jsx" "^7.
|
674
|
+
"@babel/helper-builder-react-jsx" "^7.10.4"
|
675
|
+
"@babel/helper-builder-react-jsx-experimental" "^7.12.4"
|
676
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
677
|
+
"@babel/plugin-syntax-jsx" "^7.12.1"
|
618
678
|
|
619
|
-
"@babel/plugin-transform-regenerator@^7.
|
620
|
-
version "7.
|
621
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
622
|
-
integrity sha512-
|
679
|
+
"@babel/plugin-transform-regenerator@^7.12.1":
|
680
|
+
version "7.12.1"
|
681
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
|
682
|
+
integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
|
623
683
|
dependencies:
|
624
684
|
regenerator-transform "^0.14.2"
|
625
685
|
|
626
|
-
"@babel/plugin-transform-reserved-words@^7.
|
627
|
-
version "7.
|
628
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
629
|
-
integrity sha512-
|
686
|
+
"@babel/plugin-transform-reserved-words@^7.12.1":
|
687
|
+
version "7.12.1"
|
688
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"
|
689
|
+
integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
|
630
690
|
dependencies:
|
631
|
-
"@babel/helper-plugin-utils" "^7.
|
691
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
632
692
|
|
633
|
-
"@babel/plugin-transform-shorthand-properties@^7.
|
634
|
-
version "7.
|
635
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
636
|
-
integrity sha512-
|
693
|
+
"@babel/plugin-transform-shorthand-properties@^7.12.1":
|
694
|
+
version "7.12.1"
|
695
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3"
|
696
|
+
integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
|
637
697
|
dependencies:
|
638
|
-
"@babel/helper-plugin-utils" "^7.
|
698
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
639
699
|
|
640
|
-
"@babel/plugin-transform-spread@^7.
|
641
|
-
version "7.
|
642
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
643
|
-
integrity sha512-
|
700
|
+
"@babel/plugin-transform-spread@^7.12.1":
|
701
|
+
version "7.12.1"
|
702
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"
|
703
|
+
integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
|
644
704
|
dependencies:
|
645
|
-
"@babel/helper-plugin-utils" "^7.
|
705
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
706
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
646
707
|
|
647
|
-
"@babel/plugin-transform-sticky-regex@^7.
|
648
|
-
version "7.
|
649
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
650
|
-
integrity sha512-
|
708
|
+
"@babel/plugin-transform-sticky-regex@^7.12.7":
|
709
|
+
version "7.12.7"
|
710
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
|
711
|
+
integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
|
651
712
|
dependencies:
|
652
|
-
"@babel/helper-plugin-utils" "^7.
|
653
|
-
"@babel/helper-regex" "^7.8.3"
|
713
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
654
714
|
|
655
|
-
"@babel/plugin-transform-template-literals@^7.
|
656
|
-
version "7.
|
657
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
658
|
-
integrity sha512-
|
715
|
+
"@babel/plugin-transform-template-literals@^7.12.1":
|
716
|
+
version "7.12.1"
|
717
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843"
|
718
|
+
integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
|
659
719
|
dependencies:
|
660
|
-
"@babel/helper-
|
661
|
-
"@babel/helper-plugin-utils" "^7.8.3"
|
720
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
662
721
|
|
663
|
-
"@babel/plugin-transform-typeof-symbol@^7.
|
664
|
-
version "7.
|
665
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
666
|
-
integrity sha512-
|
722
|
+
"@babel/plugin-transform-typeof-symbol@^7.12.1":
|
723
|
+
version "7.12.1"
|
724
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a"
|
725
|
+
integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==
|
667
726
|
dependencies:
|
668
|
-
"@babel/helper-plugin-utils" "^7.
|
727
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
669
728
|
|
670
|
-
"@babel/plugin-transform-unicode-
|
671
|
-
version "7.
|
672
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-
|
673
|
-
integrity sha512
|
729
|
+
"@babel/plugin-transform-unicode-escapes@^7.12.1":
|
730
|
+
version "7.12.1"
|
731
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709"
|
732
|
+
integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
|
674
733
|
dependencies:
|
675
|
-
"@babel/helper-
|
676
|
-
"@babel/helper-plugin-utils" "^7.8.3"
|
734
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
677
735
|
|
678
|
-
"@babel/
|
679
|
-
version "7.
|
680
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
681
|
-
integrity sha512-
|
736
|
+
"@babel/plugin-transform-unicode-regex@^7.12.1":
|
737
|
+
version "7.12.1"
|
738
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb"
|
739
|
+
integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
|
682
740
|
dependencies:
|
683
|
-
"@babel/
|
684
|
-
"@babel/helper-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
"@babel/
|
692
|
-
"@babel/
|
693
|
-
"@babel/
|
694
|
-
"@babel/plugin-
|
695
|
-
"@babel/
|
741
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
742
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
743
|
+
|
744
|
+
"@babel/preset-env@^7.4.4":
|
745
|
+
version "7.12.7"
|
746
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55"
|
747
|
+
integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==
|
748
|
+
dependencies:
|
749
|
+
"@babel/compat-data" "^7.12.7"
|
750
|
+
"@babel/helper-compilation-targets" "^7.12.5"
|
751
|
+
"@babel/helper-module-imports" "^7.12.5"
|
752
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
753
|
+
"@babel/helper-validator-option" "^7.12.1"
|
754
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.12.1"
|
755
|
+
"@babel/plugin-proposal-class-properties" "^7.12.1"
|
756
|
+
"@babel/plugin-proposal-dynamic-import" "^7.12.1"
|
757
|
+
"@babel/plugin-proposal-export-namespace-from" "^7.12.1"
|
758
|
+
"@babel/plugin-proposal-json-strings" "^7.12.1"
|
759
|
+
"@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
|
760
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
|
761
|
+
"@babel/plugin-proposal-numeric-separator" "^7.12.7"
|
762
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.12.1"
|
763
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
|
764
|
+
"@babel/plugin-proposal-optional-chaining" "^7.12.7"
|
765
|
+
"@babel/plugin-proposal-private-methods" "^7.12.1"
|
766
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
|
696
767
|
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
768
|
+
"@babel/plugin-syntax-class-properties" "^7.12.1"
|
697
769
|
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
770
|
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
698
771
|
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
772
|
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
699
773
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
700
|
-
"@babel/plugin-syntax-numeric-separator" "^7.
|
774
|
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
701
775
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
702
776
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
703
777
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
704
|
-
"@babel/plugin-syntax-top-level-await" "^7.
|
705
|
-
"@babel/plugin-transform-arrow-functions" "^7.
|
706
|
-
"@babel/plugin-transform-async-to-generator" "^7.
|
707
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.
|
708
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
709
|
-
"@babel/plugin-transform-classes" "^7.
|
710
|
-
"@babel/plugin-transform-computed-properties" "^7.
|
711
|
-
"@babel/plugin-transform-destructuring" "^7.
|
712
|
-
"@babel/plugin-transform-dotall-regex" "^7.
|
713
|
-
"@babel/plugin-transform-duplicate-keys" "^7.
|
714
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.
|
715
|
-
"@babel/plugin-transform-for-of" "^7.
|
716
|
-
"@babel/plugin-transform-function-name" "^7.
|
717
|
-
"@babel/plugin-transform-literals" "^7.
|
718
|
-
"@babel/plugin-transform-member-expression-literals" "^7.
|
719
|
-
"@babel/plugin-transform-modules-amd" "^7.
|
720
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
721
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
722
|
-
"@babel/plugin-transform-modules-umd" "^7.
|
723
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.
|
724
|
-
"@babel/plugin-transform-new-target" "^7.
|
725
|
-
"@babel/plugin-transform-object-super" "^7.
|
726
|
-
"@babel/plugin-transform-parameters" "^7.
|
727
|
-
"@babel/plugin-transform-property-literals" "^7.
|
728
|
-
"@babel/plugin-transform-regenerator" "^7.
|
729
|
-
"@babel/plugin-transform-reserved-words" "^7.
|
730
|
-
"@babel/plugin-transform-shorthand-properties" "^7.
|
731
|
-
"@babel/plugin-transform-spread" "^7.
|
732
|
-
"@babel/plugin-transform-sticky-regex" "^7.
|
733
|
-
"@babel/plugin-transform-template-literals" "^7.
|
734
|
-
"@babel/plugin-transform-typeof-symbol" "^7.
|
735
|
-
"@babel/plugin-transform-unicode-
|
778
|
+
"@babel/plugin-syntax-top-level-await" "^7.12.1"
|
779
|
+
"@babel/plugin-transform-arrow-functions" "^7.12.1"
|
780
|
+
"@babel/plugin-transform-async-to-generator" "^7.12.1"
|
781
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.12.1"
|
782
|
+
"@babel/plugin-transform-block-scoping" "^7.12.1"
|
783
|
+
"@babel/plugin-transform-classes" "^7.12.1"
|
784
|
+
"@babel/plugin-transform-computed-properties" "^7.12.1"
|
785
|
+
"@babel/plugin-transform-destructuring" "^7.12.1"
|
786
|
+
"@babel/plugin-transform-dotall-regex" "^7.12.1"
|
787
|
+
"@babel/plugin-transform-duplicate-keys" "^7.12.1"
|
788
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.12.1"
|
789
|
+
"@babel/plugin-transform-for-of" "^7.12.1"
|
790
|
+
"@babel/plugin-transform-function-name" "^7.12.1"
|
791
|
+
"@babel/plugin-transform-literals" "^7.12.1"
|
792
|
+
"@babel/plugin-transform-member-expression-literals" "^7.12.1"
|
793
|
+
"@babel/plugin-transform-modules-amd" "^7.12.1"
|
794
|
+
"@babel/plugin-transform-modules-commonjs" "^7.12.1"
|
795
|
+
"@babel/plugin-transform-modules-systemjs" "^7.12.1"
|
796
|
+
"@babel/plugin-transform-modules-umd" "^7.12.1"
|
797
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
|
798
|
+
"@babel/plugin-transform-new-target" "^7.12.1"
|
799
|
+
"@babel/plugin-transform-object-super" "^7.12.1"
|
800
|
+
"@babel/plugin-transform-parameters" "^7.12.1"
|
801
|
+
"@babel/plugin-transform-property-literals" "^7.12.1"
|
802
|
+
"@babel/plugin-transform-regenerator" "^7.12.1"
|
803
|
+
"@babel/plugin-transform-reserved-words" "^7.12.1"
|
804
|
+
"@babel/plugin-transform-shorthand-properties" "^7.12.1"
|
805
|
+
"@babel/plugin-transform-spread" "^7.12.1"
|
806
|
+
"@babel/plugin-transform-sticky-regex" "^7.12.7"
|
807
|
+
"@babel/plugin-transform-template-literals" "^7.12.1"
|
808
|
+
"@babel/plugin-transform-typeof-symbol" "^7.12.1"
|
809
|
+
"@babel/plugin-transform-unicode-escapes" "^7.12.1"
|
810
|
+
"@babel/plugin-transform-unicode-regex" "^7.12.1"
|
736
811
|
"@babel/preset-modules" "^0.1.3"
|
737
|
-
"@babel/types" "^7.
|
738
|
-
|
739
|
-
core-js-compat "^3.6.2"
|
740
|
-
invariant "^2.2.2"
|
741
|
-
levenary "^1.1.1"
|
812
|
+
"@babel/types" "^7.12.7"
|
813
|
+
core-js-compat "^3.7.0"
|
742
814
|
semver "^5.5.0"
|
743
815
|
|
744
816
|
"@babel/preset-modules@^0.1.3":
|
745
|
-
version "0.1.
|
746
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.
|
747
|
-
integrity sha512-
|
817
|
+
version "0.1.4"
|
818
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
|
819
|
+
integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
|
748
820
|
dependencies:
|
749
821
|
"@babel/helper-plugin-utils" "^7.0.0"
|
750
822
|
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
@@ -753,52 +825,52 @@
|
|
753
825
|
esutils "^2.0.2"
|
754
826
|
|
755
827
|
"@babel/runtime@^7.4.4", "@babel/runtime@^7.8.4":
|
756
|
-
version "7.
|
757
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
758
|
-
integrity sha512-
|
828
|
+
version "7.12.5"
|
829
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
|
830
|
+
integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
|
759
831
|
dependencies:
|
760
832
|
regenerator-runtime "^0.13.4"
|
761
833
|
|
762
|
-
"@babel/template@^7.
|
763
|
-
version "7.
|
764
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.
|
765
|
-
integrity sha512-
|
766
|
-
dependencies:
|
767
|
-
"@babel/code-frame" "^7.
|
768
|
-
"@babel/parser" "^7.
|
769
|
-
"@babel/types" "^7.
|
770
|
-
|
771
|
-
"@babel/traverse@^7.
|
772
|
-
version "7.9
|
773
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.
|
774
|
-
integrity sha512-
|
775
|
-
dependencies:
|
776
|
-
"@babel/code-frame" "^7.
|
777
|
-
"@babel/generator" "^7.
|
778
|
-
"@babel/helper-function-name" "^7.
|
779
|
-
"@babel/helper-split-export-declaration" "^7.
|
780
|
-
"@babel/parser" "^7.
|
781
|
-
"@babel/types" "^7.
|
834
|
+
"@babel/template@^7.10.4", "@babel/template@^7.12.7", "@babel/template@^7.4.4":
|
835
|
+
version "7.12.7"
|
836
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
|
837
|
+
integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
|
838
|
+
dependencies:
|
839
|
+
"@babel/code-frame" "^7.10.4"
|
840
|
+
"@babel/parser" "^7.12.7"
|
841
|
+
"@babel/types" "^7.12.7"
|
842
|
+
|
843
|
+
"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9", "@babel/traverse@^7.4.4":
|
844
|
+
version "7.12.9"
|
845
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f"
|
846
|
+
integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==
|
847
|
+
dependencies:
|
848
|
+
"@babel/code-frame" "^7.10.4"
|
849
|
+
"@babel/generator" "^7.12.5"
|
850
|
+
"@babel/helper-function-name" "^7.10.4"
|
851
|
+
"@babel/helper-split-export-declaration" "^7.11.0"
|
852
|
+
"@babel/parser" "^7.12.7"
|
853
|
+
"@babel/types" "^7.12.7"
|
782
854
|
debug "^4.1.0"
|
783
855
|
globals "^11.1.0"
|
784
|
-
lodash "^4.17.
|
856
|
+
lodash "^4.17.19"
|
785
857
|
|
786
|
-
"@babel/types@^7.
|
787
|
-
version "7.
|
788
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
789
|
-
integrity sha512-
|
858
|
+
"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4":
|
859
|
+
version "7.12.7"
|
860
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13"
|
861
|
+
integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==
|
790
862
|
dependencies:
|
791
|
-
"@babel/helper-validator-identifier" "^7.
|
792
|
-
lodash "^4.17.
|
863
|
+
"@babel/helper-validator-identifier" "^7.10.4"
|
864
|
+
lodash "^4.17.19"
|
793
865
|
to-fast-properties "^2.0.0"
|
794
866
|
|
795
867
|
"@fullhuman/postcss-purgecss@^2.1.2":
|
796
|
-
version "2.
|
797
|
-
resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.
|
798
|
-
integrity sha512-
|
868
|
+
version "2.3.0"
|
869
|
+
resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.3.0.tgz#50a954757ec78696615d3e118e3fee2d9291882e"
|
870
|
+
integrity sha512-qnKm5dIOyPGJ70kPZ5jiz0I9foVOic0j+cOzNDoo8KoCf6HjicIZ99UfO2OmE7vCYSKAAepEwJtNzpiiZAh9xw==
|
799
871
|
dependencies:
|
800
|
-
postcss "7.0.
|
801
|
-
purgecss "^2.
|
872
|
+
postcss "7.0.32"
|
873
|
+
purgecss "^2.3.0"
|
802
874
|
|
803
875
|
"@iarna/toml@^2.2.0":
|
804
876
|
version "2.2.5"
|
@@ -864,34 +936,29 @@
|
|
864
936
|
resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.3.tgz#e68a03278e30daea6a110aac5dfa33c60c53055d"
|
865
937
|
integrity sha512-CM9OEvoN9eXkaX7PXEnbsQLULJ97b9rVmwliZbz/iBOERLJ68Rk3ClJe+fQEMKU4CBZfky2lIRnfslOdUs9SLQ==
|
866
938
|
|
867
|
-
"@stimulus/core@^
|
868
|
-
version "
|
869
|
-
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-
|
870
|
-
integrity sha512-
|
939
|
+
"@stimulus/core@^2.0.0":
|
940
|
+
version "2.0.0"
|
941
|
+
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-2.0.0.tgz#140c85318d6a8a8210c0faf182223b8459348877"
|
942
|
+
integrity sha512-ff70GafKtzc8zQ1/cG+UvL06GcifPWovf2wBEdjLMh9xO2GOYURO3y2RYgzIGYUIBefQwyfX2CLfJdZFJrEPTw==
|
871
943
|
dependencies:
|
872
|
-
"@stimulus/mutation-observers" "^
|
944
|
+
"@stimulus/mutation-observers" "^2.0.0"
|
873
945
|
|
874
|
-
"@stimulus/multimap@^
|
875
|
-
version "
|
876
|
-
resolved "https://registry.yarnpkg.com/@stimulus/multimap/-/multimap-
|
877
|
-
integrity sha512-
|
946
|
+
"@stimulus/multimap@^2.0.0":
|
947
|
+
version "2.0.0"
|
948
|
+
resolved "https://registry.yarnpkg.com/@stimulus/multimap/-/multimap-2.0.0.tgz#420cfa096ed6538df4a91dbd2b2842c1779952b2"
|
949
|
+
integrity sha512-pMBCewkZCFVB3e5mEMoyO9+9aKzHDITmf3OnPun51YWxlcPdHcwbjqm1ylK63fsoduIE+RowBpFwFqd3poEz4w==
|
878
950
|
|
879
|
-
"@stimulus/mutation-observers@^
|
880
|
-
version "
|
881
|
-
resolved "https://registry.yarnpkg.com/@stimulus/mutation-observers/-/mutation-observers-
|
882
|
-
integrity sha512
|
951
|
+
"@stimulus/mutation-observers@^2.0.0":
|
952
|
+
version "2.0.0"
|
953
|
+
resolved "https://registry.yarnpkg.com/@stimulus/mutation-observers/-/mutation-observers-2.0.0.tgz#3dbe37453bda47a6c795a90204ee8d77a799fb87"
|
954
|
+
integrity sha512-kx4VAJdPhIGBQKGIoUDC2tupEKorG3A+ckc2b1UiwInKTMAC1axOHU8ebcwhaJIxRqIrs8//4SJo9YAAOx6FEg==
|
883
955
|
dependencies:
|
884
|
-
"@stimulus/multimap" "^
|
885
|
-
|
886
|
-
"@stimulus/webpack-helpers@^1.1.1":
|
887
|
-
version "1.1.1"
|
888
|
-
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-1.1.1.tgz#eff60cd4e58b921d1a2764dc5215f5141510f2c2"
|
889
|
-
integrity sha512-XOkqSw53N9072FLHvpLM25PIwy+ndkSSbnTtjKuyzsv8K5yfkFB2rv68jU1pzqYa9FZLcvZWP4yazC0V38dx9A==
|
956
|
+
"@stimulus/multimap" "^2.0.0"
|
890
957
|
|
891
|
-
"@
|
892
|
-
version "
|
893
|
-
resolved "https://registry.yarnpkg.com/@
|
894
|
-
integrity sha512-
|
958
|
+
"@stimulus/webpack-helpers@^2.0.0":
|
959
|
+
version "2.0.0"
|
960
|
+
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-2.0.0.tgz#54296d2a2dffd4f962d2e802d99a3fdd84b8845f"
|
961
|
+
integrity sha512-D6tJWsAC024MwGEIKlUVYU8Ln87mlrmiwHvYAjipg+s8H4eLxUMQ3PZkWyPevfipH+oR3leuHsjYsK1gN5ViQA==
|
895
962
|
|
896
963
|
"@types/q@^1.5.1":
|
897
964
|
version "1.5.4"
|
@@ -899,9 +966,9 @@
|
|
899
966
|
integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
|
900
967
|
|
901
968
|
abab@^2.0.0:
|
902
|
-
version "2.0.
|
903
|
-
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.
|
904
|
-
integrity sha512-
|
969
|
+
version "2.0.5"
|
970
|
+
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
|
971
|
+
integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
|
905
972
|
|
906
973
|
acorn-globals@^4.3.0:
|
907
974
|
version "4.3.4"
|
@@ -926,24 +993,24 @@ acorn-walk@^6.0.1:
|
|
926
993
|
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
927
994
|
|
928
995
|
acorn-walk@^7.0.0:
|
929
|
-
version "7.
|
930
|
-
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.
|
931
|
-
integrity sha512-
|
996
|
+
version "7.2.0"
|
997
|
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
|
998
|
+
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
|
932
999
|
|
933
1000
|
acorn@^6.0.1, acorn@^6.0.4:
|
934
|
-
version "6.4.
|
935
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.
|
936
|
-
integrity sha512-
|
1001
|
+
version "6.4.2"
|
1002
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
|
1003
|
+
integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
|
937
1004
|
|
938
1005
|
acorn@^7.0.0, acorn@^7.1.1:
|
939
|
-
version "7.
|
940
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.
|
941
|
-
integrity sha512-
|
1006
|
+
version "7.4.1"
|
1007
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
1008
|
+
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
942
1009
|
|
943
|
-
ajv@^6.
|
944
|
-
version "6.12.
|
945
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.
|
946
|
-
integrity sha512-
|
1010
|
+
ajv@^6.12.3:
|
1011
|
+
version "6.12.6"
|
1012
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
|
1013
|
+
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
|
947
1014
|
dependencies:
|
948
1015
|
fast-deep-equal "^3.1.1"
|
949
1016
|
fast-json-stable-stringify "^2.0.0"
|
@@ -965,17 +1032,12 @@ ansi-regex@^3.0.0:
|
|
965
1032
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
966
1033
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
967
1034
|
|
968
|
-
ansi-regex@^4.1.0:
|
969
|
-
version "4.1.0"
|
970
|
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
971
|
-
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
972
|
-
|
973
1035
|
ansi-styles@^2.2.1:
|
974
1036
|
version "2.2.1"
|
975
1037
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
976
1038
|
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
|
977
1039
|
|
978
|
-
ansi-styles@^3.2.
|
1040
|
+
ansi-styles@^3.2.1:
|
979
1041
|
version "3.2.1"
|
980
1042
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
981
1043
|
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
@@ -983,11 +1045,10 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
983
1045
|
color-convert "^1.9.0"
|
984
1046
|
|
985
1047
|
ansi-styles@^4.1.0:
|
986
|
-
version "4.
|
987
|
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.
|
988
|
-
integrity sha512-
|
1048
|
+
version "4.3.0"
|
1049
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
1050
|
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
989
1051
|
dependencies:
|
990
|
-
"@types/color-name" "^1.1.1"
|
991
1052
|
color-convert "^2.0.1"
|
992
1053
|
|
993
1054
|
ansi-to-html@^0.6.4:
|
@@ -1037,14 +1098,15 @@ array-unique@^0.3.2:
|
|
1037
1098
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
1038
1099
|
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
1039
1100
|
|
1040
|
-
asn1.js@^
|
1041
|
-
version "4.
|
1042
|
-
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.
|
1043
|
-
integrity sha512
|
1101
|
+
asn1.js@^5.2.0:
|
1102
|
+
version "5.4.1"
|
1103
|
+
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
|
1104
|
+
integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
|
1044
1105
|
dependencies:
|
1045
1106
|
bn.js "^4.0.0"
|
1046
1107
|
inherits "^2.0.1"
|
1047
1108
|
minimalistic-assert "^1.0.0"
|
1109
|
+
safer-buffer "^2.1.0"
|
1048
1110
|
|
1049
1111
|
asn1@~0.2.3:
|
1050
1112
|
version "0.2.4"
|
@@ -1092,16 +1154,16 @@ atob@^2.1.2:
|
|
1092
1154
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1093
1155
|
|
1094
1156
|
autoprefixer@^9.4.5:
|
1095
|
-
version "9.8.
|
1096
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.
|
1097
|
-
integrity sha512-
|
1157
|
+
version "9.8.6"
|
1158
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
|
1159
|
+
integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
|
1098
1160
|
dependencies:
|
1099
1161
|
browserslist "^4.12.0"
|
1100
|
-
caniuse-lite "^1.0.
|
1101
|
-
|
1162
|
+
caniuse-lite "^1.0.30001109"
|
1163
|
+
colorette "^1.2.1"
|
1102
1164
|
normalize-range "^0.1.2"
|
1103
1165
|
num2fraction "^1.2.2"
|
1104
|
-
postcss "^7.0.
|
1166
|
+
postcss "^7.0.32"
|
1105
1167
|
postcss-value-parser "^4.1.0"
|
1106
1168
|
|
1107
1169
|
aws-sign2@~0.7.0:
|
@@ -1110,9 +1172,9 @@ aws-sign2@~0.7.0:
|
|
1110
1172
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
1111
1173
|
|
1112
1174
|
aws4@^1.8.0:
|
1113
|
-
version "1.
|
1114
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
1115
|
-
integrity sha512-
|
1175
|
+
version "1.11.0"
|
1176
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
|
1177
|
+
integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
|
1116
1178
|
|
1117
1179
|
babel-plugin-dynamic-import-node@^2.3.3:
|
1118
1180
|
version "2.3.3"
|
@@ -1154,9 +1216,9 @@ balanced-match@^1.0.0:
|
|
1154
1216
|
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
|
1155
1217
|
|
1156
1218
|
base64-js@^1.0.2:
|
1157
|
-
version "1.
|
1158
|
-
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.
|
1159
|
-
integrity sha512-
|
1219
|
+
version "1.5.1"
|
1220
|
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
|
1221
|
+
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
|
1160
1222
|
|
1161
1223
|
base@^0.11.1:
|
1162
1224
|
version "0.11.2"
|
@@ -1195,10 +1257,10 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
|
|
1195
1257
|
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
|
1196
1258
|
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
1197
1259
|
|
1198
|
-
bn.js@^5.1.1:
|
1199
|
-
version "5.1.
|
1200
|
-
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.
|
1201
|
-
integrity sha512-
|
1260
|
+
bn.js@^5.0.0, bn.js@^5.1.1:
|
1261
|
+
version "5.1.3"
|
1262
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b"
|
1263
|
+
integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==
|
1202
1264
|
|
1203
1265
|
boolbase@^1.0.0, boolbase@~1.0.0:
|
1204
1266
|
version "1.0.0"
|
@@ -1281,23 +1343,23 @@ browserify-des@^1.0.0:
|
|
1281
1343
|
safe-buffer "^5.1.2"
|
1282
1344
|
|
1283
1345
|
browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
|
1284
|
-
version "4.0
|
1285
|
-
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.
|
1286
|
-
integrity
|
1346
|
+
version "4.1.0"
|
1347
|
+
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
|
1348
|
+
integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
|
1287
1349
|
dependencies:
|
1288
|
-
bn.js "^
|
1350
|
+
bn.js "^5.0.0"
|
1289
1351
|
randombytes "^2.0.1"
|
1290
1352
|
|
1291
1353
|
browserify-sign@^4.0.0:
|
1292
|
-
version "4.2.
|
1293
|
-
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.
|
1294
|
-
integrity sha512
|
1354
|
+
version "4.2.1"
|
1355
|
+
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
|
1356
|
+
integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
|
1295
1357
|
dependencies:
|
1296
1358
|
bn.js "^5.1.1"
|
1297
1359
|
browserify-rsa "^4.0.1"
|
1298
1360
|
create-hash "^1.2.0"
|
1299
1361
|
create-hmac "^1.1.7"
|
1300
|
-
elliptic "^6.5.
|
1362
|
+
elliptic "^6.5.3"
|
1301
1363
|
inherits "^2.0.4"
|
1302
1364
|
parse-asn1 "^5.1.5"
|
1303
1365
|
readable-stream "^3.6.0"
|
@@ -1310,15 +1372,16 @@ browserify-zlib@^0.2.0:
|
|
1310
1372
|
dependencies:
|
1311
1373
|
pako "~1.0.5"
|
1312
1374
|
|
1313
|
-
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.
|
1314
|
-
version "4.
|
1315
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1316
|
-
integrity sha512-
|
1375
|
+
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.14.7:
|
1376
|
+
version "4.15.0"
|
1377
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.15.0.tgz#3d48bbca6a3f378e86102ffd017d9a03f122bdb0"
|
1378
|
+
integrity sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ==
|
1317
1379
|
dependencies:
|
1318
|
-
caniuse-lite "^1.0.
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1380
|
+
caniuse-lite "^1.0.30001164"
|
1381
|
+
colorette "^1.2.1"
|
1382
|
+
electron-to-chromium "^1.3.612"
|
1383
|
+
escalade "^3.1.1"
|
1384
|
+
node-releases "^1.1.67"
|
1322
1385
|
|
1323
1386
|
buffer-equal@0.0.1:
|
1324
1387
|
version "0.0.1"
|
@@ -1369,6 +1432,14 @@ cache-base@^1.0.1:
|
|
1369
1432
|
union-value "^1.0.0"
|
1370
1433
|
unset-value "^1.0.0"
|
1371
1434
|
|
1435
|
+
call-bind@^1.0.0:
|
1436
|
+
version "1.0.0"
|
1437
|
+
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce"
|
1438
|
+
integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==
|
1439
|
+
dependencies:
|
1440
|
+
function-bind "^1.1.1"
|
1441
|
+
get-intrinsic "^1.0.0"
|
1442
|
+
|
1372
1443
|
call-me-maybe@^1.0.1:
|
1373
1444
|
version "1.0.1"
|
1374
1445
|
resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
|
@@ -1398,11 +1469,6 @@ camelcase-css@^2.0.1:
|
|
1398
1469
|
resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
|
1399
1470
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
1400
1471
|
|
1401
|
-
camelcase@^5.0.0:
|
1402
|
-
version "5.3.1"
|
1403
|
-
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1404
|
-
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
1405
|
-
|
1406
1472
|
caniuse-api@^3.0.0:
|
1407
1473
|
version "3.0.0"
|
1408
1474
|
resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
|
@@ -1413,10 +1479,10 @@ caniuse-api@^3.0.0:
|
|
1413
1479
|
lodash.memoize "^4.1.2"
|
1414
1480
|
lodash.uniq "^4.5.0"
|
1415
1481
|
|
1416
|
-
caniuse-lite@^1.0.0, caniuse-lite@^1.0.
|
1417
|
-
version "1.0.
|
1418
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1419
|
-
integrity sha512-
|
1482
|
+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001164:
|
1483
|
+
version "1.0.30001165"
|
1484
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001165.tgz#32955490d2f60290bb186bb754f2981917fa744f"
|
1485
|
+
integrity sha512-8cEsSMwXfx7lWSUMA2s08z9dIgsnR5NAqjXP23stdsU3AUWkCr/rr4s4OFtHXn5XXr6+7kam3QFVoYyXNPdJPA==
|
1420
1486
|
|
1421
1487
|
caseless@~0.12.0:
|
1422
1488
|
version "0.12.0"
|
@@ -1443,10 +1509,10 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4
|
|
1443
1509
|
escape-string-regexp "^1.0.5"
|
1444
1510
|
supports-color "^5.3.0"
|
1445
1511
|
|
1446
|
-
chalk@^4.0.0:
|
1447
|
-
version "4.
|
1448
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.
|
1449
|
-
integrity sha512-
|
1512
|
+
"chalk@^3.0.0 || ^4.0.0":
|
1513
|
+
version "4.1.0"
|
1514
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
|
1515
|
+
integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
|
1450
1516
|
dependencies:
|
1451
1517
|
ansi-styles "^4.1.0"
|
1452
1518
|
supports-color "^7.1.0"
|
@@ -1500,15 +1566,6 @@ cli-spinners@^1.1.0:
|
|
1500
1566
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a"
|
1501
1567
|
integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
|
1502
1568
|
|
1503
|
-
cliui@^5.0.0:
|
1504
|
-
version "5.0.0"
|
1505
|
-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
|
1506
|
-
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
|
1507
|
-
dependencies:
|
1508
|
-
string-width "^3.1.0"
|
1509
|
-
strip-ansi "^5.2.0"
|
1510
|
-
wrap-ansi "^5.1.0"
|
1511
|
-
|
1512
1569
|
clone@^1.0.2:
|
1513
1570
|
version "1.0.4"
|
1514
1571
|
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
|
@@ -1560,21 +1617,26 @@ color-name@^1.0.0, color-name@~1.1.4:
|
|
1560
1617
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1561
1618
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
1562
1619
|
|
1563
|
-
color-string@^1.5.
|
1564
|
-
version "1.5.
|
1565
|
-
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.
|
1566
|
-
integrity sha512-
|
1620
|
+
color-string@^1.5.4:
|
1621
|
+
version "1.5.4"
|
1622
|
+
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6"
|
1623
|
+
integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==
|
1567
1624
|
dependencies:
|
1568
1625
|
color-name "^1.0.0"
|
1569
1626
|
simple-swizzle "^0.2.2"
|
1570
1627
|
|
1571
1628
|
color@^3.0.0, color@^3.1.2:
|
1572
|
-
version "3.1.
|
1573
|
-
resolved "https://registry.yarnpkg.com/color/-/color-3.1.
|
1574
|
-
integrity sha512-
|
1629
|
+
version "3.1.3"
|
1630
|
+
resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e"
|
1631
|
+
integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==
|
1575
1632
|
dependencies:
|
1576
1633
|
color-convert "^1.9.1"
|
1577
|
-
color-string "^1.5.
|
1634
|
+
color-string "^1.5.4"
|
1635
|
+
|
1636
|
+
colorette@^1.2.1:
|
1637
|
+
version "1.2.1"
|
1638
|
+
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
|
1639
|
+
integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
|
1578
1640
|
|
1579
1641
|
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
1580
1642
|
version "1.0.8"
|
@@ -1640,18 +1702,18 @@ copy-descriptor@^0.1.0:
|
|
1640
1702
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1641
1703
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1642
1704
|
|
1643
|
-
core-js-compat@^3.
|
1644
|
-
version "3.
|
1645
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1646
|
-
integrity sha512-
|
1705
|
+
core-js-compat@^3.7.0:
|
1706
|
+
version "3.8.0"
|
1707
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.0.tgz#3248c6826f4006793bd637db608bca6e4cd688b1"
|
1708
|
+
integrity sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==
|
1647
1709
|
dependencies:
|
1648
|
-
browserslist "^4.
|
1710
|
+
browserslist "^4.14.7"
|
1649
1711
|
semver "7.0.0"
|
1650
1712
|
|
1651
1713
|
core-js@^2.4.0, core-js@^2.6.5:
|
1652
|
-
version "2.6.
|
1653
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.
|
1654
|
-
integrity sha512-
|
1714
|
+
version "2.6.12"
|
1715
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
|
1716
|
+
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
|
1655
1717
|
|
1656
1718
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1657
1719
|
version "1.0.2"
|
@@ -1669,12 +1731,12 @@ cosmiconfig@^5.0.0:
|
|
1669
1731
|
parse-json "^4.0.0"
|
1670
1732
|
|
1671
1733
|
create-ecdh@^4.0.0:
|
1672
|
-
version "4.0.
|
1673
|
-
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.
|
1674
|
-
integrity sha512-
|
1734
|
+
version "4.0.4"
|
1735
|
+
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
|
1736
|
+
integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
|
1675
1737
|
dependencies:
|
1676
1738
|
bn.js "^4.1.0"
|
1677
|
-
elliptic "^6.
|
1739
|
+
elliptic "^6.5.3"
|
1678
1740
|
|
1679
1741
|
create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
|
1680
1742
|
version "1.2.0"
|
@@ -1768,13 +1830,12 @@ css-select@^2.0.0:
|
|
1768
1830
|
nth-check "^1.0.2"
|
1769
1831
|
|
1770
1832
|
css-selector-tokenizer@^0.7.0:
|
1771
|
-
version "0.7.
|
1772
|
-
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.
|
1773
|
-
integrity sha512-
|
1833
|
+
version "0.7.3"
|
1834
|
+
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1"
|
1835
|
+
integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==
|
1774
1836
|
dependencies:
|
1775
1837
|
cssesc "^3.0.0"
|
1776
1838
|
fastparse "^1.1.2"
|
1777
|
-
regexpu-core "^4.6.0"
|
1778
1839
|
|
1779
1840
|
css-tree@1.0.0-alpha.37:
|
1780
1841
|
version "1.0.0-alpha.37"
|
@@ -1784,12 +1845,12 @@ css-tree@1.0.0-alpha.37:
|
|
1784
1845
|
mdn-data "2.0.4"
|
1785
1846
|
source-map "^0.6.1"
|
1786
1847
|
|
1787
|
-
css-tree
|
1788
|
-
version "1.
|
1789
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.
|
1790
|
-
integrity sha512-
|
1848
|
+
css-tree@^1.1.2:
|
1849
|
+
version "1.1.2"
|
1850
|
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.2.tgz#9ae393b5dafd7dae8a622475caec78d3d8fbd7b5"
|
1851
|
+
integrity sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==
|
1791
1852
|
dependencies:
|
1792
|
-
mdn-data "2.0.
|
1853
|
+
mdn-data "2.0.14"
|
1793
1854
|
source-map "^0.6.1"
|
1794
1855
|
|
1795
1856
|
css-unit-converter@^1.1.1:
|
@@ -1798,9 +1859,9 @@ css-unit-converter@^1.1.1:
|
|
1798
1859
|
integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==
|
1799
1860
|
|
1800
1861
|
css-what@^3.2.1:
|
1801
|
-
version "3.2
|
1802
|
-
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.
|
1803
|
-
integrity sha512-
|
1862
|
+
version "3.4.2"
|
1863
|
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
|
1864
|
+
integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
|
1804
1865
|
|
1805
1866
|
cssesc@^3.0.0:
|
1806
1867
|
version "3.0.0"
|
@@ -1876,11 +1937,11 @@ cssnano@^4.0.0, cssnano@^4.1.10:
|
|
1876
1937
|
postcss "^7.0.0"
|
1877
1938
|
|
1878
1939
|
csso@^4.0.2:
|
1879
|
-
version "4.0
|
1880
|
-
resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.
|
1881
|
-
integrity sha512-
|
1940
|
+
version "4.2.0"
|
1941
|
+
resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
|
1942
|
+
integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
|
1882
1943
|
dependencies:
|
1883
|
-
css-tree "1.
|
1944
|
+
css-tree "^1.1.2"
|
1884
1945
|
|
1885
1946
|
cssom@0.3.x, cssom@^0.3.4:
|
1886
1947
|
version "0.3.8"
|
@@ -1911,9 +1972,9 @@ data-urls@^1.1.0:
|
|
1911
1972
|
whatwg-url "^7.0.0"
|
1912
1973
|
|
1913
1974
|
deasync@^0.1.14:
|
1914
|
-
version "0.1.
|
1915
|
-
resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.
|
1916
|
-
integrity sha512-
|
1975
|
+
version "0.1.21"
|
1976
|
+
resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.21.tgz#bb11eabd4466c0d8776f0d82deb8a6126460d30f"
|
1977
|
+
integrity sha512-kUmM8Y+PZpMpQ+B4AuOW9k2Pfx/mSupJtxOsLzmnHY2WqZUYRFccFn2RhzPAqt3Xb+sorK/badW2D4zNzqZz5w==
|
1917
1978
|
dependencies:
|
1918
1979
|
bindings "^1.5.0"
|
1919
1980
|
node-addon-api "^1.7.1"
|
@@ -1926,16 +1987,11 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
|
|
1926
1987
|
ms "2.0.0"
|
1927
1988
|
|
1928
1989
|
debug@^4.1.0:
|
1929
|
-
version "4.
|
1930
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.
|
1931
|
-
integrity sha512-
|
1990
|
+
version "4.3.1"
|
1991
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
1992
|
+
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
1932
1993
|
dependencies:
|
1933
|
-
ms "
|
1934
|
-
|
1935
|
-
decamelize@^1.2.0:
|
1936
|
-
version "1.2.0"
|
1937
|
-
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1938
|
-
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
1994
|
+
ms "2.1.2"
|
1939
1995
|
|
1940
1996
|
decode-uri-component@^0.2.0:
|
1941
1997
|
version "0.2.0"
|
@@ -1954,7 +2010,7 @@ defaults@^1.0.3:
|
|
1954
2010
|
dependencies:
|
1955
2011
|
clone "^1.0.2"
|
1956
2012
|
|
1957
|
-
define-properties@^1.1.
|
2013
|
+
define-properties@^1.1.3:
|
1958
2014
|
version "1.1.3"
|
1959
2015
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
1960
2016
|
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
|
@@ -2048,9 +2104,9 @@ domelementtype@1, domelementtype@^1.3.1:
|
|
2048
2104
|
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
|
2049
2105
|
|
2050
2106
|
domelementtype@^2.0.1:
|
2051
|
-
version "2.0
|
2052
|
-
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.
|
2053
|
-
integrity sha512-
|
2107
|
+
version "2.1.0"
|
2108
|
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e"
|
2109
|
+
integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==
|
2054
2110
|
|
2055
2111
|
domexception@^1.0.1:
|
2056
2112
|
version "1.0.1"
|
@@ -2075,9 +2131,9 @@ domutils@^1.5.1, domutils@^1.7.0:
|
|
2075
2131
|
domelementtype "1"
|
2076
2132
|
|
2077
2133
|
dot-prop@^5.2.0:
|
2078
|
-
version "5.
|
2079
|
-
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.
|
2080
|
-
integrity sha512-
|
2134
|
+
version "5.3.0"
|
2135
|
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
|
2136
|
+
integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
|
2081
2137
|
dependencies:
|
2082
2138
|
is-obj "^2.0.0"
|
2083
2139
|
|
@@ -2111,15 +2167,15 @@ ee-first@1.1.1:
|
|
2111
2167
|
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
2112
2168
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
2113
2169
|
|
2114
|
-
electron-to-chromium@^1.3.
|
2115
|
-
version "1.3.
|
2116
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2117
|
-
integrity sha512-
|
2170
|
+
electron-to-chromium@^1.3.612:
|
2171
|
+
version "1.3.616"
|
2172
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.616.tgz#de63d1c79bb8eb61168774df0c11c9e1af69f9e8"
|
2173
|
+
integrity sha512-CI8L38UN2BEnqXw3/oRIQTmde0LiSeqWSRlPA42ZTYgJQ8fYenzAM2Z3ni+jtILTcrs5aiXZCGJ96Pm+3/yGyQ==
|
2118
2174
|
|
2119
|
-
elliptic@^6.
|
2120
|
-
version "6.5.
|
2121
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.
|
2122
|
-
integrity sha512-
|
2175
|
+
elliptic@^6.5.3:
|
2176
|
+
version "6.5.3"
|
2177
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
|
2178
|
+
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
|
2123
2179
|
dependencies:
|
2124
2180
|
bn.js "^4.4.0"
|
2125
2181
|
brorand "^1.0.1"
|
@@ -2129,11 +2185,6 @@ elliptic@^6.0.0, elliptic@^6.5.2:
|
|
2129
2185
|
minimalistic-assert "^1.0.0"
|
2130
2186
|
minimalistic-crypto-utils "^1.0.0"
|
2131
2187
|
|
2132
|
-
emoji-regex@^7.0.1:
|
2133
|
-
version "7.0.3"
|
2134
|
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
|
2135
|
-
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
|
2136
|
-
|
2137
2188
|
encodeurl@~1.0.2:
|
2138
2189
|
version "1.0.2"
|
2139
2190
|
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
@@ -2145,14 +2196,14 @@ entities@^1.1.1, entities@^1.1.2:
|
|
2145
2196
|
integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
|
2146
2197
|
|
2147
2198
|
entities@^2.0.0:
|
2148
|
-
version "2.0
|
2149
|
-
resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.
|
2150
|
-
integrity sha512-
|
2199
|
+
version "2.1.0"
|
2200
|
+
resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5"
|
2201
|
+
integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==
|
2151
2202
|
|
2152
2203
|
envinfo@^7.3.1:
|
2153
|
-
version "7.
|
2154
|
-
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.
|
2155
|
-
integrity sha512-
|
2204
|
+
version "7.7.3"
|
2205
|
+
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.7.3.tgz#4b2d8622e3e7366afb8091b23ed95569ea0208cc"
|
2206
|
+
integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA==
|
2156
2207
|
|
2157
2208
|
error-ex@^1.3.1:
|
2158
2209
|
version "1.3.2"
|
@@ -2161,22 +2212,40 @@ error-ex@^1.3.1:
|
|
2161
2212
|
dependencies:
|
2162
2213
|
is-arrayish "^0.2.1"
|
2163
2214
|
|
2164
|
-
es-abstract@^1.17.
|
2165
|
-
version "1.17.
|
2166
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.
|
2167
|
-
integrity sha512-
|
2215
|
+
es-abstract@^1.17.2:
|
2216
|
+
version "1.17.7"
|
2217
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c"
|
2218
|
+
integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==
|
2168
2219
|
dependencies:
|
2169
2220
|
es-to-primitive "^1.2.1"
|
2170
2221
|
function-bind "^1.1.1"
|
2171
2222
|
has "^1.0.3"
|
2172
2223
|
has-symbols "^1.0.1"
|
2173
|
-
is-callable "^1.
|
2174
|
-
is-regex "^1.
|
2175
|
-
object-inspect "^1.
|
2224
|
+
is-callable "^1.2.2"
|
2225
|
+
is-regex "^1.1.1"
|
2226
|
+
object-inspect "^1.8.0"
|
2176
2227
|
object-keys "^1.1.1"
|
2177
|
-
object.assign "^4.1.
|
2178
|
-
string.prototype.
|
2179
|
-
string.prototype.
|
2228
|
+
object.assign "^4.1.1"
|
2229
|
+
string.prototype.trimend "^1.0.1"
|
2230
|
+
string.prototype.trimstart "^1.0.1"
|
2231
|
+
|
2232
|
+
es-abstract@^1.18.0-next.1:
|
2233
|
+
version "1.18.0-next.1"
|
2234
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
|
2235
|
+
integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
|
2236
|
+
dependencies:
|
2237
|
+
es-to-primitive "^1.2.1"
|
2238
|
+
function-bind "^1.1.1"
|
2239
|
+
has "^1.0.3"
|
2240
|
+
has-symbols "^1.0.1"
|
2241
|
+
is-callable "^1.2.2"
|
2242
|
+
is-negative-zero "^2.0.0"
|
2243
|
+
is-regex "^1.1.1"
|
2244
|
+
object-inspect "^1.8.0"
|
2245
|
+
object-keys "^1.1.1"
|
2246
|
+
object.assign "^4.1.1"
|
2247
|
+
string.prototype.trimend "^1.0.1"
|
2248
|
+
string.prototype.trimstart "^1.0.1"
|
2180
2249
|
|
2181
2250
|
es-to-primitive@^1.2.1:
|
2182
2251
|
version "1.2.1"
|
@@ -2187,6 +2256,11 @@ es-to-primitive@^1.2.1:
|
|
2187
2256
|
is-date-object "^1.0.1"
|
2188
2257
|
is-symbol "^1.0.2"
|
2189
2258
|
|
2259
|
+
escalade@^3.1.1:
|
2260
|
+
version "3.1.1"
|
2261
|
+
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
|
2262
|
+
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
|
2263
|
+
|
2190
2264
|
escape-html@~1.0.3:
|
2191
2265
|
version "1.0.3"
|
2192
2266
|
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
@@ -2198,9 +2272,9 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
2198
2272
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
2199
2273
|
|
2200
2274
|
escodegen@^1.11.0, escodegen@^1.11.1:
|
2201
|
-
version "1.14.
|
2202
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.
|
2203
|
-
integrity sha512-
|
2275
|
+
version "1.14.3"
|
2276
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
|
2277
|
+
integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
|
2204
2278
|
dependencies:
|
2205
2279
|
esprima "^4.0.1"
|
2206
2280
|
estraverse "^4.2.0"
|
@@ -2247,9 +2321,9 @@ etag@~1.8.1:
|
|
2247
2321
|
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
|
2248
2322
|
|
2249
2323
|
events@^3.0.0:
|
2250
|
-
version "3.
|
2251
|
-
resolved "https://registry.yarnpkg.com/events/-/events-3.
|
2252
|
-
integrity sha512
|
2324
|
+
version "3.2.0"
|
2325
|
+
resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
|
2326
|
+
integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
|
2253
2327
|
|
2254
2328
|
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
2255
2329
|
version "1.0.3"
|
@@ -2327,9 +2401,9 @@ falafel@^2.1.0:
|
|
2327
2401
|
object-keys "^1.0.6"
|
2328
2402
|
|
2329
2403
|
fast-deep-equal@^3.1.1:
|
2330
|
-
version "3.1.
|
2331
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.
|
2332
|
-
integrity sha512-
|
2404
|
+
version "3.1.3"
|
2405
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
2406
|
+
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
2333
2407
|
|
2334
2408
|
fast-glob@^2.2.2:
|
2335
2409
|
version "2.2.7"
|
@@ -2378,20 +2452,6 @@ fill-range@^4.0.0:
|
|
2378
2452
|
repeat-string "^1.6.1"
|
2379
2453
|
to-regex-range "^2.1.0"
|
2380
2454
|
|
2381
|
-
find-up@^2.1.0:
|
2382
|
-
version "2.1.0"
|
2383
|
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
2384
|
-
integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
|
2385
|
-
dependencies:
|
2386
|
-
locate-path "^2.0.0"
|
2387
|
-
|
2388
|
-
find-up@^3.0.0:
|
2389
|
-
version "3.0.0"
|
2390
|
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
|
2391
|
-
integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
|
2392
|
-
dependencies:
|
2393
|
-
locate-path "^3.0.0"
|
2394
|
-
|
2395
2455
|
for-in@^1.0.2:
|
2396
2456
|
version "1.0.2"
|
2397
2457
|
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
@@ -2456,14 +2516,18 @@ function-bind@^1.1.1:
|
|
2456
2516
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
2457
2517
|
|
2458
2518
|
gensync@^1.0.0-beta.1:
|
2459
|
-
version "1.0.0-beta.
|
2460
|
-
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.
|
2461
|
-
integrity sha512-
|
2519
|
+
version "1.0.0-beta.2"
|
2520
|
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
|
2521
|
+
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
|
2462
2522
|
|
2463
|
-
get-
|
2464
|
-
version "
|
2465
|
-
resolved "https://registry.yarnpkg.com/get-
|
2466
|
-
integrity sha512-
|
2523
|
+
get-intrinsic@^1.0.0:
|
2524
|
+
version "1.0.1"
|
2525
|
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be"
|
2526
|
+
integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==
|
2527
|
+
dependencies:
|
2528
|
+
function-bind "^1.1.1"
|
2529
|
+
has "^1.0.3"
|
2530
|
+
has-symbols "^1.0.1"
|
2467
2531
|
|
2468
2532
|
get-port@^3.2.0:
|
2469
2533
|
version "3.2.0"
|
@@ -2531,11 +2595,11 @@ har-schema@^2.0.0:
|
|
2531
2595
|
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
|
2532
2596
|
|
2533
2597
|
har-validator@~5.1.3:
|
2534
|
-
version "5.1.
|
2535
|
-
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.
|
2536
|
-
integrity sha512-
|
2598
|
+
version "5.1.5"
|
2599
|
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
|
2600
|
+
integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
|
2537
2601
|
dependencies:
|
2538
|
-
ajv "^6.
|
2602
|
+
ajv "^6.12.3"
|
2539
2603
|
har-schema "^2.0.0"
|
2540
2604
|
|
2541
2605
|
has-ansi@^2.0.0:
|
@@ -2560,7 +2624,7 @@ has-flag@^4.0.0:
|
|
2560
2624
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
2561
2625
|
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
2562
2626
|
|
2563
|
-
has-symbols@^1.0.
|
2627
|
+
has-symbols@^1.0.1:
|
2564
2628
|
version "1.0.1"
|
2565
2629
|
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
2566
2630
|
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
@@ -2661,19 +2725,26 @@ html-tags@^1.0.0:
|
|
2661
2725
|
resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-1.2.0.tgz#c78de65b5663aa597989dd2b7ab49200d7e4db98"
|
2662
2726
|
integrity sha1-x43mW1Zjqll5id0rerSSANfk25g=
|
2663
2727
|
|
2728
|
+
html-tags@^3.1.0:
|
2729
|
+
version "3.1.0"
|
2730
|
+
resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
|
2731
|
+
integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
|
2732
|
+
|
2664
2733
|
htmlnano@^0.2.2:
|
2665
|
-
version "0.2.
|
2666
|
-
resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-0.2.
|
2667
|
-
integrity sha512-
|
2734
|
+
version "0.2.8"
|
2735
|
+
resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-0.2.8.tgz#d9c22daa18c8ea7675a0bf07cc904793ccaeb56f"
|
2736
|
+
integrity sha512-q5gbo4SIDAE5sfJ5V0UD6uu+n1dcO/Mpr0B6SlDlJBoV7xKPne4uG4UwrT8vUWjdjIPJl95TY8EDuEbBW2TG0A==
|
2668
2737
|
dependencies:
|
2669
2738
|
cssnano "^4.1.10"
|
2670
|
-
|
2671
|
-
posthtml "^
|
2672
|
-
|
2673
|
-
|
2739
|
+
posthtml "^0.13.4"
|
2740
|
+
posthtml-render "^1.3.0"
|
2741
|
+
purgecss "^2.3.0"
|
2742
|
+
relateurl "^0.2.7"
|
2743
|
+
srcset "^3.0.0"
|
2674
2744
|
svgo "^1.3.2"
|
2675
|
-
terser "^4.
|
2676
|
-
|
2745
|
+
terser "^4.8.0"
|
2746
|
+
timsort "^0.3.0"
|
2747
|
+
uncss "^0.17.3"
|
2677
2748
|
|
2678
2749
|
htmlparser2@^3.9.2:
|
2679
2750
|
version "3.10.1"
|
@@ -2725,9 +2796,9 @@ icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0:
|
|
2725
2796
|
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
|
2726
2797
|
|
2727
2798
|
ieee754@^1.1.4:
|
2728
|
-
version "1.1
|
2729
|
-
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.
|
2730
|
-
integrity sha512-
|
2799
|
+
version "1.2.1"
|
2800
|
+
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
|
2801
|
+
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
|
2731
2802
|
|
2732
2803
|
import-fresh@^2.0.0:
|
2733
2804
|
version "2.0.0"
|
@@ -2765,13 +2836,6 @@ inherits@2.0.3:
|
|
2765
2836
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
2766
2837
|
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
2767
2838
|
|
2768
|
-
invariant@^2.2.2, invariant@^2.2.4:
|
2769
|
-
version "2.2.4"
|
2770
|
-
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
2771
|
-
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
2772
|
-
dependencies:
|
2773
|
-
loose-envify "^1.0.0"
|
2774
|
-
|
2775
2839
|
is-absolute-url@^2.0.0:
|
2776
2840
|
version "2.1.0"
|
2777
2841
|
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
|
@@ -2818,10 +2882,10 @@ is-buffer@^1.1.5:
|
|
2818
2882
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
2819
2883
|
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
2820
2884
|
|
2821
|
-
is-callable@^1.1.4, is-callable@^1.
|
2822
|
-
version "1.
|
2823
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.
|
2824
|
-
integrity sha512-
|
2885
|
+
is-callable@^1.1.4, is-callable@^1.2.2:
|
2886
|
+
version "1.2.2"
|
2887
|
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
|
2888
|
+
integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
|
2825
2889
|
|
2826
2890
|
is-color-stop@^1.0.0:
|
2827
2891
|
version "1.1.0"
|
@@ -2835,6 +2899,13 @@ is-color-stop@^1.0.0:
|
|
2835
2899
|
rgb-regex "^1.0.1"
|
2836
2900
|
rgba-regex "^1.0.0"
|
2837
2901
|
|
2902
|
+
is-core-module@^2.1.0:
|
2903
|
+
version "2.2.0"
|
2904
|
+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
|
2905
|
+
integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
|
2906
|
+
dependencies:
|
2907
|
+
has "^1.0.3"
|
2908
|
+
|
2838
2909
|
is-data-descriptor@^0.1.4:
|
2839
2910
|
version "0.1.4"
|
2840
2911
|
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
@@ -2894,11 +2965,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
|
|
2894
2965
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
2895
2966
|
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
2896
2967
|
|
2897
|
-
is-fullwidth-code-point@^2.0.0:
|
2898
|
-
version "2.0.0"
|
2899
|
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
2900
|
-
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
2901
|
-
|
2902
2968
|
is-glob@^3.1.0:
|
2903
2969
|
version "3.1.0"
|
2904
2970
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
|
@@ -2920,6 +2986,11 @@ is-html@^1.1.0:
|
|
2920
2986
|
dependencies:
|
2921
2987
|
html-tags "^1.0.0"
|
2922
2988
|
|
2989
|
+
is-negative-zero@^2.0.0:
|
2990
|
+
version "2.0.1"
|
2991
|
+
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
|
2992
|
+
integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
|
2993
|
+
|
2923
2994
|
is-number@^3.0.0:
|
2924
2995
|
version "3.0.0"
|
2925
2996
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
|
@@ -2939,12 +3010,12 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
|
2939
3010
|
dependencies:
|
2940
3011
|
isobject "^3.0.1"
|
2941
3012
|
|
2942
|
-
is-regex@^1.
|
2943
|
-
version "1.
|
2944
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.
|
2945
|
-
integrity sha512-
|
3013
|
+
is-regex@^1.1.1:
|
3014
|
+
version "1.1.1"
|
3015
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
|
3016
|
+
integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
|
2946
3017
|
dependencies:
|
2947
|
-
has "^1.0.
|
3018
|
+
has-symbols "^1.0.1"
|
2948
3019
|
|
2949
3020
|
is-resolvable@^1.0.0:
|
2950
3021
|
version "1.1.0"
|
@@ -3017,7 +3088,7 @@ isstream@~0.1.2:
|
|
3017
3088
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
3018
3089
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
3019
3090
|
|
3020
|
-
|
3091
|
+
js-tokens@^4.0.0:
|
3021
3092
|
version "4.0.0"
|
3022
3093
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
3023
3094
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
@@ -3152,18 +3223,6 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
3152
3223
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
3153
3224
|
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
3154
3225
|
|
3155
|
-
leven@^3.1.0:
|
3156
|
-
version "3.1.0"
|
3157
|
-
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
3158
|
-
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
3159
|
-
|
3160
|
-
levenary@^1.1.1:
|
3161
|
-
version "1.1.1"
|
3162
|
-
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
|
3163
|
-
integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
|
3164
|
-
dependencies:
|
3165
|
-
leven "^3.1.0"
|
3166
|
-
|
3167
3226
|
levn@~0.3.0:
|
3168
3227
|
version "0.3.0"
|
3169
3228
|
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
@@ -3172,22 +3231,6 @@ levn@~0.3.0:
|
|
3172
3231
|
prelude-ls "~1.1.2"
|
3173
3232
|
type-check "~0.3.2"
|
3174
3233
|
|
3175
|
-
locate-path@^2.0.0:
|
3176
|
-
version "2.0.0"
|
3177
|
-
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
3178
|
-
integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
|
3179
|
-
dependencies:
|
3180
|
-
p-locate "^2.0.0"
|
3181
|
-
path-exists "^3.0.0"
|
3182
|
-
|
3183
|
-
locate-path@^3.0.0:
|
3184
|
-
version "3.0.0"
|
3185
|
-
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
|
3186
|
-
integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
|
3187
|
-
dependencies:
|
3188
|
-
p-locate "^3.0.0"
|
3189
|
-
path-exists "^3.0.0"
|
3190
|
-
|
3191
3234
|
lodash.clone@^4.5.0:
|
3192
3235
|
version "4.5.0"
|
3193
3236
|
resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6"
|
@@ -3213,10 +3256,10 @@ lodash.uniq@^4.5.0:
|
|
3213
3256
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
3214
3257
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
3215
3258
|
|
3216
|
-
lodash@^4.17.
|
3217
|
-
version "4.17.
|
3218
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
3219
|
-
integrity sha512-
|
3259
|
+
lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.4:
|
3260
|
+
version "4.17.20"
|
3261
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
3262
|
+
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
|
3220
3263
|
|
3221
3264
|
log-symbols@^2.2.0:
|
3222
3265
|
version "2.2.0"
|
@@ -3225,13 +3268,6 @@ log-symbols@^2.2.0:
|
|
3225
3268
|
dependencies:
|
3226
3269
|
chalk "^2.0.1"
|
3227
3270
|
|
3228
|
-
loose-envify@^1.0.0:
|
3229
|
-
version "1.4.0"
|
3230
|
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
3231
|
-
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
3232
|
-
dependencies:
|
3233
|
-
js-tokens "^3.0.0 || ^4.0.0"
|
3234
|
-
|
3235
3271
|
magic-string@^0.22.4:
|
3236
3272
|
version "0.22.5"
|
3237
3273
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
|
@@ -3260,16 +3296,16 @@ md5.js@^1.3.4:
|
|
3260
3296
|
inherits "^2.0.1"
|
3261
3297
|
safe-buffer "^5.1.2"
|
3262
3298
|
|
3299
|
+
mdn-data@2.0.14:
|
3300
|
+
version "2.0.14"
|
3301
|
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
|
3302
|
+
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
|
3303
|
+
|
3263
3304
|
mdn-data@2.0.4:
|
3264
3305
|
version "2.0.4"
|
3265
3306
|
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
|
3266
3307
|
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
|
3267
3308
|
|
3268
|
-
mdn-data@2.0.6:
|
3269
|
-
version "2.0.6"
|
3270
|
-
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978"
|
3271
|
-
integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==
|
3272
|
-
|
3273
3309
|
merge-source-map@1.0.4:
|
3274
3310
|
version "1.0.4"
|
3275
3311
|
resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.4.tgz#a5de46538dae84d4114cc5ea02b4772a6346701f"
|
@@ -3278,9 +3314,9 @@ merge-source-map@1.0.4:
|
|
3278
3314
|
source-map "^0.5.6"
|
3279
3315
|
|
3280
3316
|
merge2@^1.2.3:
|
3281
|
-
version "1.
|
3282
|
-
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.
|
3283
|
-
integrity sha512-
|
3317
|
+
version "1.4.1"
|
3318
|
+
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
3319
|
+
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
3284
3320
|
|
3285
3321
|
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
3286
3322
|
version "3.1.10"
|
@@ -3378,15 +3414,15 @@ ms@2.1.1:
|
|
3378
3414
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
|
3379
3415
|
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
|
3380
3416
|
|
3381
|
-
ms
|
3417
|
+
ms@2.1.2:
|
3382
3418
|
version "2.1.2"
|
3383
3419
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
3384
3420
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
3385
3421
|
|
3386
3422
|
nan@^2.12.1:
|
3387
|
-
version "2.14.
|
3388
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.
|
3389
|
-
integrity sha512-
|
3423
|
+
version "2.14.2"
|
3424
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19"
|
3425
|
+
integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==
|
3390
3426
|
|
3391
3427
|
nanomatch@^1.2.9:
|
3392
3428
|
version "1.2.13"
|
@@ -3411,9 +3447,9 @@ nice-try@^1.0.4:
|
|
3411
3447
|
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
|
3412
3448
|
|
3413
3449
|
node-addon-api@^1.7.1:
|
3414
|
-
version "1.7.
|
3415
|
-
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.
|
3416
|
-
integrity sha512-
|
3450
|
+
version "1.7.2"
|
3451
|
+
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d"
|
3452
|
+
integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==
|
3417
3453
|
|
3418
3454
|
node-emoji@^1.8.1:
|
3419
3455
|
version "1.10.0"
|
@@ -3456,15 +3492,10 @@ node-libs-browser@^2.0.0:
|
|
3456
3492
|
util "^0.11.0"
|
3457
3493
|
vm-browserify "^1.0.1"
|
3458
3494
|
|
3459
|
-
node-releases@^1.1.
|
3460
|
-
version "1.1.
|
3461
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
3462
|
-
integrity sha512-
|
3463
|
-
|
3464
|
-
normalize-html-whitespace@^1.0.0:
|
3465
|
-
version "1.0.0"
|
3466
|
-
resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34"
|
3467
|
-
integrity sha512-9ui7CGtOOlehQu0t/OhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC/bdQi/Hr3iTrpyRKIG+ocabA==
|
3495
|
+
node-releases@^1.1.67:
|
3496
|
+
version "1.1.67"
|
3497
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
|
3498
|
+
integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
|
3468
3499
|
|
3469
3500
|
normalize-path@^2.1.1:
|
3470
3501
|
version "2.1.1"
|
@@ -3529,17 +3560,22 @@ object-copy@^0.1.0:
|
|
3529
3560
|
define-property "^0.2.5"
|
3530
3561
|
kind-of "^3.0.3"
|
3531
3562
|
|
3532
|
-
object-
|
3533
|
-
version "
|
3534
|
-
resolved "https://registry.yarnpkg.com/object-
|
3535
|
-
integrity sha512-
|
3563
|
+
object-hash@^2.0.3:
|
3564
|
+
version "2.0.3"
|
3565
|
+
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.3.tgz#d12db044e03cd2ca3d77c0570d87225b02e1e6ea"
|
3566
|
+
integrity sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg==
|
3567
|
+
|
3568
|
+
object-inspect@^1.8.0:
|
3569
|
+
version "1.9.0"
|
3570
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
|
3571
|
+
integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
|
3536
3572
|
|
3537
3573
|
object-inspect@~1.4.0:
|
3538
3574
|
version "1.4.1"
|
3539
3575
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4"
|
3540
3576
|
integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==
|
3541
3577
|
|
3542
|
-
object-keys@^1.0.
|
3578
|
+
object-keys@^1.0.12, object-keys@^1.0.6, object-keys@^1.1.1:
|
3543
3579
|
version "1.1.1"
|
3544
3580
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
3545
3581
|
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
@@ -3551,23 +3587,24 @@ object-visit@^1.0.0:
|
|
3551
3587
|
dependencies:
|
3552
3588
|
isobject "^3.0.0"
|
3553
3589
|
|
3554
|
-
object.assign@^4.1.0:
|
3555
|
-
version "4.1.
|
3556
|
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.
|
3557
|
-
integrity sha512-
|
3590
|
+
object.assign@^4.1.0, object.assign@^4.1.1:
|
3591
|
+
version "4.1.2"
|
3592
|
+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
|
3593
|
+
integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
|
3558
3594
|
dependencies:
|
3559
|
-
|
3560
|
-
|
3561
|
-
has-symbols "^1.0.
|
3562
|
-
object-keys "^1.
|
3595
|
+
call-bind "^1.0.0"
|
3596
|
+
define-properties "^1.1.3"
|
3597
|
+
has-symbols "^1.0.1"
|
3598
|
+
object-keys "^1.1.1"
|
3563
3599
|
|
3564
3600
|
object.getownpropertydescriptors@^2.1.0:
|
3565
|
-
version "2.1.
|
3566
|
-
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.
|
3567
|
-
integrity sha512-
|
3601
|
+
version "2.1.1"
|
3602
|
+
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544"
|
3603
|
+
integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==
|
3568
3604
|
dependencies:
|
3605
|
+
call-bind "^1.0.0"
|
3569
3606
|
define-properties "^1.1.3"
|
3570
|
-
es-abstract "^1.
|
3607
|
+
es-abstract "^1.18.0-next.1"
|
3571
3608
|
|
3572
3609
|
object.pick@^1.3.0:
|
3573
3610
|
version "1.3.0"
|
@@ -3577,13 +3614,13 @@ object.pick@^1.3.0:
|
|
3577
3614
|
isobject "^3.0.1"
|
3578
3615
|
|
3579
3616
|
object.values@^1.1.0:
|
3580
|
-
version "1.1.
|
3581
|
-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.
|
3582
|
-
integrity sha512-
|
3617
|
+
version "1.1.2"
|
3618
|
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731"
|
3619
|
+
integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==
|
3583
3620
|
dependencies:
|
3621
|
+
call-bind "^1.0.0"
|
3584
3622
|
define-properties "^1.1.3"
|
3585
|
-
es-abstract "^1.
|
3586
|
-
function-bind "^1.1.1"
|
3623
|
+
es-abstract "^1.18.0-next.1"
|
3587
3624
|
has "^1.0.3"
|
3588
3625
|
|
3589
3626
|
on-finished@~2.3.0:
|
@@ -3643,44 +3680,6 @@ os-browserify@^0.3.0:
|
|
3643
3680
|
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
|
3644
3681
|
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
|
3645
3682
|
|
3646
|
-
p-limit@^1.1.0:
|
3647
|
-
version "1.3.0"
|
3648
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
|
3649
|
-
integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
|
3650
|
-
dependencies:
|
3651
|
-
p-try "^1.0.0"
|
3652
|
-
|
3653
|
-
p-limit@^2.0.0:
|
3654
|
-
version "2.3.0"
|
3655
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
3656
|
-
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
3657
|
-
dependencies:
|
3658
|
-
p-try "^2.0.0"
|
3659
|
-
|
3660
|
-
p-locate@^2.0.0:
|
3661
|
-
version "2.0.0"
|
3662
|
-
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
3663
|
-
integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
|
3664
|
-
dependencies:
|
3665
|
-
p-limit "^1.1.0"
|
3666
|
-
|
3667
|
-
p-locate@^3.0.0:
|
3668
|
-
version "3.0.0"
|
3669
|
-
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
|
3670
|
-
integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
|
3671
|
-
dependencies:
|
3672
|
-
p-limit "^2.0.0"
|
3673
|
-
|
3674
|
-
p-try@^1.0.0:
|
3675
|
-
version "1.0.0"
|
3676
|
-
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
3677
|
-
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
|
3678
|
-
|
3679
|
-
p-try@^2.0.0:
|
3680
|
-
version "2.2.0"
|
3681
|
-
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
3682
|
-
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
3683
|
-
|
3684
3683
|
pako@^0.2.5:
|
3685
3684
|
version "0.2.9"
|
3686
3685
|
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
@@ -3757,13 +3756,12 @@ parcel-bundler@^1.12.3:
|
|
3757
3756
|
ws "^5.1.1"
|
3758
3757
|
|
3759
3758
|
parse-asn1@^5.0.0, parse-asn1@^5.1.5:
|
3760
|
-
version "5.1.
|
3761
|
-
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.
|
3762
|
-
integrity sha512-
|
3759
|
+
version "5.1.6"
|
3760
|
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
|
3761
|
+
integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
|
3763
3762
|
dependencies:
|
3764
|
-
asn1.js "^
|
3763
|
+
asn1.js "^5.2.0"
|
3765
3764
|
browserify-aes "^1.0.0"
|
3766
|
-
create-hash "^1.1.0"
|
3767
3765
|
evp_bytestokey "^1.0.0"
|
3768
3766
|
pbkdf2 "^3.0.3"
|
3769
3767
|
safe-buffer "^5.1.1"
|
@@ -3801,11 +3799,6 @@ path-dirname@^1.0.0:
|
|
3801
3799
|
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
|
3802
3800
|
integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
|
3803
3801
|
|
3804
|
-
path-exists@^3.0.0:
|
3805
|
-
version "3.0.0"
|
3806
|
-
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
3807
|
-
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
|
3808
|
-
|
3809
3802
|
path-is-absolute@^1.0.0:
|
3810
3803
|
version "1.0.1"
|
3811
3804
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
@@ -3822,9 +3815,9 @@ path-parse@^1.0.6:
|
|
3822
3815
|
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
3823
3816
|
|
3824
3817
|
pbkdf2@^3.0.3:
|
3825
|
-
version "3.
|
3826
|
-
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.
|
3827
|
-
integrity sha512-
|
3818
|
+
version "3.1.1"
|
3819
|
+
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94"
|
3820
|
+
integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==
|
3828
3821
|
dependencies:
|
3829
3822
|
create-hash "^1.1.2"
|
3830
3823
|
create-hmac "^1.1.4"
|
@@ -3842,13 +3835,6 @@ physical-cpu-count@^2.0.0:
|
|
3842
3835
|
resolved "https://registry.yarnpkg.com/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz#18de2f97e4bf7a9551ad7511942b5496f7aba660"
|
3843
3836
|
integrity sha1-GN4vl+S/epVRrXURlCtUlverpmA=
|
3844
3837
|
|
3845
|
-
pkg-up@^2.0.0:
|
3846
|
-
version "2.0.0"
|
3847
|
-
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
|
3848
|
-
integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
|
3849
|
-
dependencies:
|
3850
|
-
find-up "^2.1.0"
|
3851
|
-
|
3852
3838
|
pn@^1.1.0:
|
3853
3839
|
version "1.1.0"
|
3854
3840
|
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
|
@@ -3860,9 +3846,9 @@ posix-character-classes@^0.1.0:
|
|
3860
3846
|
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
3861
3847
|
|
3862
3848
|
postcss-calc@^7.0.1:
|
3863
|
-
version "7.0.
|
3864
|
-
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.
|
3865
|
-
integrity sha512-
|
3849
|
+
version "7.0.5"
|
3850
|
+
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e"
|
3851
|
+
integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
|
3866
3852
|
dependencies:
|
3867
3853
|
postcss "^7.0.27"
|
3868
3854
|
postcss-selector-parser "^6.0.2"
|
@@ -4027,11 +4013,11 @@ postcss-modules-values@1.3.0:
|
|
4027
4013
|
postcss "^6.0.1"
|
4028
4014
|
|
4029
4015
|
postcss-nested@^4.1.1:
|
4030
|
-
version "4.2.
|
4031
|
-
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.
|
4032
|
-
integrity sha512-
|
4016
|
+
version "4.2.3"
|
4017
|
+
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.3.tgz#c6f255b0a720549776d220d00c4b70cd244136f6"
|
4018
|
+
integrity sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw==
|
4033
4019
|
dependencies:
|
4034
|
-
postcss "^7.0.
|
4020
|
+
postcss "^7.0.32"
|
4035
4021
|
postcss-selector-parser "^6.0.2"
|
4036
4022
|
|
4037
4023
|
postcss-normalize-charset@^4.0.1:
|
@@ -4144,7 +4130,7 @@ postcss-reduce-transforms@^4.0.2:
|
|
4144
4130
|
postcss "^7.0.0"
|
4145
4131
|
postcss-value-parser "^3.0.0"
|
4146
4132
|
|
4147
|
-
postcss-selector-parser@6.0.2
|
4133
|
+
postcss-selector-parser@6.0.2:
|
4148
4134
|
version "6.0.2"
|
4149
4135
|
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
4150
4136
|
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
@@ -4162,6 +4148,16 @@ postcss-selector-parser@^3.0.0:
|
|
4162
4148
|
indexes-of "^1.0.1"
|
4163
4149
|
uniq "^1.0.1"
|
4164
4150
|
|
4151
|
+
postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
|
4152
|
+
version "6.0.4"
|
4153
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
|
4154
|
+
integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
|
4155
|
+
dependencies:
|
4156
|
+
cssesc "^3.0.0"
|
4157
|
+
indexes-of "^1.0.1"
|
4158
|
+
uniq "^1.0.1"
|
4159
|
+
util-deprecate "^1.0.2"
|
4160
|
+
|
4165
4161
|
postcss-svgo@^4.0.2:
|
4166
4162
|
version "4.0.2"
|
4167
4163
|
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
|
@@ -4200,10 +4196,10 @@ postcss@6.0.1:
|
|
4200
4196
|
source-map "^0.5.6"
|
4201
4197
|
supports-color "^3.2.3"
|
4202
4198
|
|
4203
|
-
postcss@7.0.
|
4204
|
-
version "7.0.
|
4205
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4206
|
-
integrity sha512-
|
4199
|
+
postcss@7.0.32:
|
4200
|
+
version "7.0.32"
|
4201
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d"
|
4202
|
+
integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==
|
4207
4203
|
dependencies:
|
4208
4204
|
chalk "^2.4.2"
|
4209
4205
|
source-map "^0.6.1"
|
@@ -4218,26 +4214,33 @@ postcss@^6.0.1, postcss@^6.0.9:
|
|
4218
4214
|
source-map "^0.6.1"
|
4219
4215
|
supports-color "^5.4.0"
|
4220
4216
|
|
4221
|
-
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.
|
4222
|
-
version "7.0.
|
4223
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4224
|
-
integrity sha512-
|
4217
|
+
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.27, postcss@^7.0.32:
|
4218
|
+
version "7.0.35"
|
4219
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
|
4220
|
+
integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
|
4225
4221
|
dependencies:
|
4226
4222
|
chalk "^2.4.2"
|
4227
4223
|
source-map "^0.6.1"
|
4228
4224
|
supports-color "^6.1.0"
|
4229
4225
|
|
4230
|
-
posthtml-parser@^0.4.0, posthtml-parser@^0.4.1
|
4226
|
+
posthtml-parser@^0.4.0, posthtml-parser@^0.4.1:
|
4231
4227
|
version "0.4.2"
|
4232
4228
|
resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.4.2.tgz#a132bbdf0cd4bc199d34f322f5c1599385d7c6c1"
|
4233
4229
|
integrity sha512-BUIorsYJTvS9UhXxPTzupIztOMVNPa/HtAm9KHni9z6qEfiJ1bpOBL5DfUOL9XAc3XkLIEzBzpph+Zbm4AdRAg==
|
4234
4230
|
dependencies:
|
4235
4231
|
htmlparser2 "^3.9.2"
|
4236
4232
|
|
4237
|
-
posthtml-
|
4238
|
-
version "
|
4239
|
-
resolved "https://registry.yarnpkg.com/posthtml-
|
4240
|
-
integrity sha512-
|
4233
|
+
posthtml-parser@^0.5.0:
|
4234
|
+
version "0.5.3"
|
4235
|
+
resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.5.3.tgz#e95b92e57d98da50b443e116fcee39466cd9012e"
|
4236
|
+
integrity sha512-uHosRn0y+1wbnlYKrqMjBPoo/kK5LPYImLtiETszNFYfFwAD3cQdD1R2E13Mh5icBxkHj+yKtlIHozCsmVWD/Q==
|
4237
|
+
dependencies:
|
4238
|
+
htmlparser2 "^3.9.2"
|
4239
|
+
|
4240
|
+
posthtml-render@^1.1.3, posthtml-render@^1.1.5, posthtml-render@^1.2.3, posthtml-render@^1.3.0:
|
4241
|
+
version "1.4.0"
|
4242
|
+
resolved "https://registry.yarnpkg.com/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13"
|
4243
|
+
integrity sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==
|
4241
4244
|
|
4242
4245
|
posthtml@^0.11.2:
|
4243
4246
|
version "0.11.6"
|
@@ -4247,13 +4250,13 @@ posthtml@^0.11.2:
|
|
4247
4250
|
posthtml-parser "^0.4.1"
|
4248
4251
|
posthtml-render "^1.1.5"
|
4249
4252
|
|
4250
|
-
posthtml@^0.
|
4251
|
-
version "0.
|
4252
|
-
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.
|
4253
|
-
integrity sha512-
|
4253
|
+
posthtml@^0.13.4:
|
4254
|
+
version "0.13.4"
|
4255
|
+
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.13.4.tgz#ad81b3fa62b85f81ccdb5710f4ec375a4ed94934"
|
4256
|
+
integrity sha512-i2oTo/+dwXGC6zaAQSF6WZEQSbEqu10hsvg01DWzGAfZmy31Iiy9ktPh9nnXDfZiYytjxTIvxoK4TI0uk4QWpw==
|
4254
4257
|
dependencies:
|
4255
|
-
posthtml-parser "^0.
|
4256
|
-
posthtml-render "^1.2.
|
4258
|
+
posthtml-parser "^0.5.0"
|
4259
|
+
posthtml-render "^1.2.3"
|
4257
4260
|
|
4258
4261
|
prelude-ls@~1.1.2:
|
4259
4262
|
version "1.1.2"
|
@@ -4270,11 +4273,6 @@ pretty-hrtime@^1.0.3:
|
|
4270
4273
|
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
|
4271
4274
|
integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
|
4272
4275
|
|
4273
|
-
private@^0.1.8:
|
4274
|
-
version "0.1.8"
|
4275
|
-
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
4276
|
-
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
4277
|
-
|
4278
4276
|
process-nextick-args@~2.0.0:
|
4279
4277
|
version "2.0.1"
|
4280
4278
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
@@ -4317,24 +4315,14 @@ punycode@^2.1.0, punycode@^2.1.1:
|
|
4317
4315
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
4318
4316
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
4319
4317
|
|
4320
|
-
purgecss@^
|
4321
|
-
version "
|
4322
|
-
resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-
|
4323
|
-
integrity sha512-
|
4324
|
-
dependencies:
|
4325
|
-
glob "^7.1.3"
|
4326
|
-
postcss "^7.0.14"
|
4327
|
-
postcss-selector-parser "^6.0.0"
|
4328
|
-
yargs "^14.0.0"
|
4329
|
-
|
4330
|
-
purgecss@^2.2.0:
|
4331
|
-
version "2.2.1"
|
4332
|
-
resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-2.2.1.tgz#aa3bdf23370f7539df6154f5e25df2da311cd018"
|
4333
|
-
integrity sha512-wngRSLW1dpNr8kr3TL9nTJMyTFI5BiRiaUUEys5M1CA4zEHLF25fRHoshEeDqmhstaNTOddmpYM34zRrUtEGbQ==
|
4318
|
+
purgecss@^2.3.0:
|
4319
|
+
version "2.3.0"
|
4320
|
+
resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-2.3.0.tgz#5327587abf5795e6541517af8b190a6fb5488bb3"
|
4321
|
+
integrity sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==
|
4334
4322
|
dependencies:
|
4335
4323
|
commander "^5.0.0"
|
4336
4324
|
glob "^7.0.0"
|
4337
|
-
postcss "7.0.
|
4325
|
+
postcss "7.0.32"
|
4338
4326
|
postcss-selector-parser "^6.0.2"
|
4339
4327
|
|
4340
4328
|
q@^1.1.2:
|
@@ -4433,9 +4421,9 @@ regenerate-unicode-properties@^8.2.0:
|
|
4433
4421
|
regenerate "^1.4.0"
|
4434
4422
|
|
4435
4423
|
regenerate@^1.4.0:
|
4436
|
-
version "1.4.
|
4437
|
-
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.
|
4438
|
-
integrity sha512-
|
4424
|
+
version "1.4.2"
|
4425
|
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
|
4426
|
+
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
|
4439
4427
|
|
4440
4428
|
regenerator-runtime@^0.11.0:
|
4441
4429
|
version "0.11.1"
|
@@ -4443,17 +4431,16 @@ regenerator-runtime@^0.11.0:
|
|
4443
4431
|
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
|
4444
4432
|
|
4445
4433
|
regenerator-runtime@^0.13.4:
|
4446
|
-
version "0.13.
|
4447
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.
|
4448
|
-
integrity sha512-
|
4434
|
+
version "0.13.7"
|
4435
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
|
4436
|
+
integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
|
4449
4437
|
|
4450
4438
|
regenerator-transform@^0.14.2:
|
4451
|
-
version "0.14.
|
4452
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.
|
4453
|
-
integrity sha512-
|
4439
|
+
version "0.14.5"
|
4440
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
|
4441
|
+
integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
|
4454
4442
|
dependencies:
|
4455
4443
|
"@babel/runtime" "^7.8.4"
|
4456
|
-
private "^0.1.8"
|
4457
4444
|
|
4458
4445
|
regex-not@^1.0.0, regex-not@^1.0.2:
|
4459
4446
|
version "1.0.2"
|
@@ -4463,10 +4450,10 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
4463
4450
|
extend-shallow "^3.0.2"
|
4464
4451
|
safe-regex "^1.1.0"
|
4465
4452
|
|
4466
|
-
regexpu-core@^4.
|
4467
|
-
version "4.7.
|
4468
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.
|
4469
|
-
integrity sha512-
|
4453
|
+
regexpu-core@^4.7.1:
|
4454
|
+
version "4.7.1"
|
4455
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
|
4456
|
+
integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
|
4470
4457
|
dependencies:
|
4471
4458
|
regenerate "^1.4.0"
|
4472
4459
|
regenerate-unicode-properties "^8.2.0"
|
@@ -4476,9 +4463,9 @@ regexpu-core@^4.6.0, regexpu-core@^4.7.0:
|
|
4476
4463
|
unicode-match-property-value-ecmascript "^1.2.0"
|
4477
4464
|
|
4478
4465
|
regjsgen@^0.5.1:
|
4479
|
-
version "0.5.
|
4480
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.
|
4481
|
-
integrity sha512-
|
4466
|
+
version "0.5.2"
|
4467
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
|
4468
|
+
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
|
4482
4469
|
|
4483
4470
|
regjsparser@^0.6.4:
|
4484
4471
|
version "0.6.4"
|
@@ -4487,6 +4474,11 @@ regjsparser@^0.6.4:
|
|
4487
4474
|
dependencies:
|
4488
4475
|
jsesc "~0.5.0"
|
4489
4476
|
|
4477
|
+
relateurl@^0.2.7:
|
4478
|
+
version "0.2.7"
|
4479
|
+
resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
|
4480
|
+
integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
|
4481
|
+
|
4490
4482
|
remove-trailing-separator@^1.0.1:
|
4491
4483
|
version "1.1.0"
|
4492
4484
|
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
|
@@ -4502,19 +4494,19 @@ repeat-string@^1.6.1:
|
|
4502
4494
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
4503
4495
|
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
4504
4496
|
|
4505
|
-
request-promise-core@1.1.
|
4506
|
-
version "1.1.
|
4507
|
-
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.
|
4508
|
-
integrity sha512-
|
4497
|
+
request-promise-core@1.1.4:
|
4498
|
+
version "1.1.4"
|
4499
|
+
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
|
4500
|
+
integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
|
4509
4501
|
dependencies:
|
4510
|
-
lodash "^4.17.
|
4502
|
+
lodash "^4.17.19"
|
4511
4503
|
|
4512
4504
|
request-promise-native@^1.0.5:
|
4513
|
-
version "1.0.
|
4514
|
-
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.
|
4515
|
-
integrity sha512-
|
4505
|
+
version "1.0.9"
|
4506
|
+
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
|
4507
|
+
integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
|
4516
4508
|
dependencies:
|
4517
|
-
request-promise-core "1.1.
|
4509
|
+
request-promise-core "1.1.4"
|
4518
4510
|
stealthy-require "^1.1.1"
|
4519
4511
|
tough-cookie "^2.3.3"
|
4520
4512
|
|
@@ -4544,16 +4536,6 @@ request@^2.88.0:
|
|
4544
4536
|
tunnel-agent "^0.6.0"
|
4545
4537
|
uuid "^3.3.2"
|
4546
4538
|
|
4547
|
-
require-directory@^2.1.1:
|
4548
|
-
version "2.1.1"
|
4549
|
-
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
4550
|
-
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
4551
|
-
|
4552
|
-
require-main-filename@^2.0.0:
|
4553
|
-
version "2.0.0"
|
4554
|
-
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
4555
|
-
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
4556
|
-
|
4557
4539
|
resolve-from@^3.0.0:
|
4558
4540
|
version "3.0.0"
|
4559
4541
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
|
@@ -4565,10 +4547,11 @@ resolve-url@^0.2.1:
|
|
4565
4547
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
4566
4548
|
|
4567
4549
|
resolve@^1.1.5, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0:
|
4568
|
-
version "1.
|
4569
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
4570
|
-
integrity sha512-
|
4550
|
+
version "1.19.0"
|
4551
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
|
4552
|
+
integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
|
4571
4553
|
dependencies:
|
4554
|
+
is-core-module "^2.1.0"
|
4572
4555
|
path-parse "^1.0.6"
|
4573
4556
|
|
4574
4557
|
restore-cursor@^2.0.0:
|
@@ -4687,11 +4670,6 @@ serve-static@^1.12.4:
|
|
4687
4670
|
parseurl "~1.3.3"
|
4688
4671
|
send "0.17.1"
|
4689
4672
|
|
4690
|
-
set-blocking@^2.0.0:
|
4691
|
-
version "2.0.0"
|
4692
|
-
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
4693
|
-
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
|
4694
|
-
|
4695
4673
|
set-value@^2.0.0, set-value@^2.0.1:
|
4696
4674
|
version "2.0.1"
|
4697
4675
|
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
|
@@ -4825,6 +4803,11 @@ sprintf-js@~1.0.2:
|
|
4825
4803
|
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
4826
4804
|
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
4827
4805
|
|
4806
|
+
srcset@^3.0.0:
|
4807
|
+
version "3.0.0"
|
4808
|
+
resolved "https://registry.yarnpkg.com/srcset/-/srcset-3.0.0.tgz#8afd8b971362dfc129ae9c1a99b3897301ce6441"
|
4809
|
+
integrity sha512-D59vF08Qzu/C4GAOXVgMTLfgryt5fyWo93FZyhEWANo0PokFz/iWdDe13mX3O5TRf6l8vMTqckAfR4zPiaH0yQ==
|
4810
|
+
|
4828
4811
|
sshpk@^1.7.0:
|
4829
4812
|
version "1.16.1"
|
4830
4813
|
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
|
@@ -4846,9 +4829,9 @@ stable@^0.1.8:
|
|
4846
4829
|
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
|
4847
4830
|
|
4848
4831
|
static-eval@^2.0.0:
|
4849
|
-
version "2.0
|
4850
|
-
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.
|
4851
|
-
integrity sha512-
|
4832
|
+
version "2.1.0"
|
4833
|
+
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.1.0.tgz#a16dbe54522d7fa5ef1389129d813fd47b148014"
|
4834
|
+
integrity sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==
|
4852
4835
|
dependencies:
|
4853
4836
|
escodegen "^1.11.1"
|
4854
4837
|
|
@@ -4890,13 +4873,13 @@ stealthy-require@^1.1.1:
|
|
4890
4873
|
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
4891
4874
|
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
|
4892
4875
|
|
4893
|
-
stimulus@^
|
4894
|
-
version "
|
4895
|
-
resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-
|
4896
|
-
integrity sha512-
|
4876
|
+
stimulus@^2.0.0:
|
4877
|
+
version "2.0.0"
|
4878
|
+
resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-2.0.0.tgz#713c8b91a72ef90914b90955f0e705f004403047"
|
4879
|
+
integrity sha512-xipy7BS5TVpg4fX6S8LhrYZp7cmHGjmk09WSAiVx1gF5S5g43IWsuetfUhIk8HfHUG+4MQ9nY0FQz4dRFLs/8w==
|
4897
4880
|
dependencies:
|
4898
|
-
"@stimulus/core" "^
|
4899
|
-
"@stimulus/webpack-helpers" "^
|
4881
|
+
"@stimulus/core" "^2.0.0"
|
4882
|
+
"@stimulus/webpack-helpers" "^2.0.0"
|
4900
4883
|
|
4901
4884
|
stream-browserify@^2.0.1:
|
4902
4885
|
version "2.0.2"
|
@@ -4917,48 +4900,21 @@ stream-http@^2.7.2:
|
|
4917
4900
|
to-arraybuffer "^1.0.0"
|
4918
4901
|
xtend "^4.0.0"
|
4919
4902
|
|
4920
|
-
string
|
4921
|
-
version "
|
4922
|
-
resolved "https://registry.yarnpkg.com/string
|
4923
|
-
integrity sha512-
|
4924
|
-
dependencies:
|
4925
|
-
emoji-regex "^7.0.1"
|
4926
|
-
is-fullwidth-code-point "^2.0.0"
|
4927
|
-
strip-ansi "^5.1.0"
|
4928
|
-
|
4929
|
-
string.prototype.trimend@^1.0.0:
|
4930
|
-
version "1.0.1"
|
4931
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
|
4932
|
-
integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
|
4933
|
-
dependencies:
|
4934
|
-
define-properties "^1.1.3"
|
4935
|
-
es-abstract "^1.17.5"
|
4936
|
-
|
4937
|
-
string.prototype.trimleft@^2.1.1:
|
4938
|
-
version "2.1.2"
|
4939
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc"
|
4940
|
-
integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==
|
4941
|
-
dependencies:
|
4942
|
-
define-properties "^1.1.3"
|
4943
|
-
es-abstract "^1.17.5"
|
4944
|
-
string.prototype.trimstart "^1.0.0"
|
4945
|
-
|
4946
|
-
string.prototype.trimright@^2.1.1:
|
4947
|
-
version "2.1.2"
|
4948
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3"
|
4949
|
-
integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==
|
4903
|
+
string.prototype.trimend@^1.0.1:
|
4904
|
+
version "1.0.3"
|
4905
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"
|
4906
|
+
integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
|
4950
4907
|
dependencies:
|
4908
|
+
call-bind "^1.0.0"
|
4951
4909
|
define-properties "^1.1.3"
|
4952
|
-
es-abstract "^1.17.5"
|
4953
|
-
string.prototype.trimend "^1.0.0"
|
4954
4910
|
|
4955
|
-
string.prototype.trimstart@^1.0.
|
4956
|
-
version "1.0.
|
4957
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.
|
4958
|
-
integrity sha512-
|
4911
|
+
string.prototype.trimstart@^1.0.1:
|
4912
|
+
version "1.0.3"
|
4913
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa"
|
4914
|
+
integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
|
4959
4915
|
dependencies:
|
4916
|
+
call-bind "^1.0.0"
|
4960
4917
|
define-properties "^1.1.3"
|
4961
|
-
es-abstract "^1.17.5"
|
4962
4918
|
|
4963
4919
|
string_decoder@^1.0.0, string_decoder@^1.1.1:
|
4964
4920
|
version "1.3.0"
|
@@ -4988,13 +4944,6 @@ strip-ansi@^4.0.0:
|
|
4988
4944
|
dependencies:
|
4989
4945
|
ansi-regex "^3.0.0"
|
4990
4946
|
|
4991
|
-
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
4992
|
-
version "5.2.0"
|
4993
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
4994
|
-
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
4995
|
-
dependencies:
|
4996
|
-
ansi-regex "^4.1.0"
|
4997
|
-
|
4998
4947
|
stylehacks@^4.0.0:
|
4999
4948
|
version "4.0.3"
|
5000
4949
|
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
|
@@ -5031,9 +4980,9 @@ supports-color@^6.1.0:
|
|
5031
4980
|
has-flag "^3.0.0"
|
5032
4981
|
|
5033
4982
|
supports-color@^7.1.0:
|
5034
|
-
version "7.
|
5035
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.
|
5036
|
-
integrity sha512-
|
4983
|
+
version "7.2.0"
|
4984
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
4985
|
+
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
5037
4986
|
dependencies:
|
5038
4987
|
has-flag "^4.0.0"
|
5039
4988
|
|
@@ -5062,26 +5011,29 @@ symbol-tree@^3.2.2:
|
|
5062
5011
|
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
|
5063
5012
|
|
5064
5013
|
tailwindcss@^1.0.1:
|
5065
|
-
version "1.
|
5066
|
-
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.
|
5067
|
-
integrity sha512-
|
5014
|
+
version "1.9.6"
|
5015
|
+
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.9.6.tgz#0c5089911d24e1e98e592a31bfdb3d8f34ecf1a0"
|
5016
|
+
integrity sha512-nY8WYM/RLPqGsPEGEV2z63riyQPcHYZUJpAwdyBzVpxQHOHqHE+F/fvbCeXhdF1+TA5l72vSkZrtYCB9hRcwkQ==
|
5068
5017
|
dependencies:
|
5069
5018
|
"@fullhuman/postcss-purgecss" "^2.1.2"
|
5070
5019
|
autoprefixer "^9.4.5"
|
5071
5020
|
browserslist "^4.12.0"
|
5072
5021
|
bytes "^3.0.0"
|
5073
|
-
chalk "^4.0.0"
|
5022
|
+
chalk "^3.0.0 || ^4.0.0"
|
5074
5023
|
color "^3.1.2"
|
5075
5024
|
detective "^5.2.0"
|
5076
5025
|
fs-extra "^8.0.0"
|
5077
|
-
|
5026
|
+
html-tags "^3.1.0"
|
5027
|
+
lodash "^4.17.20"
|
5078
5028
|
node-emoji "^1.8.1"
|
5079
5029
|
normalize.css "^8.0.1"
|
5030
|
+
object-hash "^2.0.3"
|
5080
5031
|
postcss "^7.0.11"
|
5081
5032
|
postcss-functions "^3.0.0"
|
5082
5033
|
postcss-js "^2.0.0"
|
5083
5034
|
postcss-nested "^4.1.1"
|
5084
5035
|
postcss-selector-parser "^6.0.0"
|
5036
|
+
postcss-value-parser "^4.1.0"
|
5085
5037
|
pretty-hrtime "^1.0.3"
|
5086
5038
|
reduce-css-calc "^2.1.6"
|
5087
5039
|
resolve "^1.14.2"
|
@@ -5095,10 +5047,10 @@ terser@^3.7.3:
|
|
5095
5047
|
source-map "~0.6.1"
|
5096
5048
|
source-map-support "~0.5.10"
|
5097
5049
|
|
5098
|
-
terser@^4.
|
5099
|
-
version "4.
|
5100
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-4.
|
5101
|
-
integrity sha512-
|
5050
|
+
terser@^4.8.0:
|
5051
|
+
version "4.8.0"
|
5052
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
|
5053
|
+
integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
|
5102
5054
|
dependencies:
|
5103
5055
|
commander "^2.20.0"
|
5104
5056
|
source-map "~0.6.1"
|
@@ -5113,9 +5065,9 @@ through2@^2.0.0, through2@~2.0.3:
|
|
5113
5065
|
xtend "~4.0.1"
|
5114
5066
|
|
5115
5067
|
timers-browserify@^2.0.4:
|
5116
|
-
version "2.0.
|
5117
|
-
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.
|
5118
|
-
integrity sha512-
|
5068
|
+
version "2.0.12"
|
5069
|
+
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
|
5070
|
+
integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
|
5119
5071
|
dependencies:
|
5120
5072
|
setimmediate "^1.0.4"
|
5121
5073
|
|
@@ -5219,11 +5171,11 @@ typedarray@^0.0.6:
|
|
5219
5171
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
5220
5172
|
|
5221
5173
|
typescript@^3.7.4:
|
5222
|
-
version "3.9.
|
5223
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.
|
5224
|
-
integrity sha512-
|
5174
|
+
version "3.9.7"
|
5175
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
|
5176
|
+
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
|
5225
5177
|
|
5226
|
-
uncss@^0.17.
|
5178
|
+
uncss@^0.17.3:
|
5227
5179
|
version "0.17.3"
|
5228
5180
|
resolved "https://registry.yarnpkg.com/uncss/-/uncss-0.17.3.tgz#50fc1eb4ed573ffff763458d801cd86e4d69ea11"
|
5229
5181
|
integrity sha512-ksdDWl81YWvF/X14fOSw4iu8tESDHFIeyKIeDrK6GEVTQvqJc1WlOEXqostNwOCi3qAj++4EaLsdAgPmUbEyog==
|
@@ -5313,9 +5265,9 @@ upath@^1.1.1:
|
|
5313
5265
|
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
|
5314
5266
|
|
5315
5267
|
uri-js@^4.2.2:
|
5316
|
-
version "4.
|
5317
|
-
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.
|
5318
|
-
integrity sha512-
|
5268
|
+
version "4.4.0"
|
5269
|
+
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
|
5270
|
+
integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
|
5319
5271
|
dependencies:
|
5320
5272
|
punycode "^2.1.0"
|
5321
5273
|
|
@@ -5337,7 +5289,7 @@ use@^3.1.0:
|
|
5337
5289
|
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
|
5338
5290
|
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
|
5339
5291
|
|
5340
|
-
util-deprecate@^1.0.1, util-deprecate@~1.0.1:
|
5292
|
+
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
|
5341
5293
|
version "1.0.2"
|
5342
5294
|
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
5343
5295
|
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
@@ -5372,9 +5324,9 @@ uuid@^3.3.2:
|
|
5372
5324
|
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
5373
5325
|
|
5374
5326
|
v8-compile-cache@^2.0.0:
|
5375
|
-
version "2.
|
5376
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.
|
5377
|
-
integrity sha512-
|
5327
|
+
version "2.2.0"
|
5328
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
|
5329
|
+
integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
|
5378
5330
|
|
5379
5331
|
vendors@^1.0.0:
|
5380
5332
|
version "1.0.4"
|
@@ -5449,11 +5401,6 @@ whatwg-url@^7.0.0:
|
|
5449
5401
|
tr46 "^1.0.1"
|
5450
5402
|
webidl-conversions "^4.0.2"
|
5451
5403
|
|
5452
|
-
which-module@^2.0.0:
|
5453
|
-
version "2.0.0"
|
5454
|
-
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
5455
|
-
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
5456
|
-
|
5457
5404
|
which@^1.2.9:
|
5458
5405
|
version "1.3.1"
|
5459
5406
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
@@ -5466,15 +5413,6 @@ word-wrap@~1.2.3:
|
|
5466
5413
|
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
5467
5414
|
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
5468
5415
|
|
5469
|
-
wrap-ansi@^5.1.0:
|
5470
|
-
version "5.1.0"
|
5471
|
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
|
5472
|
-
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
|
5473
|
-
dependencies:
|
5474
|
-
ansi-styles "^3.2.0"
|
5475
|
-
string-width "^3.0.0"
|
5476
|
-
strip-ansi "^5.0.0"
|
5477
|
-
|
5478
5416
|
wrappy@1:
|
5479
5417
|
version "1.0.2"
|
5480
5418
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
@@ -5508,33 +5446,3 @@ xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1:
|
|
5508
5446
|
version "4.0.2"
|
5509
5447
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
5510
5448
|
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
5511
|
-
|
5512
|
-
y18n@^4.0.0:
|
5513
|
-
version "4.0.0"
|
5514
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
|
5515
|
-
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
|
5516
|
-
|
5517
|
-
yargs-parser@^15.0.1:
|
5518
|
-
version "15.0.1"
|
5519
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3"
|
5520
|
-
integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==
|
5521
|
-
dependencies:
|
5522
|
-
camelcase "^5.0.0"
|
5523
|
-
decamelize "^1.2.0"
|
5524
|
-
|
5525
|
-
yargs@^14.0.0:
|
5526
|
-
version "14.2.3"
|
5527
|
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414"
|
5528
|
-
integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==
|
5529
|
-
dependencies:
|
5530
|
-
cliui "^5.0.0"
|
5531
|
-
decamelize "^1.2.0"
|
5532
|
-
find-up "^3.0.0"
|
5533
|
-
get-caller-file "^2.0.1"
|
5534
|
-
require-directory "^2.1.1"
|
5535
|
-
require-main-filename "^2.0.0"
|
5536
|
-
set-blocking "^2.0.0"
|
5537
|
-
string-width "^3.0.0"
|
5538
|
-
which-module "^2.0.0"
|
5539
|
-
y18n "^4.0.0"
|
5540
|
-
yargs-parser "^15.0.1"
|