super 0.0.4 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +13 -0
- data/CONTRIBUTING.md +56 -0
- data/README.md +60 -85
- data/STABILITY.md +50 -0
- data/app/assets/javascripts/super/application.js +1169 -359
- data/app/assets/stylesheets/super/application.css +86648 -30707
- data/app/controllers/super/application_controller.rb +44 -71
- data/app/views/layouts/super/application.html.erb +26 -6
- data/app/views/super/application/{_resources_header.html.erb → _collection_header.html.erb} +5 -6
- data/app/views/super/application/_display_rich_text.html.erb +1 -0
- data/app/views/super/application/_filter.html.erb +14 -0
- data/app/views/super/application/_filter_type_select.html.erb +31 -0
- data/app/views/super/application/_filter_type_text.html.erb +22 -0
- data/app/views/super/application/_filter_type_timestamp.html.erb +35 -0
- data/app/views/super/application/_flash.html.erb +13 -13
- data/app/views/super/application/_form_field__destroy.html.erb +6 -2
- data/app/views/super/application/_form_field_checkbox.html.erb +15 -0
- data/app/views/super/application/_form_field_generic.html.erb +19 -0
- data/app/views/super/application/_form_field_rich_text_area.html.erb +13 -0
- data/app/views/super/application/_form_field_select.html.erb +11 -5
- data/app/views/super/application/_form_field_text.html.erb +13 -5
- data/app/views/super/application/_form_has_many.html.erb +3 -3
- data/app/views/super/application/_form_inline_errors.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 +12 -17
- data/app/views/super/application/_super_pagination.html.erb +16 -0
- data/app/views/super/application/_super_panel.html.erb +3 -7
- data/app/views/super/application/_super_schema_display_actions.html.erb +5 -0
- data/app/views/super/application/_super_schema_display_index.html.erb +24 -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 +1 -1
- data/app/views/super/application/index.html.erb +1 -1
- data/app/views/super/application/new.html.erb +1 -1
- data/app/views/super/application/show.html.erb +1 -1
- data/app/views/super/feather/{_chevron_down.svg → _chevron_down.html} +0 -0
- data/config/locales/en.yml +5 -0
- data/docs/README.md +8 -0
- data/docs/action_text.md +48 -0
- data/docs/cheat.md +41 -0
- data/docs/faq.md +44 -0
- data/docs/installation.md +21 -0
- data/docs/quick_start.md +30 -0
- data/docs/webpacker.md +25 -0
- data/docs/yard_customizations.rb +41 -0
- data/frontend/super-frontend/build.js +1 -1
- data/frontend/super-frontend/dist/application.css +86648 -30707
- data/frontend/super-frontend/dist/application.js +1169 -359
- data/frontend/super-frontend/package.json +2 -3
- data/frontend/super-frontend/src/javascripts/super/{application.ts → application.js} +5 -8
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.js +17 -0
- data/frontend/super-frontend/src/javascripts/super/{toggle_pending_destruction_controller.ts → toggle_pending_destruction_controller.js} +2 -2
- data/frontend/super-frontend/tailwind.config.js +7 -1
- data/frontend/super-frontend/yarn.lock +1368 -1391
- data/lib/generators/super/action_text/USAGE +23 -0
- data/lib/generators/super/action_text/action_text_generator.rb +30 -0
- data/lib/generators/super/action_text/templates/pack_super_action_text.css +23 -0
- data/lib/generators/super/action_text/templates/pack_super_action_text.js +4 -0
- data/lib/generators/super/install/install_generator.rb +16 -0
- data/lib/generators/super/resource/templates/resources_controller.rb.tt +1 -31
- data/lib/generators/super/webpacker/USAGE +5 -4
- data/lib/generators/super/webpacker/webpacker_generator.rb +10 -1
- data/lib/super.rb +22 -5
- data/lib/super/action_inquirer.rb +2 -2
- data/lib/super/assets.rb +112 -38
- data/lib/super/client_error.rb +43 -0
- data/lib/super/compatibility.rb +25 -0
- data/lib/super/configuration.rb +21 -69
- data/lib/super/controls.rb +9 -257
- data/lib/super/controls/optional.rb +79 -0
- data/lib/super/controls/required.rb +13 -0
- data/lib/super/controls/steps.rb +114 -0
- data/lib/super/display.rb +66 -3
- data/lib/super/display/guesser.rb +34 -0
- data/lib/super/display/schema_types.rb +61 -25
- data/lib/super/engine.rb +7 -1
- data/lib/super/error.rb +8 -9
- data/lib/super/filter.rb +12 -0
- data/lib/super/filter/form_object.rb +97 -0
- data/lib/super/filter/guesser.rb +30 -0
- data/lib/super/filter/operator.rb +103 -0
- data/lib/super/filter/plugin.rb +47 -0
- data/lib/super/filter/schema_types.rb +112 -0
- data/lib/super/form.rb +35 -0
- data/lib/super/form/builder.rb +48 -0
- data/lib/super/form/guesser.rb +27 -0
- data/lib/super/form/schema_types.rb +29 -22
- data/lib/super/form/strong_params.rb +29 -0
- data/lib/super/layout.rb +28 -0
- data/lib/super/link.rb +55 -32
- data/lib/super/pagination.rb +55 -0
- data/lib/super/panel.rb +13 -0
- data/lib/super/partial.rb +12 -0
- data/lib/super/partial/resolving.rb +24 -0
- data/lib/super/plugin.rb +34 -63
- data/lib/super/schema.rb +12 -22
- data/lib/super/schema/common.rb +25 -0
- data/lib/super/schema/guesser.rb +77 -0
- data/lib/super/version.rb +1 -1
- data/lib/super/view_helper.rb +43 -0
- metadata +138 -41
- data/app/helpers/super/application_helper.rb +0 -32
- data/app/views/super/application/_index.html.erb +0 -45
- data/app/views/super/application/_show.html.erb +0 -10
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +0 -21
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +0 -1
- data/frontend/super-frontend/tsconfig.json +0 -13
- data/lib/super/action.rb +0 -22
- data/lib/super/action/step.rb +0 -36
- data/lib/super/test_support/copy_app_templates/controllers/favorite_things_controller.rb +0 -50
- data/lib/super/test_support/copy_app_templates/controllers/members_controller.rb +0 -74
- data/lib/super/test_support/copy_app_templates/controllers/ships_controller.rb +0 -47
- data/lib/super/test_support/copy_app_templates/migrations/20190216224956_create_members.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190803143320_create_ships.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190806014121_add_ship_to_members.rb +0 -5
- data/lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb +0 -10
- data/lib/super/test_support/copy_app_templates/models/favorite_thing.rb +0 -7
- data/lib/super/test_support/copy_app_templates/models/member.rb +0 -23
- data/lib/super/test_support/copy_app_templates/models/ship.rb +0 -3
- data/lib/super/test_support/copy_app_templates/routes.rb +0 -11
- data/lib/super/test_support/copy_app_templates/seeds.rb +0 -2
- data/lib/super/test_support/copy_app_templates/views/members/_favorite_things.html.erb +0 -11
- data/lib/super/test_support/fixtures/favorite_things.yml +0 -9
- data/lib/super/test_support/fixtures/members.yml +0 -336
- data/lib/super/test_support/fixtures/ships.yml +0 -10
- data/lib/super/test_support/generate_copy_app.rb +0 -42
- data/lib/super/test_support/generate_dummy.rb +0 -93
- data/lib/super/test_support/starfleet_seeder.rb +0 -50
- data/lib/tasks/super_tasks.rake +0 -4
@@ -1,13 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
3
|
"@rails/ujs": "^6.0.2-1",
|
4
|
-
"stimulus": "^
|
4
|
+
"stimulus": "^2.0.0",
|
5
5
|
"tailwindcss": "^1.0.1"
|
6
6
|
},
|
7
7
|
"devDependencies": {
|
8
8
|
"parcel-bundler": "^1.12.3",
|
9
|
-
"prettier": "1.19.1"
|
10
|
-
"typescript": "^3.7.4"
|
9
|
+
"prettier": "1.19.1"
|
11
10
|
},
|
12
11
|
"scripts": {
|
13
12
|
"build": "node build.js",
|
@@ -1,18 +1,15 @@
|
|
1
1
|
import RailsUjs from "@rails/ujs";
|
2
|
-
import { Application, Controller } from "stimulus";
|
2
|
+
import { Application, Controller as StimulusController } from "stimulus";
|
3
3
|
import ApplyTemplateController from "./apply_template_controller";
|
4
4
|
import TogglePendingDestructionController from "./toggle_pending_destruction_controller";
|
5
5
|
|
6
6
|
RailsUjs.start();
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
let StimulusApplication = Application.start();
|
9
|
+
StimulusApplication.register("apply-template", ApplyTemplateController);
|
10
|
+
StimulusApplication.register(
|
11
11
|
"toggle-pending-destruction",
|
12
12
|
TogglePendingDestructionController
|
13
13
|
);
|
14
14
|
|
15
|
-
export
|
16
|
-
StimulusApplication: application,
|
17
|
-
StimulusController: Controller,
|
18
|
-
};
|
15
|
+
export { StimulusApplication, StimulusController };
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { Controller } from "stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
static targets = ["template"];
|
5
|
+
|
6
|
+
call(event) {
|
7
|
+
event.preventDefault();
|
8
|
+
|
9
|
+
const unixtime = new Date().getTime();
|
10
|
+
let content = this.templateTarget.innerHTML.replace(
|
11
|
+
/TEMPLATEINDEX/g,
|
12
|
+
unixtime.toString()
|
13
|
+
);
|
14
|
+
|
15
|
+
this.templateTarget.insertAdjacentHTML("beforebegin", content);
|
16
|
+
}
|
17
|
+
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { Controller } from "stimulus";
|
2
2
|
|
3
3
|
export default class extends Controller {
|
4
|
-
call(event
|
4
|
+
call(event) {
|
5
5
|
let target = event.target;
|
6
6
|
|
7
7
|
if (target) {
|
8
|
-
if (
|
8
|
+
if (target.checked) {
|
9
9
|
this.element.classList.add("opacity-75", "bg-gray-100");
|
10
10
|
} else {
|
11
11
|
this.element.classList.remove("opacity-75", "bg-gray-100");
|
@@ -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", "checked"], "responsive"),
|
10
|
+
borderColor: ({ after }) => after(["group-hover", "checked"], "responsive"),
|
11
|
+
borderRadius: ({ after }) => after(["first", "last"], "responsive"),
|
12
|
+
padding: ({ after }) => after(["first", "last"]),
|
7
13
|
},
|
8
14
|
plugins: [],
|
9
15
|
};
|
@@ -2,762 +2,880 @@
|
|
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.8.2"
|
18
|
-
invariant "^2.2.4"
|
19
|
-
semver "^7.1.1"
|
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.
|
23
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
24
|
-
integrity sha512-
|
25
|
-
dependencies:
|
26
|
-
"@babel/code-frame" "^7.
|
27
|
-
"@babel/generator" "^7.
|
28
|
-
"@babel/
|
29
|
-
"@babel/
|
30
|
-
"@babel/
|
31
|
-
"@babel/
|
32
|
-
"@babel/
|
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"
|
33
30
|
convert-source-map "^1.7.0"
|
34
31
|
debug "^4.1.0"
|
35
32
|
gensync "^1.0.0-beta.1"
|
36
|
-
json5 "^2.1.
|
37
|
-
lodash "^4.17.
|
33
|
+
json5 "^2.1.2"
|
34
|
+
lodash "^4.17.19"
|
38
35
|
resolve "^1.3.2"
|
39
36
|
semver "^5.4.1"
|
40
37
|
source-map "^0.5.0"
|
41
38
|
|
42
|
-
"@babel/generator@^7.
|
43
|
-
version "7.
|
44
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
45
|
-
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==
|
46
43
|
dependencies:
|
47
|
-
"@babel/types" "^7.
|
44
|
+
"@babel/types" "^7.12.5"
|
48
45
|
jsesc "^2.5.1"
|
49
|
-
lodash "^4.17.13"
|
50
46
|
source-map "^0.5.0"
|
51
47
|
|
52
|
-
"@babel/helper-annotate-as-pure@^7.
|
53
|
-
version "7.
|
54
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
55
|
-
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==
|
52
|
+
dependencies:
|
53
|
+
"@babel/types" "^7.10.4"
|
54
|
+
|
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==
|
56
59
|
dependencies:
|
57
|
-
"@babel/
|
60
|
+
"@babel/helper-explode-assignable-expression" "^7.10.4"
|
61
|
+
"@babel/types" "^7.10.4"
|
58
62
|
|
59
|
-
"@babel/helper-builder-
|
60
|
-
version "7.
|
61
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-
|
62
|
-
integrity sha512-
|
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==
|
63
67
|
dependencies:
|
64
|
-
"@babel/helper-
|
65
|
-
"@babel/
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
"@babel/types" "^7.8.0"
|
73
|
-
esutils "^2.0.0"
|
74
|
-
|
75
|
-
"@babel/helper-call-delegate@^7.8.0":
|
76
|
-
version "7.8.0"
|
77
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.0.tgz#1cd725c5444be0ce59dbfa47b6ac5e9772168c67"
|
78
|
-
integrity sha512-Vi8K1LScr8ZgLicfuCNSE7JWUPG/H/9Bw9zn+3vQyy4vA54FEGTCuUTOXCFwmBM93OD6jHfjrQ6ZnivM5U+bHg==
|
79
|
-
dependencies:
|
80
|
-
"@babel/helper-hoist-variables" "^7.8.0"
|
81
|
-
"@babel/traverse" "^7.8.0"
|
82
|
-
"@babel/types" "^7.8.0"
|
83
|
-
|
84
|
-
"@babel/helper-compilation-targets@^7.8.0":
|
85
|
-
version "7.8.0"
|
86
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.0.tgz#63d3924bc04b68b2d24d25b8cc452ee86dcb3a59"
|
87
|
-
integrity sha512-VcMSwBCqA2mGqmFFnLYtaC+Zkok5pVMOypeGn76RpSBAoFqc1olWjYoNqTn09YMChTi6rsbPIkkEOAwfsKSqRg==
|
68
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
69
|
+
"@babel/helper-module-imports" "^7.12.1"
|
70
|
+
"@babel/types" "^7.12.1"
|
71
|
+
|
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==
|
88
76
|
dependencies:
|
89
|
-
"@babel/
|
90
|
-
|
91
|
-
invariant "^2.2.4"
|
92
|
-
levenary "^1.1.0"
|
93
|
-
semver "^7.1.1"
|
94
|
-
|
95
|
-
"@babel/helper-create-regexp-features-plugin@^7.8.0":
|
96
|
-
version "7.8.0"
|
97
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.0.tgz#ae551572b840189a7b94e39eddc1a68d355974eb"
|
98
|
-
integrity sha512-vJj2hPbxxLUWJEV86iZiac5curAnC3ZVc+rFmFeWZigUOcuCPpbF+KxoEmxrkmuCGylHFF9t4lkpcDUcxnhQ5g==
|
99
|
-
dependencies:
|
100
|
-
"@babel/helper-regex" "^7.8.0"
|
101
|
-
regexpu-core "^4.6.0"
|
102
|
-
|
103
|
-
"@babel/helper-define-map@^7.8.0":
|
104
|
-
version "7.8.0"
|
105
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.0.tgz#d3180691fa189fc147d411deaa029305c1470dfe"
|
106
|
-
integrity sha512-Go06lUlZ4YImNEmdyAH5iO38yh5mbpOPSwA2PtV1vyczFhTZfX0OtzkiIL2pACo6AOYf89pLh42nhhDrqgzC3A==
|
107
|
-
dependencies:
|
108
|
-
"@babel/helper-function-name" "^7.8.0"
|
109
|
-
"@babel/types" "^7.8.0"
|
110
|
-
lodash "^4.17.13"
|
111
|
-
|
112
|
-
"@babel/helper-explode-assignable-expression@^7.8.0":
|
113
|
-
version "7.8.0"
|
114
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.0.tgz#a2ded9298a5dc9df0a8ec65ac12e4745f9af2882"
|
115
|
-
integrity sha512-w4mRQqKAh4M7BSLwvDMm8jYFroEzpqMCtXDhFHP+kNjMIQWpbC6b0Q/RUQsJNSf54rIx6XMdci1Stf60DWw+og==
|
116
|
-
dependencies:
|
117
|
-
"@babel/traverse" "^7.8.0"
|
118
|
-
"@babel/types" "^7.8.0"
|
119
|
-
|
120
|
-
"@babel/helper-function-name@^7.8.0":
|
121
|
-
version "7.8.0"
|
122
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.0.tgz#dde5cf0d6b15c21817a67dd66fe7350348e023bf"
|
123
|
-
integrity sha512-x9psucuU0Xalw+0Vpr2FYJMLB7/KnPSLZhlkUyOGbYAWRDfmtZBrguYpJYiaNCRV7vGkYjO/gF6/J6yMvdWTDw==
|
124
|
-
dependencies:
|
125
|
-
"@babel/helper-get-function-arity" "^7.8.0"
|
126
|
-
"@babel/template" "^7.8.0"
|
127
|
-
"@babel/types" "^7.8.0"
|
128
|
-
|
129
|
-
"@babel/helper-get-function-arity@^7.8.0":
|
130
|
-
version "7.8.0"
|
131
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.0.tgz#90977f61d76d2225d1ae0208def7df22ea92792e"
|
132
|
-
integrity sha512-eUP5grliToMapQiTaYS2AAO/WwaCG7cuJztR1v/a1aPzUzUeGt+AaI9OvLATc/AfFkF8SLJ10d5ugGt/AQ9d6w==
|
133
|
-
dependencies:
|
134
|
-
"@babel/types" "^7.8.0"
|
135
|
-
|
136
|
-
"@babel/helper-hoist-variables@^7.8.0":
|
137
|
-
version "7.8.0"
|
138
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.0.tgz#693586b56487e60fff9d9c7074f4a86e1a8af348"
|
139
|
-
integrity sha512-jDl66KvuklTXUADcoXDMur1jDtAZUZZkzLIaQ54+z38ih8C0V0hC56hMaoVoyoxN60MwQmmrHctBwcLqP0c/Lw==
|
140
|
-
dependencies:
|
141
|
-
"@babel/types" "^7.8.0"
|
142
|
-
|
143
|
-
"@babel/helper-member-expression-to-functions@^7.8.0":
|
144
|
-
version "7.8.0"
|
145
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.0.tgz#50d0ed445d2da11beb60e2dbc2c428254bd5a4ae"
|
146
|
-
integrity sha512-0m1QabGrdXuoxX/g+KOAGndoHwskC70WweqHRQyCsaO67KOEELYh4ECcGw6ZGKjDKa5Y7SW4Qbhw6ly4Fah/jQ==
|
147
|
-
dependencies:
|
148
|
-
"@babel/types" "^7.8.0"
|
149
|
-
|
150
|
-
"@babel/helper-module-imports@^7.8.0":
|
151
|
-
version "7.8.0"
|
152
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.0.tgz#076edda55d8cd39c099981b785ce53f4303b967e"
|
153
|
-
integrity sha512-ylY9J6ZxEcjmJaJ4P6aVs/fZdrZVctCGnxxfYXwCnSMapqd544zT8lWK2qI/vBPjE5gS0o2jILnH+AkpsPauEQ==
|
154
|
-
dependencies:
|
155
|
-
"@babel/types" "^7.8.0"
|
156
|
-
|
157
|
-
"@babel/helper-module-transforms@^7.8.0":
|
158
|
-
version "7.8.0"
|
159
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.0.tgz#a3cbe4ac91b101c4b6db278af0c868fe7091ebae"
|
160
|
-
integrity sha512-fvGhX4FY7YwRdWW/zfddNaKpYl8TaA8hvwONIYhv1/a1ZbgxbTrjsmH6IGWUgUNki7QzbpZ27OEh88sZdft3YA==
|
161
|
-
dependencies:
|
162
|
-
"@babel/helper-module-imports" "^7.8.0"
|
163
|
-
"@babel/helper-simple-access" "^7.8.0"
|
164
|
-
"@babel/helper-split-export-declaration" "^7.8.0"
|
165
|
-
"@babel/template" "^7.8.0"
|
166
|
-
"@babel/types" "^7.8.0"
|
167
|
-
lodash "^4.17.13"
|
168
|
-
|
169
|
-
"@babel/helper-optimise-call-expression@^7.8.0":
|
170
|
-
version "7.8.0"
|
171
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.0.tgz#3df62773cf210db9ed34c2bb39fece5acd1e1733"
|
172
|
-
integrity sha512-aiJt1m+K57y0n10fTw+QXcCXzmpkG+o+NoQmAZqlZPstkTE0PZT+Z27QSd/6Gf00nuXJQO4NiJ0/YagSW5kC2A==
|
173
|
-
dependencies:
|
174
|
-
"@babel/types" "^7.8.0"
|
175
|
-
|
176
|
-
"@babel/helper-plugin-utils@^7.8.0":
|
177
|
-
version "7.8.0"
|
178
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.0.tgz#59ec882d43c21c544ccb51decaecb306b34a8231"
|
179
|
-
integrity sha512-+hAlRGdf8fHQAyNnDBqTHQhwdLURLdrCROoWaEQYiQhk2sV9Rhs+GoFZZfMJExTq9HG8o2NX3uN2G90bFtmFdA==
|
180
|
-
|
181
|
-
"@babel/helper-regex@^7.8.0":
|
182
|
-
version "7.8.0"
|
183
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.0.tgz#dde1d2d2070e292c19a8702075e945923aa1678b"
|
184
|
-
integrity sha512-haD8fRsPtyFZkbtxBIaGBBHRtbn0YsyecdYrxNgO0Bl6SlGokJPQX9M2tDuVbeQBYHZVLUPMSwGQn4obHevsMQ==
|
185
|
-
dependencies:
|
186
|
-
lodash "^4.17.13"
|
187
|
-
|
188
|
-
"@babel/helper-remap-async-to-generator@^7.8.0":
|
189
|
-
version "7.8.0"
|
190
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.0.tgz#034c21154dd12472717cfb31faf1713426fbc435"
|
191
|
-
integrity sha512-+aKyBd4oHAaIZgOLq/uLjkUz7ExZ0ppdNBc8Qr72BmtKNAy3A6EJa/ifjj0//CIzQtUDPs3E6HjKM2cV6bnXsQ==
|
192
|
-
dependencies:
|
193
|
-
"@babel/helper-annotate-as-pure" "^7.8.0"
|
194
|
-
"@babel/helper-wrap-function" "^7.8.0"
|
195
|
-
"@babel/template" "^7.8.0"
|
196
|
-
"@babel/traverse" "^7.8.0"
|
197
|
-
"@babel/types" "^7.8.0"
|
198
|
-
|
199
|
-
"@babel/helper-replace-supers@^7.8.0":
|
200
|
-
version "7.8.0"
|
201
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.0.tgz#d83cb117edb820eebe9ae6c970a8ad5eac09d19f"
|
202
|
-
integrity sha512-R2CyorW4tcO3YzdkClLpt6MS84G+tPkOi0MmiCn1bvYVnmDpdl9R15XOi3NQW2mhOAEeBnuQ4g1Bh7pT2sX8fg==
|
203
|
-
dependencies:
|
204
|
-
"@babel/helper-member-expression-to-functions" "^7.8.0"
|
205
|
-
"@babel/helper-optimise-call-expression" "^7.8.0"
|
206
|
-
"@babel/traverse" "^7.8.0"
|
207
|
-
"@babel/types" "^7.8.0"
|
208
|
-
|
209
|
-
"@babel/helper-simple-access@^7.8.0":
|
210
|
-
version "7.8.0"
|
211
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.0.tgz#a5095ab031f759995134183fa7719aa85f0ec962"
|
212
|
-
integrity sha512-I+7yKZJnxp7VIC2UFzXfVjLiJuU16rYFF59x27c+boINkO/pLETgZcoesCryg9jmU4jxEa0foFueW+2wjc9Gsw==
|
213
|
-
dependencies:
|
214
|
-
"@babel/template" "^7.8.0"
|
215
|
-
"@babel/types" "^7.8.0"
|
216
|
-
|
217
|
-
"@babel/helper-split-export-declaration@^7.8.0":
|
218
|
-
version "7.8.0"
|
219
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.0.tgz#ed10cb03b07454c0d40735fad4e9c9711e739588"
|
220
|
-
integrity sha512-YhYFhH4T6DlbT6CPtVgLfC1Jp2gbCawU/ml7WJvUpBg01bCrXSzTYMZZXbbIGjq/kHmK8YUATxTppcRGzj31pA==
|
221
|
-
dependencies:
|
222
|
-
"@babel/types" "^7.8.0"
|
223
|
-
|
224
|
-
"@babel/helper-wrap-function@^7.8.0":
|
225
|
-
version "7.8.0"
|
226
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.0.tgz#a26751c7b0be765a0db10162c6de485402cb505c"
|
227
|
-
integrity sha512-2j6idN2jt8Y+8nJ4UPN/6AZa53DAkcETMVmroJQh50qZc59PuQKVjgOIIqmrLoQf6Ia9bs90MHRcID1OW5tfag==
|
228
|
-
dependencies:
|
229
|
-
"@babel/helper-function-name" "^7.8.0"
|
230
|
-
"@babel/template" "^7.8.0"
|
231
|
-
"@babel/traverse" "^7.8.0"
|
232
|
-
"@babel/types" "^7.8.0"
|
77
|
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
78
|
+
"@babel/types" "^7.10.4"
|
233
79
|
|
234
|
-
"@babel/
|
235
|
-
version "7.
|
236
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
237
|
-
integrity sha512
|
238
|
-
dependencies:
|
239
|
-
"@babel/template" "^7.8.0"
|
240
|
-
"@babel/traverse" "^7.8.0"
|
241
|
-
"@babel/types" "^7.8.0"
|
242
|
-
|
243
|
-
"@babel/highlight@^7.8.0":
|
244
|
-
version "7.8.0"
|
245
|
-
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.0.tgz#4cc003dc10359919e2e3a1d9459150942913dd1a"
|
246
|
-
integrity sha512-OsdTJbHlPtIk2mmtwXItYrdmalJ8T0zpVzNAbKSkHshuywj7zb29Y09McV/jQsQunc/nEyHiPV2oy9llYMLqxw==
|
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==
|
247
84
|
dependencies:
|
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"
|
89
|
+
|
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"
|
248
264
|
chalk "^2.0.0"
|
249
|
-
esutils "^2.0.2"
|
250
265
|
js-tokens "^4.0.0"
|
251
266
|
|
252
|
-
"@babel/parser@^7.
|
253
|
-
version "7.
|
254
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.
|
255
|
-
integrity sha512-
|
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==
|
256
271
|
|
257
|
-
"@babel/plugin-proposal-async-generator-functions@^7.
|
258
|
-
version "7.
|
259
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.
|
260
|
-
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==
|
261
276
|
dependencies:
|
262
|
-
"@babel/helper-plugin-utils" "^7.
|
263
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
277
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
278
|
+
"@babel/helper-remap-async-to-generator" "^7.12.1"
|
264
279
|
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
265
280
|
|
266
|
-
"@babel/plugin-proposal-
|
267
|
-
version "7.
|
268
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
269
|
-
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==
|
270
285
|
dependencies:
|
271
|
-
"@babel/helper-plugin
|
286
|
+
"@babel/helper-create-class-features-plugin" "^7.12.1"
|
287
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
288
|
+
|
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==
|
293
|
+
dependencies:
|
294
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
272
295
|
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
273
296
|
|
274
|
-
"@babel/plugin-proposal-
|
275
|
-
version "7.
|
276
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
277
|
-
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==
|
278
301
|
dependencies:
|
279
|
-
"@babel/helper-plugin-utils" "^7.
|
302
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
303
|
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
304
|
+
|
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==
|
309
|
+
dependencies:
|
310
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
280
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.
|
318
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
319
|
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
320
|
+
|
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==
|
325
|
+
dependencies:
|
326
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
288
327
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
289
328
|
|
290
|
-
"@babel/plugin-proposal-
|
291
|
-
version "7.
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
293
|
-
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==
|
294
333
|
dependencies:
|
295
|
-
"@babel/helper-plugin-utils" "^7.
|
334
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
335
|
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
336
|
+
|
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==
|
341
|
+
dependencies:
|
342
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
296
343
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
344
|
+
"@babel/plugin-transform-parameters" "^7.12.1"
|
297
345
|
|
298
|
-
"@babel/plugin-proposal-optional-catch-binding@^7.
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.
|
301
|
-
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==
|
302
350
|
dependencies:
|
303
|
-
"@babel/helper-plugin-utils" "^7.
|
351
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
304
352
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
305
353
|
|
306
|
-
"@babel/plugin-proposal-optional-chaining@^7.
|
307
|
-
version "7.
|
308
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.
|
309
|
-
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==
|
310
358
|
dependencies:
|
311
|
-
"@babel/helper-plugin-utils" "^7.
|
359
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
360
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
312
361
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
313
362
|
|
314
|
-
"@babel/plugin-proposal-
|
315
|
-
version "7.
|
316
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
317
|
-
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==
|
318
367
|
dependencies:
|
319
|
-
"@babel/helper-create-
|
320
|
-
"@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"
|
321
378
|
|
322
379
|
"@babel/plugin-syntax-async-generators@^7.8.0":
|
323
|
-
version "7.8.
|
324
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.
|
325
|
-
integrity sha512-
|
380
|
+
version "7.8.4"
|
381
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
382
|
+
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
326
383
|
dependencies:
|
327
384
|
"@babel/helper-plugin-utils" "^7.8.0"
|
328
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
|
+
|
329
393
|
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
330
|
-
version "7.8.
|
331
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.
|
332
|
-
integrity sha512-
|
394
|
+
version "7.8.3"
|
395
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
396
|
+
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
333
397
|
dependencies:
|
334
398
|
"@babel/helper-plugin-utils" "^7.8.0"
|
335
399
|
|
336
|
-
"@babel/plugin-syntax-
|
337
|
-
version "7.8.
|
338
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
339
|
-
integrity sha512-
|
400
|
+
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
|
401
|
+
version "7.8.3"
|
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==
|
340
404
|
dependencies:
|
341
|
-
"@babel/helper-plugin-utils" "^7.8.
|
405
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
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"
|
342
413
|
|
343
414
|
"@babel/plugin-syntax-json-strings@^7.8.0":
|
344
|
-
version "7.8.
|
345
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.
|
346
|
-
integrity sha512-
|
415
|
+
version "7.8.3"
|
416
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
417
|
+
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
347
418
|
dependencies:
|
348
419
|
"@babel/helper-plugin-utils" "^7.8.0"
|
349
420
|
|
350
|
-
"@babel/plugin-syntax-jsx@^7.
|
351
|
-
version "7.
|
352
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.
|
353
|
-
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==
|
354
425
|
dependencies:
|
355
|
-
"@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"
|
356
434
|
|
357
435
|
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
358
|
-
version "7.8.
|
359
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.
|
360
|
-
integrity sha512-
|
436
|
+
version "7.8.3"
|
437
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
438
|
+
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
361
439
|
dependencies:
|
362
440
|
"@babel/helper-plugin-utils" "^7.8.0"
|
363
441
|
|
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==
|
446
|
+
dependencies:
|
447
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
448
|
+
|
364
449
|
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
365
|
-
version "7.8.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.
|
367
|
-
integrity sha512-
|
450
|
+
version "7.8.3"
|
451
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
452
|
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
368
453
|
dependencies:
|
369
454
|
"@babel/helper-plugin-utils" "^7.8.0"
|
370
455
|
|
371
456
|
"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
|
372
|
-
version "7.8.
|
373
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.
|
374
|
-
integrity sha512-
|
457
|
+
version "7.8.3"
|
458
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
459
|
+
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
375
460
|
dependencies:
|
376
461
|
"@babel/helper-plugin-utils" "^7.8.0"
|
377
462
|
|
378
463
|
"@babel/plugin-syntax-optional-chaining@^7.8.0":
|
379
|
-
version "7.8.
|
380
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.
|
381
|
-
integrity sha512-
|
464
|
+
version "7.8.3"
|
465
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
466
|
+
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
382
467
|
dependencies:
|
383
468
|
"@babel/helper-plugin-utils" "^7.8.0"
|
384
469
|
|
385
|
-
"@babel/plugin-syntax-top-level-await@^7.
|
386
|
-
version "7.
|
387
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.
|
388
|
-
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==
|
389
474
|
dependencies:
|
390
|
-
"@babel/helper-plugin-utils" "^7.
|
475
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
391
476
|
|
392
|
-
"@babel/plugin-transform-arrow-functions@^7.
|
393
|
-
version "7.
|
394
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
395
|
-
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==
|
396
481
|
dependencies:
|
397
|
-
"@babel/helper-plugin-utils" "^7.
|
482
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
398
483
|
|
399
|
-
"@babel/plugin-transform-async-to-generator@^7.
|
400
|
-
version "7.
|
401
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
402
|
-
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==
|
403
488
|
dependencies:
|
404
|
-
"@babel/helper-module-imports" "^7.
|
405
|
-
"@babel/helper-plugin-utils" "^7.
|
406
|
-
"@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"
|
407
492
|
|
408
|
-
"@babel/plugin-transform-block-scoped-functions@^7.
|
409
|
-
version "7.
|
410
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
411
|
-
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==
|
412
497
|
dependencies:
|
413
|
-
"@babel/helper-plugin-utils" "^7.
|
498
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
414
499
|
|
415
|
-
"@babel/plugin-transform-block-scoping@^7.
|
416
|
-
version "7.
|
417
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
418
|
-
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==
|
419
504
|
dependencies:
|
420
|
-
"@babel/helper-plugin-utils" "^7.
|
421
|
-
lodash "^4.17.13"
|
505
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
422
506
|
|
423
|
-
"@babel/plugin-transform-classes@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
426
|
-
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==
|
427
511
|
dependencies:
|
428
|
-
"@babel/helper-annotate-as-pure" "^7.
|
429
|
-
"@babel/helper-define-map" "^7.
|
430
|
-
"@babel/helper-function-name" "^7.
|
431
|
-
"@babel/helper-optimise-call-expression" "^7.
|
432
|
-
"@babel/helper-plugin-utils" "^7.
|
433
|
-
"@babel/helper-replace-supers" "^7.
|
434
|
-
"@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"
|
435
519
|
globals "^11.1.0"
|
436
520
|
|
437
|
-
"@babel/plugin-transform-computed-properties@^7.
|
438
|
-
version "7.
|
439
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
440
|
-
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==
|
441
525
|
dependencies:
|
442
|
-
"@babel/helper-plugin-utils" "^7.
|
526
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
443
527
|
|
444
|
-
"@babel/plugin-transform-destructuring@^7.
|
445
|
-
version "7.
|
446
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
447
|
-
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==
|
448
532
|
dependencies:
|
449
|
-
"@babel/helper-plugin-utils" "^7.
|
533
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
450
534
|
|
451
|
-
"@babel/plugin-transform-dotall-regex@^7.
|
452
|
-
version "7.
|
453
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
454
|
-
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==
|
455
539
|
dependencies:
|
456
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
457
|
-
"@babel/helper-plugin-utils" "^7.
|
540
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
541
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
458
542
|
|
459
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
460
|
-
version "7.
|
461
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
462
|
-
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==
|
463
547
|
dependencies:
|
464
|
-
"@babel/helper-plugin-utils" "^7.
|
548
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
465
549
|
|
466
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
467
|
-
version "7.
|
468
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
469
|
-
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==
|
470
554
|
dependencies:
|
471
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
472
|
-
"@babel/helper-plugin-utils" "^7.
|
555
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
|
556
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
473
557
|
|
474
558
|
"@babel/plugin-transform-flow-strip-types@^7.4.4":
|
475
|
-
version "7.
|
476
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.
|
477
|
-
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==
|
478
562
|
dependencies:
|
479
|
-
"@babel/helper-plugin-utils" "^7.
|
480
|
-
"@babel/plugin-syntax-flow" "^7.
|
563
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
564
|
+
"@babel/plugin-syntax-flow" "^7.12.1"
|
481
565
|
|
482
|
-
"@babel/plugin-transform-for-of@^7.
|
483
|
-
version "7.
|
484
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
485
|
-
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==
|
486
570
|
dependencies:
|
487
|
-
"@babel/helper-plugin-utils" "^7.
|
571
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
488
572
|
|
489
|
-
"@babel/plugin-transform-function-name@^7.
|
490
|
-
version "7.
|
491
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
492
|
-
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==
|
493
577
|
dependencies:
|
494
|
-
"@babel/helper-function-name" "^7.
|
495
|
-
"@babel/helper-plugin-utils" "^7.
|
578
|
+
"@babel/helper-function-name" "^7.10.4"
|
579
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
496
580
|
|
497
|
-
"@babel/plugin-transform-literals@^7.
|
498
|
-
version "7.
|
499
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
500
|
-
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==
|
501
585
|
dependencies:
|
502
|
-
"@babel/helper-plugin-utils" "^7.
|
586
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
503
587
|
|
504
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
505
|
-
version "7.
|
506
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
507
|
-
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==
|
508
592
|
dependencies:
|
509
|
-
"@babel/helper-plugin-utils" "^7.
|
593
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
510
594
|
|
511
|
-
"@babel/plugin-transform-modules-amd@^7.
|
512
|
-
version "7.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
514
|
-
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==
|
515
599
|
dependencies:
|
516
|
-
"@babel/helper-module-transforms" "^7.
|
517
|
-
"@babel/helper-plugin-utils" "^7.
|
518
|
-
babel-plugin-dynamic-import-node "^2.3.
|
600
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
601
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
602
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
519
603
|
|
520
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
521
|
-
version "7.
|
522
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
523
|
-
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==
|
524
608
|
dependencies:
|
525
|
-
"@babel/helper-module-transforms" "^7.
|
526
|
-
"@babel/helper-plugin-utils" "^7.
|
527
|
-
"@babel/helper-simple-access" "^7.
|
528
|
-
babel-plugin-dynamic-import-node "^2.3.
|
609
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
610
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
611
|
+
"@babel/helper-simple-access" "^7.12.1"
|
612
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
529
613
|
|
530
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
531
|
-
version "7.
|
532
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
533
|
-
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==
|
534
618
|
dependencies:
|
535
|
-
"@babel/helper-hoist-variables" "^7.
|
536
|
-
"@babel/helper-module-transforms" "^7.
|
537
|
-
"@babel/helper-plugin-utils" "^7.
|
538
|
-
babel-
|
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"
|
623
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
539
624
|
|
540
|
-
"@babel/plugin-transform-modules-umd@^7.
|
541
|
-
version "7.
|
542
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
543
|
-
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==
|
544
629
|
dependencies:
|
545
|
-
"@babel/helper-module-transforms" "^7.
|
546
|
-
"@babel/helper-plugin-utils" "^7.
|
630
|
+
"@babel/helper-module-transforms" "^7.12.1"
|
631
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
547
632
|
|
548
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
549
|
-
version "7.
|
550
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
551
|
-
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==
|
552
637
|
dependencies:
|
553
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
638
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.1"
|
554
639
|
|
555
|
-
"@babel/plugin-transform-new-target@^7.
|
556
|
-
version "7.
|
557
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
558
|
-
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==
|
559
644
|
dependencies:
|
560
|
-
"@babel/helper-plugin-utils" "^7.
|
645
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
561
646
|
|
562
|
-
"@babel/plugin-transform-object-super@^7.
|
563
|
-
version "7.
|
564
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
565
|
-
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==
|
566
651
|
dependencies:
|
567
|
-
"@babel/helper-plugin-utils" "^7.
|
568
|
-
"@babel/helper-replace-supers" "^7.
|
652
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
653
|
+
"@babel/helper-replace-supers" "^7.12.1"
|
569
654
|
|
570
|
-
"@babel/plugin-transform-parameters@^7.
|
571
|
-
version "7.
|
572
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
573
|
-
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==
|
574
659
|
dependencies:
|
575
|
-
"@babel/helper-
|
576
|
-
"@babel/helper-get-function-arity" "^7.8.0"
|
577
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
660
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
578
661
|
|
579
|
-
"@babel/plugin-transform-property-literals@^7.
|
580
|
-
version "7.
|
581
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
582
|
-
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==
|
583
666
|
dependencies:
|
584
|
-
"@babel/helper-plugin-utils" "^7.
|
667
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
585
668
|
|
586
669
|
"@babel/plugin-transform-react-jsx@^7.0.0":
|
587
|
-
version "7.
|
588
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.
|
589
|
-
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==
|
590
673
|
dependencies:
|
591
|
-
"@babel/helper-builder-react-jsx" "^7.
|
592
|
-
"@babel/helper-
|
593
|
-
"@babel/plugin-
|
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"
|
594
678
|
|
595
|
-
"@babel/plugin-transform-regenerator@^7.
|
596
|
-
version "7.
|
597
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
598
|
-
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==
|
599
683
|
dependencies:
|
600
|
-
regenerator-transform "^0.14.
|
684
|
+
regenerator-transform "^0.14.2"
|
601
685
|
|
602
|
-
"@babel/plugin-transform-reserved-words@^7.
|
603
|
-
version "7.
|
604
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
605
|
-
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==
|
606
690
|
dependencies:
|
607
|
-
"@babel/helper-plugin-utils" "^7.
|
691
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
608
692
|
|
609
|
-
"@babel/plugin-transform-shorthand-properties@^7.
|
610
|
-
version "7.
|
611
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
612
|
-
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==
|
613
697
|
dependencies:
|
614
|
-
"@babel/helper-plugin-utils" "^7.
|
698
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
615
699
|
|
616
|
-
"@babel/plugin-transform-spread@^7.
|
617
|
-
version "7.
|
618
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
619
|
-
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==
|
620
704
|
dependencies:
|
621
|
-
"@babel/helper-plugin-utils" "^7.
|
705
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
706
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
622
707
|
|
623
|
-
"@babel/plugin-transform-sticky-regex@^7.
|
624
|
-
version "7.
|
625
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
626
|
-
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==
|
627
712
|
dependencies:
|
628
|
-
"@babel/helper-plugin-utils" "^7.
|
629
|
-
"@babel/helper-regex" "^7.8.0"
|
713
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
630
714
|
|
631
|
-
"@babel/plugin-transform-template-literals@^7.
|
632
|
-
version "7.
|
633
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
634
|
-
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==
|
635
719
|
dependencies:
|
636
|
-
"@babel/helper-
|
637
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
720
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
638
721
|
|
639
|
-
"@babel/plugin-transform-typeof-symbol@^7.
|
640
|
-
version "7.
|
641
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
642
|
-
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==
|
643
726
|
dependencies:
|
644
|
-
"@babel/helper-plugin-utils" "^7.
|
727
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
645
728
|
|
646
|
-
"@babel/plugin-transform-unicode-
|
647
|
-
version "7.
|
648
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-
|
649
|
-
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==
|
650
733
|
dependencies:
|
651
|
-
"@babel/helper-
|
652
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
734
|
+
"@babel/helper-plugin-utils" "^7.10.4"
|
653
735
|
|
654
|
-
"@babel/
|
655
|
-
version "7.
|
656
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
657
|
-
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==
|
658
740
|
dependencies:
|
659
|
-
"@babel/
|
660
|
-
"@babel/helper-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
"@babel/
|
668
|
-
"@babel/
|
669
|
-
"@babel/
|
670
|
-
"@babel/plugin-
|
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"
|
671
767
|
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
768
|
+
"@babel/plugin-syntax-class-properties" "^7.12.1"
|
672
769
|
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
770
|
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
673
771
|
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
772
|
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
674
773
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
774
|
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
675
775
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
676
776
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
677
777
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
678
|
-
"@babel/plugin-syntax-top-level-await" "^7.
|
679
|
-
"@babel/plugin-transform-arrow-functions" "^7.
|
680
|
-
"@babel/plugin-transform-async-to-generator" "^7.
|
681
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.
|
682
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
683
|
-
"@babel/plugin-transform-classes" "^7.
|
684
|
-
"@babel/plugin-transform-computed-properties" "^7.
|
685
|
-
"@babel/plugin-transform-destructuring" "^7.
|
686
|
-
"@babel/plugin-transform-dotall-regex" "^7.
|
687
|
-
"@babel/plugin-transform-duplicate-keys" "^7.
|
688
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.
|
689
|
-
"@babel/plugin-transform-for-of" "^7.
|
690
|
-
"@babel/plugin-transform-function-name" "^7.
|
691
|
-
"@babel/plugin-transform-literals" "^7.
|
692
|
-
"@babel/plugin-transform-member-expression-literals" "^7.
|
693
|
-
"@babel/plugin-transform-modules-amd" "^7.
|
694
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
695
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
696
|
-
"@babel/plugin-transform-modules-umd" "^7.
|
697
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.
|
698
|
-
"@babel/plugin-transform-new-target" "^7.
|
699
|
-
"@babel/plugin-transform-object-super" "^7.
|
700
|
-
"@babel/plugin-transform-parameters" "^7.
|
701
|
-
"@babel/plugin-transform-property-literals" "^7.
|
702
|
-
"@babel/plugin-transform-regenerator" "^7.
|
703
|
-
"@babel/plugin-transform-reserved-words" "^7.
|
704
|
-
"@babel/plugin-transform-shorthand-properties" "^7.
|
705
|
-
"@babel/plugin-transform-spread" "^7.
|
706
|
-
"@babel/plugin-transform-sticky-regex" "^7.
|
707
|
-
"@babel/plugin-transform-template-literals" "^7.
|
708
|
-
"@babel/plugin-transform-typeof-symbol" "^7.
|
709
|
-
"@babel/plugin-transform-unicode-
|
710
|
-
"@babel/
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
levenary "^1.1.0"
|
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"
|
811
|
+
"@babel/preset-modules" "^0.1.3"
|
812
|
+
"@babel/types" "^7.12.7"
|
813
|
+
core-js-compat "^3.7.0"
|
715
814
|
semver "^5.5.0"
|
716
815
|
|
717
|
-
"@babel/
|
718
|
-
version "
|
719
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
720
|
-
integrity sha512-
|
721
|
-
dependencies:
|
722
|
-
|
723
|
-
|
724
|
-
"@babel/
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
"
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
"@babel/
|
741
|
-
"@babel/
|
742
|
-
"@babel/
|
743
|
-
|
816
|
+
"@babel/preset-modules@^0.1.3":
|
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==
|
820
|
+
dependencies:
|
821
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
822
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
823
|
+
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
824
|
+
"@babel/types" "^7.4.4"
|
825
|
+
esutils "^2.0.2"
|
826
|
+
|
827
|
+
"@babel/runtime@^7.4.4", "@babel/runtime@^7.8.4":
|
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==
|
831
|
+
dependencies:
|
832
|
+
regenerator-runtime "^0.13.4"
|
833
|
+
|
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"
|
744
854
|
debug "^4.1.0"
|
745
855
|
globals "^11.1.0"
|
746
|
-
lodash "^4.17.
|
856
|
+
lodash "^4.17.19"
|
747
857
|
|
748
|
-
"@babel/types@^7.
|
749
|
-
version "7.
|
750
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
751
|
-
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==
|
752
862
|
dependencies:
|
753
|
-
|
754
|
-
lodash "^4.17.
|
863
|
+
"@babel/helper-validator-identifier" "^7.10.4"
|
864
|
+
lodash "^4.17.19"
|
755
865
|
to-fast-properties "^2.0.0"
|
756
866
|
|
867
|
+
"@fullhuman/postcss-purgecss@^2.1.2":
|
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==
|
871
|
+
dependencies:
|
872
|
+
postcss "7.0.32"
|
873
|
+
purgecss "^2.3.0"
|
874
|
+
|
757
875
|
"@iarna/toml@^2.2.0":
|
758
|
-
version "2.2.
|
759
|
-
resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.
|
760
|
-
integrity sha512-
|
876
|
+
version "2.2.5"
|
877
|
+
resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c"
|
878
|
+
integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==
|
761
879
|
|
762
880
|
"@mrmlnc/readdir-enhanced@^2.2.1":
|
763
881
|
version "2.2.1"
|
@@ -814,48 +932,43 @@
|
|
814
932
|
physical-cpu-count "^2.0.0"
|
815
933
|
|
816
934
|
"@rails/ujs@^6.0.2-1":
|
817
|
-
version "6.0.
|
818
|
-
resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.
|
819
|
-
integrity sha512-
|
935
|
+
version "6.0.3"
|
936
|
+
resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.3.tgz#e68a03278e30daea6a110aac5dfa33c60c53055d"
|
937
|
+
integrity sha512-CM9OEvoN9eXkaX7PXEnbsQLULJ97b9rVmwliZbz/iBOERLJ68Rk3ClJe+fQEMKU4CBZfky2lIRnfslOdUs9SLQ==
|
820
938
|
|
821
|
-
"@stimulus/core@^
|
822
|
-
version "
|
823
|
-
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-
|
824
|
-
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==
|
825
943
|
dependencies:
|
826
|
-
"@stimulus/mutation-observers" "^
|
944
|
+
"@stimulus/mutation-observers" "^2.0.0"
|
827
945
|
|
828
|
-
"@stimulus/multimap@^
|
829
|
-
version "
|
830
|
-
resolved "https://registry.yarnpkg.com/@stimulus/multimap/-/multimap-
|
831
|
-
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==
|
832
950
|
|
833
|
-
"@stimulus/mutation-observers@^
|
834
|
-
version "
|
835
|
-
resolved "https://registry.yarnpkg.com/@stimulus/mutation-observers/-/mutation-observers-
|
836
|
-
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==
|
837
955
|
dependencies:
|
838
|
-
"@stimulus/multimap" "^
|
839
|
-
|
840
|
-
"@stimulus/webpack-helpers@^1.1.1":
|
841
|
-
version "1.1.1"
|
842
|
-
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-1.1.1.tgz#eff60cd4e58b921d1a2764dc5215f5141510f2c2"
|
843
|
-
integrity sha512-XOkqSw53N9072FLHvpLM25PIwy+ndkSSbnTtjKuyzsv8K5yfkFB2rv68jU1pzqYa9FZLcvZWP4yazC0V38dx9A==
|
956
|
+
"@stimulus/multimap" "^2.0.0"
|
844
957
|
|
845
|
-
"@
|
846
|
-
version "
|
847
|
-
resolved "https://registry.yarnpkg.com/@
|
848
|
-
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==
|
849
962
|
|
850
963
|
"@types/q@^1.5.1":
|
851
|
-
version "1.5.
|
852
|
-
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.
|
853
|
-
integrity sha512-
|
964
|
+
version "1.5.4"
|
965
|
+
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
|
966
|
+
integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
|
854
967
|
|
855
968
|
abab@^2.0.0:
|
856
|
-
version "2.0.
|
857
|
-
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.
|
858
|
-
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==
|
859
972
|
|
860
973
|
acorn-globals@^4.3.0:
|
861
974
|
version "4.3.4"
|
@@ -880,31 +993,26 @@ acorn-walk@^6.0.1:
|
|
880
993
|
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
881
994
|
|
882
995
|
acorn-walk@^7.0.0:
|
883
|
-
version "7.
|
884
|
-
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.
|
885
|
-
integrity sha512-
|
886
|
-
|
887
|
-
acorn@^5.0.0:
|
888
|
-
version "5.7.3"
|
889
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
|
890
|
-
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
|
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==
|
891
999
|
|
892
1000
|
acorn@^6.0.1, acorn@^6.0.4:
|
893
|
-
version "6.4.
|
894
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.
|
895
|
-
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==
|
896
1004
|
|
897
|
-
acorn@^7.0.0:
|
898
|
-
version "7.1
|
899
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.
|
900
|
-
integrity sha512-
|
1005
|
+
acorn@^7.0.0, acorn@^7.1.1:
|
1006
|
+
version "7.4.1"
|
1007
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
1008
|
+
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
901
1009
|
|
902
|
-
ajv@^6.
|
903
|
-
version "6.
|
904
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.
|
905
|
-
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==
|
906
1014
|
dependencies:
|
907
|
-
fast-deep-equal "^
|
1015
|
+
fast-deep-equal "^3.1.1"
|
908
1016
|
fast-json-stable-stringify "^2.0.0"
|
909
1017
|
json-schema-traverse "^0.4.1"
|
910
1018
|
uri-js "^4.2.2"
|
@@ -924,17 +1032,12 @@ ansi-regex@^3.0.0:
|
|
924
1032
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
925
1033
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
926
1034
|
|
927
|
-
ansi-regex@^4.1.0:
|
928
|
-
version "4.1.0"
|
929
|
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
930
|
-
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
931
|
-
|
932
1035
|
ansi-styles@^2.2.1:
|
933
1036
|
version "2.2.1"
|
934
1037
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
935
1038
|
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
|
936
1039
|
|
937
|
-
ansi-styles@^3.2.
|
1040
|
+
ansi-styles@^3.2.1:
|
938
1041
|
version "3.2.1"
|
939
1042
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
940
1043
|
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
@@ -942,17 +1045,16 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
942
1045
|
color-convert "^1.9.0"
|
943
1046
|
|
944
1047
|
ansi-styles@^4.1.0:
|
945
|
-
version "4.
|
946
|
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.
|
947
|
-
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==
|
948
1051
|
dependencies:
|
949
|
-
"@types/color-name" "^1.1.1"
|
950
1052
|
color-convert "^2.0.1"
|
951
1053
|
|
952
1054
|
ansi-to-html@^0.6.4:
|
953
|
-
version "0.6.
|
954
|
-
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.
|
955
|
-
integrity sha512-
|
1055
|
+
version "0.6.14"
|
1056
|
+
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8"
|
1057
|
+
integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==
|
956
1058
|
dependencies:
|
957
1059
|
entities "^1.1.2"
|
958
1060
|
|
@@ -996,14 +1098,15 @@ array-unique@^0.3.2:
|
|
996
1098
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
997
1099
|
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
998
1100
|
|
999
|
-
asn1.js@^
|
1000
|
-
version "4.
|
1001
|
-
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.
|
1002
|
-
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==
|
1003
1105
|
dependencies:
|
1004
1106
|
bn.js "^4.0.0"
|
1005
1107
|
inherits "^2.0.1"
|
1006
1108
|
minimalistic-assert "^1.0.0"
|
1109
|
+
safer-buffer "^2.1.0"
|
1007
1110
|
|
1008
1111
|
asn1@~0.2.3:
|
1009
1112
|
version "0.2.4"
|
@@ -1051,17 +1154,17 @@ atob@^2.1.2:
|
|
1051
1154
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1052
1155
|
|
1053
1156
|
autoprefixer@^9.4.5:
|
1054
|
-
version "9.
|
1055
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.
|
1056
|
-
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==
|
1057
1160
|
dependencies:
|
1058
|
-
browserslist "^4.
|
1059
|
-
caniuse-lite "^1.0.
|
1060
|
-
|
1161
|
+
browserslist "^4.12.0"
|
1162
|
+
caniuse-lite "^1.0.30001109"
|
1163
|
+
colorette "^1.2.1"
|
1061
1164
|
normalize-range "^0.1.2"
|
1062
1165
|
num2fraction "^1.2.2"
|
1063
|
-
postcss "^7.0.
|
1064
|
-
postcss-value-parser "^4.0
|
1166
|
+
postcss "^7.0.32"
|
1167
|
+
postcss-value-parser "^4.1.0"
|
1065
1168
|
|
1066
1169
|
aws-sign2@~0.7.0:
|
1067
1170
|
version "0.7.0"
|
@@ -1069,14 +1172,14 @@ aws-sign2@~0.7.0:
|
|
1069
1172
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
1070
1173
|
|
1071
1174
|
aws4@^1.8.0:
|
1072
|
-
version "1.
|
1073
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
1074
|
-
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==
|
1075
1178
|
|
1076
|
-
babel-plugin-dynamic-import-node@^2.3.
|
1077
|
-
version "2.3.
|
1078
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.
|
1079
|
-
integrity sha512-
|
1179
|
+
babel-plugin-dynamic-import-node@^2.3.3:
|
1180
|
+
version "2.3.3"
|
1181
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
|
1182
|
+
integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
|
1080
1183
|
dependencies:
|
1081
1184
|
object.assign "^4.1.0"
|
1082
1185
|
|
@@ -1113,9 +1216,9 @@ balanced-match@^1.0.0:
|
|
1113
1216
|
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
|
1114
1217
|
|
1115
1218
|
base64-js@^1.0.2:
|
1116
|
-
version "1.
|
1117
|
-
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.
|
1118
|
-
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==
|
1119
1222
|
|
1120
1223
|
base@^0.11.1:
|
1121
1224
|
version "0.11.2"
|
@@ -1149,10 +1252,15 @@ bindings@^1.5.0:
|
|
1149
1252
|
dependencies:
|
1150
1253
|
file-uri-to-path "1.0.0"
|
1151
1254
|
|
1152
|
-
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.
|
1153
|
-
version "4.11.
|
1154
|
-
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.
|
1155
|
-
integrity sha512-
|
1255
|
+
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
|
1256
|
+
version "4.11.9"
|
1257
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
|
1258
|
+
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
1259
|
+
|
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==
|
1156
1264
|
|
1157
1265
|
boolbase@^1.0.0, boolbase@~1.0.0:
|
1158
1266
|
version "1.0.0"
|
@@ -1198,10 +1306,10 @@ brorand@^1.0.1:
|
|
1198
1306
|
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
1199
1307
|
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
|
1200
1308
|
|
1201
|
-
browser-process-hrtime@^0.
|
1202
|
-
version "0.
|
1203
|
-
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.
|
1204
|
-
integrity sha512-
|
1309
|
+
browser-process-hrtime@^1.0.0:
|
1310
|
+
version "1.0.0"
|
1311
|
+
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
|
1312
|
+
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
|
1205
1313
|
|
1206
1314
|
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
|
1207
1315
|
version "1.2.0"
|
@@ -1234,26 +1342,28 @@ browserify-des@^1.0.0:
|
|
1234
1342
|
inherits "^2.0.1"
|
1235
1343
|
safe-buffer "^5.1.2"
|
1236
1344
|
|
1237
|
-
browserify-rsa@^4.0.0:
|
1238
|
-
version "4.0
|
1239
|
-
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.
|
1240
|
-
integrity
|
1345
|
+
browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
|
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==
|
1241
1349
|
dependencies:
|
1242
|
-
bn.js "^
|
1350
|
+
bn.js "^5.0.0"
|
1243
1351
|
randombytes "^2.0.1"
|
1244
1352
|
|
1245
1353
|
browserify-sign@^4.0.0:
|
1246
|
-
version "4.
|
1247
|
-
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.
|
1248
|
-
integrity
|
1249
|
-
dependencies:
|
1250
|
-
bn.js "^
|
1251
|
-
browserify-rsa "^4.0.
|
1252
|
-
create-hash "^1.
|
1253
|
-
create-hmac "^1.1.
|
1254
|
-
elliptic "^6.
|
1255
|
-
inherits "^2.0.
|
1256
|
-
parse-asn1 "^5.
|
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==
|
1357
|
+
dependencies:
|
1358
|
+
bn.js "^5.1.1"
|
1359
|
+
browserify-rsa "^4.0.1"
|
1360
|
+
create-hash "^1.2.0"
|
1361
|
+
create-hmac "^1.1.7"
|
1362
|
+
elliptic "^6.5.3"
|
1363
|
+
inherits "^2.0.4"
|
1364
|
+
parse-asn1 "^5.1.5"
|
1365
|
+
readable-stream "^3.6.0"
|
1366
|
+
safe-buffer "^5.2.0"
|
1257
1367
|
|
1258
1368
|
browserify-zlib@^0.2.0:
|
1259
1369
|
version "0.2.0"
|
@@ -1262,14 +1372,16 @@ browserify-zlib@^0.2.0:
|
|
1262
1372
|
dependencies:
|
1263
1373
|
pako "~1.0.5"
|
1264
1374
|
|
1265
|
-
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.
|
1266
|
-
version "4.
|
1267
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1268
|
-
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==
|
1269
1379
|
dependencies:
|
1270
|
-
caniuse-lite "^1.0.
|
1271
|
-
|
1272
|
-
|
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"
|
1273
1385
|
|
1274
1386
|
buffer-equal@0.0.1:
|
1275
1387
|
version "0.0.1"
|
@@ -1320,6 +1432,14 @@ cache-base@^1.0.1:
|
|
1320
1432
|
union-value "^1.0.0"
|
1321
1433
|
unset-value "^1.0.0"
|
1322
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
|
+
|
1323
1443
|
call-me-maybe@^1.0.1:
|
1324
1444
|
version "1.0.1"
|
1325
1445
|
resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
|
@@ -1349,11 +1469,6 @@ camelcase-css@^2.0.1:
|
|
1349
1469
|
resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
|
1350
1470
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
1351
1471
|
|
1352
|
-
camelcase@^5.0.0:
|
1353
|
-
version "5.3.1"
|
1354
|
-
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1355
|
-
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
1356
|
-
|
1357
1472
|
caniuse-api@^3.0.0:
|
1358
1473
|
version "3.0.0"
|
1359
1474
|
resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
|
@@ -1364,15 +1479,10 @@ caniuse-api@^3.0.0:
|
|
1364
1479
|
lodash.memoize "^4.1.2"
|
1365
1480
|
lodash.uniq "^4.5.0"
|
1366
1481
|
|
1367
|
-
caniuse-lite@^1.0.0:
|
1368
|
-
version "1.0.
|
1369
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1370
|
-
integrity sha512-
|
1371
|
-
|
1372
|
-
caniuse-lite@^1.0.30001017, caniuse-lite@^1.0.30001020:
|
1373
|
-
version "1.0.30001027"
|
1374
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001027.tgz#283e2ef17d94889cc216a22c6f85303d78ca852d"
|
1375
|
-
integrity sha512-7xvKeErvXZFtUItTHgNtLgS9RJpVnwBlWX8jSo/BO8VsF6deszemZSkJJJA1KOKrXuzZH4WALpAJdq5EyfgMLg==
|
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==
|
1376
1486
|
|
1377
1487
|
caseless@~0.12.0:
|
1378
1488
|
version "0.12.0"
|
@@ -1399,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
|
|
1399
1509
|
escape-string-regexp "^1.0.5"
|
1400
1510
|
supports-color "^5.3.0"
|
1401
1511
|
|
1402
|
-
chalk@^3.0.0:
|
1403
|
-
version "
|
1404
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-
|
1405
|
-
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==
|
1406
1516
|
dependencies:
|
1407
1517
|
ansi-styles "^4.1.0"
|
1408
1518
|
supports-color "^7.1.0"
|
@@ -1456,15 +1566,6 @@ cli-spinners@^1.1.0:
|
|
1456
1566
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a"
|
1457
1567
|
integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
|
1458
1568
|
|
1459
|
-
cliui@^5.0.0:
|
1460
|
-
version "5.0.0"
|
1461
|
-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
|
1462
|
-
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
|
1463
|
-
dependencies:
|
1464
|
-
string-width "^3.1.0"
|
1465
|
-
strip-ansi "^5.2.0"
|
1466
|
-
wrap-ansi "^5.1.0"
|
1467
|
-
|
1468
1569
|
clone@^1.0.2:
|
1469
1570
|
version "1.0.4"
|
1470
1571
|
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
|
@@ -1516,21 +1617,26 @@ color-name@^1.0.0, color-name@~1.1.4:
|
|
1516
1617
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1517
1618
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
1518
1619
|
|
1519
|
-
color-string@^1.5.
|
1520
|
-
version "1.5.
|
1521
|
-
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.
|
1522
|
-
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==
|
1523
1624
|
dependencies:
|
1524
1625
|
color-name "^1.0.0"
|
1525
1626
|
simple-swizzle "^0.2.2"
|
1526
1627
|
|
1527
|
-
color@^3.0.0:
|
1528
|
-
version "3.1.
|
1529
|
-
resolved "https://registry.yarnpkg.com/color/-/color-3.1.
|
1530
|
-
integrity sha512-
|
1628
|
+
color@^3.0.0, color@^3.1.2:
|
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==
|
1531
1632
|
dependencies:
|
1532
1633
|
color-convert "^1.9.1"
|
1533
|
-
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==
|
1534
1640
|
|
1535
1641
|
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
1536
1642
|
version "1.0.8"
|
@@ -1540,15 +1646,20 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
|
|
1540
1646
|
delayed-stream "~1.0.0"
|
1541
1647
|
|
1542
1648
|
command-exists@^1.2.6:
|
1543
|
-
version "1.2.
|
1544
|
-
resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.
|
1545
|
-
integrity sha512-
|
1649
|
+
version "1.2.9"
|
1650
|
+
resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69"
|
1651
|
+
integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==
|
1546
1652
|
|
1547
1653
|
commander@^2.11.0, commander@^2.19.0, commander@^2.20.0:
|
1548
1654
|
version "2.20.3"
|
1549
1655
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
1550
1656
|
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
1551
1657
|
|
1658
|
+
commander@^5.0.0:
|
1659
|
+
version "5.1.0"
|
1660
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
|
1661
|
+
integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
|
1662
|
+
|
1552
1663
|
component-emitter@^1.2.1:
|
1553
1664
|
version "1.3.0"
|
1554
1665
|
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
@@ -1591,18 +1702,18 @@ copy-descriptor@^0.1.0:
|
|
1591
1702
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1592
1703
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1593
1704
|
|
1594
|
-
core-js-compat@^3.
|
1595
|
-
version "3.
|
1596
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1597
|
-
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==
|
1598
1709
|
dependencies:
|
1599
|
-
browserslist "^4.
|
1710
|
+
browserslist "^4.14.7"
|
1600
1711
|
semver "7.0.0"
|
1601
1712
|
|
1602
1713
|
core-js@^2.4.0, core-js@^2.6.5:
|
1603
|
-
version "2.6.
|
1604
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.
|
1605
|
-
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==
|
1606
1717
|
|
1607
1718
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1608
1719
|
version "1.0.2"
|
@@ -1620,14 +1731,14 @@ cosmiconfig@^5.0.0:
|
|
1620
1731
|
parse-json "^4.0.0"
|
1621
1732
|
|
1622
1733
|
create-ecdh@^4.0.0:
|
1623
|
-
version "4.0.
|
1624
|
-
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.
|
1625
|
-
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==
|
1626
1737
|
dependencies:
|
1627
1738
|
bn.js "^4.1.0"
|
1628
|
-
elliptic "^6.
|
1739
|
+
elliptic "^6.5.3"
|
1629
1740
|
|
1630
|
-
create-hash@^1.1.0, create-hash@^1.1.2:
|
1741
|
+
create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
|
1631
1742
|
version "1.2.0"
|
1632
1743
|
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
|
1633
1744
|
integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
|
@@ -1638,7 +1749,7 @@ create-hash@^1.1.0, create-hash@^1.1.2:
|
|
1638
1749
|
ripemd160 "^2.0.1"
|
1639
1750
|
sha.js "^2.4.0"
|
1640
1751
|
|
1641
|
-
create-hmac@^1.1.0, create-hmac@^1.1.
|
1752
|
+
create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
|
1642
1753
|
version "1.1.7"
|
1643
1754
|
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
|
1644
1755
|
integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
|
@@ -1719,13 +1830,12 @@ css-select@^2.0.0:
|
|
1719
1830
|
nth-check "^1.0.2"
|
1720
1831
|
|
1721
1832
|
css-selector-tokenizer@^0.7.0:
|
1722
|
-
version "0.7.
|
1723
|
-
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.
|
1724
|
-
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==
|
1725
1836
|
dependencies:
|
1726
|
-
cssesc "^0.
|
1727
|
-
fastparse "^1.1.
|
1728
|
-
regexpu-core "^1.0.0"
|
1837
|
+
cssesc "^3.0.0"
|
1838
|
+
fastparse "^1.1.2"
|
1729
1839
|
|
1730
1840
|
css-tree@1.0.0-alpha.37:
|
1731
1841
|
version "1.0.0-alpha.37"
|
@@ -1735,25 +1845,23 @@ css-tree@1.0.0-alpha.37:
|
|
1735
1845
|
mdn-data "2.0.4"
|
1736
1846
|
source-map "^0.6.1"
|
1737
1847
|
|
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==
|
1852
|
+
dependencies:
|
1853
|
+
mdn-data "2.0.14"
|
1854
|
+
source-map "^0.6.1"
|
1855
|
+
|
1738
1856
|
css-unit-converter@^1.1.1:
|
1739
|
-
version "1.1.
|
1740
|
-
resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.
|
1741
|
-
integrity
|
1857
|
+
version "1.1.2"
|
1858
|
+
resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21"
|
1859
|
+
integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==
|
1742
1860
|
|
1743
1861
|
css-what@^3.2.1:
|
1744
|
-
version "3.2
|
1745
|
-
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.
|
1746
|
-
integrity sha512-
|
1747
|
-
|
1748
|
-
cssesc@^0.1.0:
|
1749
|
-
version "0.1.0"
|
1750
|
-
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
|
1751
|
-
integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
|
1752
|
-
|
1753
|
-
cssesc@^2.0.0:
|
1754
|
-
version "2.0.0"
|
1755
|
-
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
|
1756
|
-
integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
|
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==
|
1757
1865
|
|
1758
1866
|
cssesc@^3.0.0:
|
1759
1867
|
version "3.0.0"
|
@@ -1829,11 +1937,11 @@ cssnano@^4.0.0, cssnano@^4.1.10:
|
|
1829
1937
|
postcss "^7.0.0"
|
1830
1938
|
|
1831
1939
|
csso@^4.0.2:
|
1832
|
-
version "4.0
|
1833
|
-
resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.
|
1834
|
-
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==
|
1835
1943
|
dependencies:
|
1836
|
-
css-tree "1.
|
1944
|
+
css-tree "^1.1.2"
|
1837
1945
|
|
1838
1946
|
cssom@0.3.x, cssom@^0.3.4:
|
1839
1947
|
version "0.3.8"
|
@@ -1864,9 +1972,9 @@ data-urls@^1.1.0:
|
|
1864
1972
|
whatwg-url "^7.0.0"
|
1865
1973
|
|
1866
1974
|
deasync@^0.1.14:
|
1867
|
-
version "0.1.
|
1868
|
-
resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.
|
1869
|
-
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==
|
1870
1978
|
dependencies:
|
1871
1979
|
bindings "^1.5.0"
|
1872
1980
|
node-addon-api "^1.7.1"
|
@@ -1879,16 +1987,11 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
|
|
1879
1987
|
ms "2.0.0"
|
1880
1988
|
|
1881
1989
|
debug@^4.1.0:
|
1882
|
-
version "4.
|
1883
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.
|
1884
|
-
integrity sha512-
|
1990
|
+
version "4.3.1"
|
1991
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
1992
|
+
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
1885
1993
|
dependencies:
|
1886
|
-
ms "
|
1887
|
-
|
1888
|
-
decamelize@^1.2.0:
|
1889
|
-
version "1.2.0"
|
1890
|
-
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1891
|
-
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
1994
|
+
ms "2.1.2"
|
1892
1995
|
|
1893
1996
|
decode-uri-component@^0.2.0:
|
1894
1997
|
version "0.2.0"
|
@@ -1907,7 +2010,7 @@ defaults@^1.0.3:
|
|
1907
2010
|
dependencies:
|
1908
2011
|
clone "^1.0.2"
|
1909
2012
|
|
1910
|
-
define-properties@^1.1.
|
2013
|
+
define-properties@^1.1.3:
|
1911
2014
|
version "1.1.3"
|
1912
2015
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
1913
2016
|
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
|
@@ -2001,9 +2104,9 @@ domelementtype@1, domelementtype@^1.3.1:
|
|
2001
2104
|
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
|
2002
2105
|
|
2003
2106
|
domelementtype@^2.0.1:
|
2004
|
-
version "2.0
|
2005
|
-
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.
|
2006
|
-
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==
|
2007
2110
|
|
2008
2111
|
domexception@^1.0.1:
|
2009
2112
|
version "1.0.1"
|
@@ -2027,12 +2130,12 @@ domutils@^1.5.1, domutils@^1.7.0:
|
|
2027
2130
|
dom-serializer "0"
|
2028
2131
|
domelementtype "1"
|
2029
2132
|
|
2030
|
-
dot-prop@^
|
2031
|
-
version "
|
2032
|
-
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-
|
2033
|
-
integrity sha512-
|
2133
|
+
dot-prop@^5.2.0:
|
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==
|
2034
2137
|
dependencies:
|
2035
|
-
is-obj "^
|
2138
|
+
is-obj "^2.0.0"
|
2036
2139
|
|
2037
2140
|
dotenv-expand@^5.1.0:
|
2038
2141
|
version "5.1.0"
|
@@ -2064,15 +2167,15 @@ ee-first@1.1.1:
|
|
2064
2167
|
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
2065
2168
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
2066
2169
|
|
2067
|
-
electron-to-chromium@^1.3.
|
2068
|
-
version "1.3.
|
2069
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2070
|
-
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==
|
2071
2174
|
|
2072
|
-
elliptic@^6.
|
2073
|
-
version "6.5.
|
2074
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.
|
2075
|
-
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==
|
2076
2179
|
dependencies:
|
2077
2180
|
bn.js "^4.4.0"
|
2078
2181
|
brorand "^1.0.1"
|
@@ -2082,11 +2185,6 @@ elliptic@^6.0.0:
|
|
2082
2185
|
minimalistic-assert "^1.0.0"
|
2083
2186
|
minimalistic-crypto-utils "^1.0.0"
|
2084
2187
|
|
2085
|
-
emoji-regex@^7.0.1:
|
2086
|
-
version "7.0.3"
|
2087
|
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
|
2088
|
-
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
|
2089
|
-
|
2090
2188
|
encodeurl@~1.0.2:
|
2091
2189
|
version "1.0.2"
|
2092
2190
|
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
@@ -2098,14 +2196,14 @@ entities@^1.1.1, entities@^1.1.2:
|
|
2098
2196
|
integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
|
2099
2197
|
|
2100
2198
|
entities@^2.0.0:
|
2101
|
-
version "2.
|
2102
|
-
resolved "https://registry.yarnpkg.com/entities/-/entities-2.
|
2103
|
-
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==
|
2104
2202
|
|
2105
2203
|
envinfo@^7.3.1:
|
2106
|
-
version "7.
|
2107
|
-
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.
|
2108
|
-
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==
|
2109
2207
|
|
2110
2208
|
error-ex@^1.3.1:
|
2111
2209
|
version "1.3.2"
|
@@ -2114,22 +2212,40 @@ error-ex@^1.3.1:
|
|
2114
2212
|
dependencies:
|
2115
2213
|
is-arrayish "^0.2.1"
|
2116
2214
|
|
2117
|
-
es-abstract@^1.17.
|
2118
|
-
version "1.17.
|
2119
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.
|
2120
|
-
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==
|
2121
2219
|
dependencies:
|
2122
2220
|
es-to-primitive "^1.2.1"
|
2123
2221
|
function-bind "^1.1.1"
|
2124
2222
|
has "^1.0.3"
|
2125
2223
|
has-symbols "^1.0.1"
|
2126
|
-
is-callable "^1.
|
2127
|
-
is-regex "^1.
|
2128
|
-
object-inspect "^1.
|
2224
|
+
is-callable "^1.2.2"
|
2225
|
+
is-regex "^1.1.1"
|
2226
|
+
object-inspect "^1.8.0"
|
2129
2227
|
object-keys "^1.1.1"
|
2130
|
-
object.assign "^4.1.
|
2131
|
-
string.prototype.
|
2132
|
-
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"
|
2133
2249
|
|
2134
2250
|
es-to-primitive@^1.2.1:
|
2135
2251
|
version "1.2.1"
|
@@ -2140,6 +2256,11 @@ es-to-primitive@^1.2.1:
|
|
2140
2256
|
is-date-object "^1.0.1"
|
2141
2257
|
is-symbol "^1.0.2"
|
2142
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
|
+
|
2143
2264
|
escape-html@~1.0.3:
|
2144
2265
|
version "1.0.3"
|
2145
2266
|
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
@@ -2151,11 +2272,11 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
2151
2272
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
2152
2273
|
|
2153
2274
|
escodegen@^1.11.0, escodegen@^1.11.1:
|
2154
|
-
version "1.
|
2155
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.
|
2156
|
-
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==
|
2157
2278
|
dependencies:
|
2158
|
-
esprima "^
|
2279
|
+
esprima "^4.0.1"
|
2159
2280
|
estraverse "^4.2.0"
|
2160
2281
|
esutils "^2.0.2"
|
2161
2282
|
optionator "^0.8.1"
|
@@ -2179,7 +2300,7 @@ esprima@^3.1.3:
|
|
2179
2300
|
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
|
2180
2301
|
integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
|
2181
2302
|
|
2182
|
-
esprima@^4.0.0:
|
2303
|
+
esprima@^4.0.0, esprima@^4.0.1:
|
2183
2304
|
version "4.0.1"
|
2184
2305
|
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
2185
2306
|
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
@@ -2189,7 +2310,7 @@ estraverse@^4.2.0:
|
|
2189
2310
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
2190
2311
|
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
2191
2312
|
|
2192
|
-
esutils@^2.0.
|
2313
|
+
esutils@^2.0.2:
|
2193
2314
|
version "2.0.3"
|
2194
2315
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
2195
2316
|
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
@@ -2200,9 +2321,9 @@ etag@~1.8.1:
|
|
2200
2321
|
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
|
2201
2322
|
|
2202
2323
|
events@^3.0.0:
|
2203
|
-
version "3.
|
2204
|
-
resolved "https://registry.yarnpkg.com/events/-/events-3.
|
2205
|
-
integrity sha512
|
2324
|
+
version "3.2.0"
|
2325
|
+
resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
|
2326
|
+
integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
|
2206
2327
|
|
2207
2328
|
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
2208
2329
|
version "1.0.3"
|
@@ -2270,19 +2391,19 @@ extsprintf@^1.2.0:
|
|
2270
2391
|
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
|
2271
2392
|
|
2272
2393
|
falafel@^2.1.0:
|
2273
|
-
version "2.
|
2274
|
-
resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.
|
2275
|
-
integrity
|
2394
|
+
version "2.2.4"
|
2395
|
+
resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.2.4.tgz#b5d86c060c2412a43166243cb1bce44d1abd2819"
|
2396
|
+
integrity sha512-0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ==
|
2276
2397
|
dependencies:
|
2277
|
-
acorn "^
|
2398
|
+
acorn "^7.1.1"
|
2278
2399
|
foreach "^2.0.5"
|
2279
|
-
isarray "
|
2400
|
+
isarray "^2.0.1"
|
2280
2401
|
object-keys "^1.0.6"
|
2281
2402
|
|
2282
|
-
fast-deep-equal@^
|
2283
|
-
version "
|
2284
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-
|
2285
|
-
integrity
|
2403
|
+
fast-deep-equal@^3.1.1:
|
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==
|
2286
2407
|
|
2287
2408
|
fast-glob@^2.2.2:
|
2288
2409
|
version "2.2.7"
|
@@ -2306,7 +2427,7 @@ fast-levenshtein@~2.0.6:
|
|
2306
2427
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
2307
2428
|
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
2308
2429
|
|
2309
|
-
fastparse@^1.1.
|
2430
|
+
fastparse@^1.1.2:
|
2310
2431
|
version "1.1.2"
|
2311
2432
|
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
|
2312
2433
|
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
|
@@ -2331,13 +2452,6 @@ fill-range@^4.0.0:
|
|
2331
2452
|
repeat-string "^1.6.1"
|
2332
2453
|
to-regex-range "^2.1.0"
|
2333
2454
|
|
2334
|
-
find-up@^3.0.0:
|
2335
|
-
version "3.0.0"
|
2336
|
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
|
2337
|
-
integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
|
2338
|
-
dependencies:
|
2339
|
-
locate-path "^3.0.0"
|
2340
|
-
|
2341
2455
|
for-in@^1.0.2:
|
2342
2456
|
version "1.0.2"
|
2343
2457
|
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
@@ -2389,9 +2503,9 @@ fs.realpath@^1.0.0:
|
|
2389
2503
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2390
2504
|
|
2391
2505
|
fsevents@^1.2.7:
|
2392
|
-
version "1.2.
|
2393
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.
|
2394
|
-
integrity sha512
|
2506
|
+
version "1.2.13"
|
2507
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
|
2508
|
+
integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
|
2395
2509
|
dependencies:
|
2396
2510
|
bindings "^1.5.0"
|
2397
2511
|
nan "^2.12.1"
|
@@ -2402,14 +2516,18 @@ function-bind@^1.1.1:
|
|
2402
2516
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
2403
2517
|
|
2404
2518
|
gensync@^1.0.0-beta.1:
|
2405
|
-
version "1.0.0-beta.
|
2406
|
-
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.
|
2407
|
-
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==
|
2408
2522
|
|
2409
|
-
get-
|
2410
|
-
version "
|
2411
|
-
resolved "https://registry.yarnpkg.com/get-
|
2412
|
-
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"
|
2413
2531
|
|
2414
2532
|
get-port@^3.2.0:
|
2415
2533
|
version "3.2.0"
|
@@ -2441,7 +2559,7 @@ glob-to-regexp@^0.3.0:
|
|
2441
2559
|
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
|
2442
2560
|
integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
|
2443
2561
|
|
2444
|
-
glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
2562
|
+
glob@^7.0.0, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
2445
2563
|
version "7.1.6"
|
2446
2564
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
2447
2565
|
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
@@ -2459,9 +2577,9 @@ globals@^11.1.0:
|
|
2459
2577
|
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
2460
2578
|
|
2461
2579
|
graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0:
|
2462
|
-
version "4.2.
|
2463
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.
|
2464
|
-
integrity sha512-
|
2580
|
+
version "4.2.4"
|
2581
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
2582
|
+
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
2465
2583
|
|
2466
2584
|
grapheme-breaker@^0.3.2:
|
2467
2585
|
version "0.3.2"
|
@@ -2476,12 +2594,12 @@ har-schema@^2.0.0:
|
|
2476
2594
|
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
2477
2595
|
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
|
2478
2596
|
|
2479
|
-
har-validator@~5.1.
|
2480
|
-
version "5.1.
|
2481
|
-
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.
|
2482
|
-
integrity sha512-
|
2597
|
+
har-validator@~5.1.3:
|
2598
|
+
version "5.1.5"
|
2599
|
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
|
2600
|
+
integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
|
2483
2601
|
dependencies:
|
2484
|
-
ajv "^6.
|
2602
|
+
ajv "^6.12.3"
|
2485
2603
|
har-schema "^2.0.0"
|
2486
2604
|
|
2487
2605
|
has-ansi@^2.0.0:
|
@@ -2506,7 +2624,7 @@ has-flag@^4.0.0:
|
|
2506
2624
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
2507
2625
|
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
2508
2626
|
|
2509
|
-
has-symbols@^1.0.
|
2627
|
+
has-symbols@^1.0.1:
|
2510
2628
|
version "1.0.1"
|
2511
2629
|
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
2512
2630
|
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
@@ -2550,12 +2668,13 @@ has@^1.0.0, has@^1.0.1, has@^1.0.3:
|
|
2550
2668
|
function-bind "^1.1.1"
|
2551
2669
|
|
2552
2670
|
hash-base@^3.0.0:
|
2553
|
-
version "3.0
|
2554
|
-
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.
|
2555
|
-
integrity
|
2671
|
+
version "3.1.0"
|
2672
|
+
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
|
2673
|
+
integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
|
2556
2674
|
dependencies:
|
2557
|
-
inherits "^2.0.
|
2558
|
-
|
2675
|
+
inherits "^2.0.4"
|
2676
|
+
readable-stream "^3.6.0"
|
2677
|
+
safe-buffer "^5.2.0"
|
2559
2678
|
|
2560
2679
|
hash.js@^1.0.0, hash.js@^1.0.3:
|
2561
2680
|
version "1.1.7"
|
@@ -2606,19 +2725,26 @@ html-tags@^1.0.0:
|
|
2606
2725
|
resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-1.2.0.tgz#c78de65b5663aa597989dd2b7ab49200d7e4db98"
|
2607
2726
|
integrity sha1-x43mW1Zjqll5id0rerSSANfk25g=
|
2608
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
|
+
|
2609
2733
|
htmlnano@^0.2.2:
|
2610
|
-
version "0.2.
|
2611
|
-
resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-0.2.
|
2612
|
-
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==
|
2613
2737
|
dependencies:
|
2614
2738
|
cssnano "^4.1.10"
|
2615
|
-
|
2616
|
-
posthtml "^
|
2617
|
-
|
2618
|
-
|
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"
|
2619
2744
|
svgo "^1.3.2"
|
2620
|
-
terser "^4.
|
2621
|
-
|
2745
|
+
terser "^4.8.0"
|
2746
|
+
timsort "^0.3.0"
|
2747
|
+
uncss "^0.17.3"
|
2622
2748
|
|
2623
2749
|
htmlparser2@^3.9.2:
|
2624
2750
|
version "3.10.1"
|
@@ -2670,9 +2796,9 @@ icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0:
|
|
2670
2796
|
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
|
2671
2797
|
|
2672
2798
|
ieee754@^1.1.4:
|
2673
|
-
version "1.1
|
2674
|
-
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.
|
2675
|
-
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==
|
2676
2802
|
|
2677
2803
|
import-fresh@^2.0.0:
|
2678
2804
|
version "2.0.0"
|
@@ -2695,7 +2821,7 @@ inflight@^1.0.4:
|
|
2695
2821
|
once "^1.3.0"
|
2696
2822
|
wrappy "1"
|
2697
2823
|
|
2698
|
-
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
|
2824
|
+
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
|
2699
2825
|
version "2.0.4"
|
2700
2826
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
2701
2827
|
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
@@ -2710,13 +2836,6 @@ inherits@2.0.3:
|
|
2710
2836
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
2711
2837
|
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
2712
2838
|
|
2713
|
-
invariant@^2.2.2, invariant@^2.2.4:
|
2714
|
-
version "2.2.4"
|
2715
|
-
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
2716
|
-
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
2717
|
-
dependencies:
|
2718
|
-
loose-envify "^1.0.0"
|
2719
|
-
|
2720
2839
|
is-absolute-url@^2.0.0:
|
2721
2840
|
version "2.1.0"
|
2722
2841
|
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
|
@@ -2763,10 +2882,10 @@ is-buffer@^1.1.5:
|
|
2763
2882
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
2764
2883
|
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
2765
2884
|
|
2766
|
-
is-callable@^1.1.4, is-callable@^1.
|
2767
|
-
version "1.
|
2768
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.
|
2769
|
-
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==
|
2770
2889
|
|
2771
2890
|
is-color-stop@^1.0.0:
|
2772
2891
|
version "1.1.0"
|
@@ -2780,6 +2899,13 @@ is-color-stop@^1.0.0:
|
|
2780
2899
|
rgb-regex "^1.0.1"
|
2781
2900
|
rgba-regex "^1.0.0"
|
2782
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
|
+
|
2783
2909
|
is-data-descriptor@^0.1.4:
|
2784
2910
|
version "0.1.4"
|
2785
2911
|
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
@@ -2839,11 +2965,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
|
|
2839
2965
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
2840
2966
|
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
2841
2967
|
|
2842
|
-
is-fullwidth-code-point@^2.0.0:
|
2843
|
-
version "2.0.0"
|
2844
|
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
2845
|
-
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
2846
|
-
|
2847
2968
|
is-glob@^3.1.0:
|
2848
2969
|
version "3.1.0"
|
2849
2970
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
|
@@ -2865,6 +2986,11 @@ is-html@^1.1.0:
|
|
2865
2986
|
dependencies:
|
2866
2987
|
html-tags "^1.0.0"
|
2867
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
|
+
|
2868
2994
|
is-number@^3.0.0:
|
2869
2995
|
version "3.0.0"
|
2870
2996
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
|
@@ -2872,10 +2998,10 @@ is-number@^3.0.0:
|
|
2872
2998
|
dependencies:
|
2873
2999
|
kind-of "^3.0.2"
|
2874
3000
|
|
2875
|
-
is-obj@^
|
2876
|
-
version "
|
2877
|
-
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-
|
2878
|
-
integrity
|
3001
|
+
is-obj@^2.0.0:
|
3002
|
+
version "2.0.0"
|
3003
|
+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
|
3004
|
+
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
|
2879
3005
|
|
2880
3006
|
is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
2881
3007
|
version "2.0.4"
|
@@ -2884,12 +3010,12 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
|
2884
3010
|
dependencies:
|
2885
3011
|
isobject "^3.0.1"
|
2886
3012
|
|
2887
|
-
is-regex@^1.
|
2888
|
-
version "1.
|
2889
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.
|
2890
|
-
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==
|
2891
3017
|
dependencies:
|
2892
|
-
has "^1.0.
|
3018
|
+
has-symbols "^1.0.1"
|
2893
3019
|
|
2894
3020
|
is-resolvable@^1.0.0:
|
2895
3021
|
version "1.1.0"
|
@@ -2930,16 +3056,16 @@ is-wsl@^1.1.0:
|
|
2930
3056
|
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
|
2931
3057
|
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
|
2932
3058
|
|
2933
|
-
isarray@0.0.1:
|
2934
|
-
version "0.0.1"
|
2935
|
-
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
|
2936
|
-
integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
|
2937
|
-
|
2938
3059
|
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
2939
3060
|
version "1.0.0"
|
2940
3061
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
2941
3062
|
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
|
2942
3063
|
|
3064
|
+
isarray@^2.0.1:
|
3065
|
+
version "2.0.5"
|
3066
|
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
|
3067
|
+
integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
|
3068
|
+
|
2943
3069
|
isexe@^2.0.0:
|
2944
3070
|
version "2.0.0"
|
2945
3071
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
@@ -2962,15 +3088,15 @@ isstream@~0.1.2:
|
|
2962
3088
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
2963
3089
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
2964
3090
|
|
2965
|
-
|
3091
|
+
js-tokens@^4.0.0:
|
2966
3092
|
version "4.0.0"
|
2967
3093
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
2968
3094
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
2969
3095
|
|
2970
3096
|
js-yaml@^3.10.0, js-yaml@^3.13.1:
|
2971
|
-
version "3.
|
2972
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.
|
2973
|
-
integrity sha512
|
3097
|
+
version "3.14.0"
|
3098
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
|
3099
|
+
integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
|
2974
3100
|
dependencies:
|
2975
3101
|
argparse "^1.0.7"
|
2976
3102
|
esprima "^4.0.0"
|
@@ -3049,12 +3175,12 @@ json5@^1.0.1:
|
|
3049
3175
|
dependencies:
|
3050
3176
|
minimist "^1.2.0"
|
3051
3177
|
|
3052
|
-
json5@^2.1.
|
3053
|
-
version "2.1.
|
3054
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.
|
3055
|
-
integrity sha512-
|
3178
|
+
json5@^2.1.2:
|
3179
|
+
version "2.1.3"
|
3180
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
|
3181
|
+
integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
|
3056
3182
|
dependencies:
|
3057
|
-
minimist "^1.2.
|
3183
|
+
minimist "^1.2.5"
|
3058
3184
|
|
3059
3185
|
jsonfile@^4.0.0:
|
3060
3186
|
version "4.0.0"
|
@@ -3093,21 +3219,9 @@ kind-of@^5.0.0:
|
|
3093
3219
|
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
|
3094
3220
|
|
3095
3221
|
kind-of@^6.0.0, kind-of@^6.0.2:
|
3096
|
-
version "6.0.
|
3097
|
-
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.
|
3098
|
-
integrity sha512-
|
3099
|
-
|
3100
|
-
leven@^3.1.0:
|
3101
|
-
version "3.1.0"
|
3102
|
-
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
3103
|
-
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
3104
|
-
|
3105
|
-
levenary@^1.1.0:
|
3106
|
-
version "1.1.0"
|
3107
|
-
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.0.tgz#fc146fe75f32dc483a0a2c64aef720f602cd6210"
|
3108
|
-
integrity sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ==
|
3109
|
-
dependencies:
|
3110
|
-
leven "^3.1.0"
|
3222
|
+
version "6.0.3"
|
3223
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
3224
|
+
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
3111
3225
|
|
3112
3226
|
levn@~0.3.0:
|
3113
3227
|
version "0.3.0"
|
@@ -3117,14 +3231,6 @@ levn@~0.3.0:
|
|
3117
3231
|
prelude-ls "~1.1.2"
|
3118
3232
|
type-check "~0.3.2"
|
3119
3233
|
|
3120
|
-
locate-path@^3.0.0:
|
3121
|
-
version "3.0.0"
|
3122
|
-
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
|
3123
|
-
integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
|
3124
|
-
dependencies:
|
3125
|
-
p-locate "^3.0.0"
|
3126
|
-
path-exists "^3.0.0"
|
3127
|
-
|
3128
3234
|
lodash.clone@^4.5.0:
|
3129
3235
|
version "4.5.0"
|
3130
3236
|
resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6"
|
@@ -3150,10 +3256,10 @@ lodash.uniq@^4.5.0:
|
|
3150
3256
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
3151
3257
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
3152
3258
|
|
3153
|
-
lodash@^4.17.
|
3154
|
-
version "4.17.
|
3155
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
3156
|
-
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==
|
3157
3263
|
|
3158
3264
|
log-symbols@^2.2.0:
|
3159
3265
|
version "2.2.0"
|
@@ -3162,13 +3268,6 @@ log-symbols@^2.2.0:
|
|
3162
3268
|
dependencies:
|
3163
3269
|
chalk "^2.0.1"
|
3164
3270
|
|
3165
|
-
loose-envify@^1.0.0:
|
3166
|
-
version "1.4.0"
|
3167
|
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
3168
|
-
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
3169
|
-
dependencies:
|
3170
|
-
js-tokens "^3.0.0 || ^4.0.0"
|
3171
|
-
|
3172
3271
|
magic-string@^0.22.4:
|
3173
3272
|
version "0.22.5"
|
3174
3273
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
|
@@ -3197,6 +3296,11 @@ md5.js@^1.3.4:
|
|
3197
3296
|
inherits "^2.0.1"
|
3198
3297
|
safe-buffer "^5.1.2"
|
3199
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
|
+
|
3200
3304
|
mdn-data@2.0.4:
|
3201
3305
|
version "2.0.4"
|
3202
3306
|
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
|
@@ -3210,9 +3314,9 @@ merge-source-map@1.0.4:
|
|
3210
3314
|
source-map "^0.5.6"
|
3211
3315
|
|
3212
3316
|
merge2@^1.2.3:
|
3213
|
-
version "1.
|
3214
|
-
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.
|
3215
|
-
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==
|
3216
3320
|
|
3217
3321
|
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
3218
3322
|
version "3.1.10"
|
@@ -3241,17 +3345,17 @@ miller-rabin@^4.0.0:
|
|
3241
3345
|
bn.js "^4.0.0"
|
3242
3346
|
brorand "^1.0.1"
|
3243
3347
|
|
3244
|
-
mime-db@1.
|
3245
|
-
version "1.
|
3246
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
3247
|
-
integrity sha512
|
3348
|
+
mime-db@1.44.0:
|
3349
|
+
version "1.44.0"
|
3350
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
|
3351
|
+
integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
|
3248
3352
|
|
3249
3353
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
3250
|
-
version "2.1.
|
3251
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
3252
|
-
integrity sha512-
|
3354
|
+
version "2.1.27"
|
3355
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
|
3356
|
+
integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
|
3253
3357
|
dependencies:
|
3254
|
-
mime-db "1.
|
3358
|
+
mime-db "1.44.0"
|
3255
3359
|
|
3256
3360
|
mime@1.6.0:
|
3257
3361
|
version "1.6.0"
|
@@ -3280,15 +3384,10 @@ minimatch@^3.0.4:
|
|
3280
3384
|
dependencies:
|
3281
3385
|
brace-expansion "^1.1.7"
|
3282
3386
|
|
3283
|
-
minimist
|
3284
|
-
version "
|
3285
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-
|
3286
|
-
integrity
|
3287
|
-
|
3288
|
-
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
|
3289
|
-
version "1.2.0"
|
3290
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
3291
|
-
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
3387
|
+
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
|
3388
|
+
version "1.2.5"
|
3389
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
3390
|
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
3292
3391
|
|
3293
3392
|
mixin-deep@^1.2.0:
|
3294
3393
|
version "1.3.2"
|
@@ -3299,11 +3398,11 @@ mixin-deep@^1.2.0:
|
|
3299
3398
|
is-extendable "^1.0.1"
|
3300
3399
|
|
3301
3400
|
mkdirp@^0.5.1, mkdirp@~0.5.1:
|
3302
|
-
version "0.5.
|
3303
|
-
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.
|
3304
|
-
integrity
|
3401
|
+
version "0.5.5"
|
3402
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
|
3403
|
+
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
|
3305
3404
|
dependencies:
|
3306
|
-
minimist "
|
3405
|
+
minimist "^1.2.5"
|
3307
3406
|
|
3308
3407
|
ms@2.0.0:
|
3309
3408
|
version "2.0.0"
|
@@ -3315,15 +3414,15 @@ ms@2.1.1:
|
|
3315
3414
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
|
3316
3415
|
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
|
3317
3416
|
|
3318
|
-
ms
|
3417
|
+
ms@2.1.2:
|
3319
3418
|
version "2.1.2"
|
3320
3419
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
3321
3420
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
3322
3421
|
|
3323
3422
|
nan@^2.12.1:
|
3324
|
-
version "2.14.
|
3325
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.
|
3326
|
-
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==
|
3327
3426
|
|
3328
3427
|
nanomatch@^1.2.9:
|
3329
3428
|
version "1.2.13"
|
@@ -3348,9 +3447,9 @@ nice-try@^1.0.4:
|
|
3348
3447
|
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
|
3349
3448
|
|
3350
3449
|
node-addon-api@^1.7.1:
|
3351
|
-
version "1.7.
|
3352
|
-
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.
|
3353
|
-
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==
|
3354
3453
|
|
3355
3454
|
node-emoji@^1.8.1:
|
3356
3455
|
version "1.10.0"
|
@@ -3393,17 +3492,10 @@ node-libs-browser@^2.0.0:
|
|
3393
3492
|
util "^0.11.0"
|
3394
3493
|
vm-browserify "^1.0.1"
|
3395
3494
|
|
3396
|
-
node-releases@^1.1.
|
3397
|
-
version "1.1.
|
3398
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
3399
|
-
integrity sha512-
|
3400
|
-
dependencies:
|
3401
|
-
semver "^6.3.0"
|
3402
|
-
|
3403
|
-
normalize-html-whitespace@^1.0.0:
|
3404
|
-
version "1.0.0"
|
3405
|
-
resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34"
|
3406
|
-
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==
|
3407
3499
|
|
3408
3500
|
normalize-path@^2.1.1:
|
3409
3501
|
version "2.1.1"
|
@@ -3468,17 +3560,22 @@ object-copy@^0.1.0:
|
|
3468
3560
|
define-property "^0.2.5"
|
3469
3561
|
kind-of "^3.0.3"
|
3470
3562
|
|
3471
|
-
object-
|
3472
|
-
version "
|
3473
|
-
resolved "https://registry.yarnpkg.com/object-
|
3474
|
-
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==
|
3475
3572
|
|
3476
3573
|
object-inspect@~1.4.0:
|
3477
3574
|
version "1.4.1"
|
3478
3575
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4"
|
3479
3576
|
integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==
|
3480
3577
|
|
3481
|
-
object-keys@^1.0.
|
3578
|
+
object-keys@^1.0.12, object-keys@^1.0.6, object-keys@^1.1.1:
|
3482
3579
|
version "1.1.1"
|
3483
3580
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
3484
3581
|
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
@@ -3490,23 +3587,24 @@ object-visit@^1.0.0:
|
|
3490
3587
|
dependencies:
|
3491
3588
|
isobject "^3.0.0"
|
3492
3589
|
|
3493
|
-
object.assign@^4.1.0:
|
3494
|
-
version "4.1.
|
3495
|
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.
|
3496
|
-
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==
|
3497
3594
|
dependencies:
|
3498
|
-
|
3499
|
-
|
3500
|
-
has-symbols "^1.0.
|
3501
|
-
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"
|
3502
3599
|
|
3503
|
-
object.getownpropertydescriptors@^2.0
|
3504
|
-
version "2.1.
|
3505
|
-
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.
|
3506
|
-
integrity sha512-
|
3600
|
+
object.getownpropertydescriptors@^2.1.0:
|
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==
|
3507
3604
|
dependencies:
|
3605
|
+
call-bind "^1.0.0"
|
3508
3606
|
define-properties "^1.1.3"
|
3509
|
-
es-abstract "^1.
|
3607
|
+
es-abstract "^1.18.0-next.1"
|
3510
3608
|
|
3511
3609
|
object.pick@^1.3.0:
|
3512
3610
|
version "1.3.0"
|
@@ -3516,13 +3614,13 @@ object.pick@^1.3.0:
|
|
3516
3614
|
isobject "^3.0.1"
|
3517
3615
|
|
3518
3616
|
object.values@^1.1.0:
|
3519
|
-
version "1.1.
|
3520
|
-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.
|
3521
|
-
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==
|
3522
3620
|
dependencies:
|
3621
|
+
call-bind "^1.0.0"
|
3523
3622
|
define-properties "^1.1.3"
|
3524
|
-
es-abstract "^1.
|
3525
|
-
function-bind "^1.1.1"
|
3623
|
+
es-abstract "^1.18.0-next.1"
|
3526
3624
|
has "^1.0.3"
|
3527
3625
|
|
3528
3626
|
on-finished@~2.3.0:
|
@@ -3582,34 +3680,15 @@ os-browserify@^0.3.0:
|
|
3582
3680
|
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
|
3583
3681
|
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
|
3584
3682
|
|
3585
|
-
p-limit@^2.0.0:
|
3586
|
-
version "2.2.2"
|
3587
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
|
3588
|
-
integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
|
3589
|
-
dependencies:
|
3590
|
-
p-try "^2.0.0"
|
3591
|
-
|
3592
|
-
p-locate@^3.0.0:
|
3593
|
-
version "3.0.0"
|
3594
|
-
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
|
3595
|
-
integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
|
3596
|
-
dependencies:
|
3597
|
-
p-limit "^2.0.0"
|
3598
|
-
|
3599
|
-
p-try@^2.0.0:
|
3600
|
-
version "2.2.0"
|
3601
|
-
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
3602
|
-
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
3603
|
-
|
3604
3683
|
pako@^0.2.5:
|
3605
3684
|
version "0.2.9"
|
3606
3685
|
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
3607
3686
|
integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=
|
3608
3687
|
|
3609
3688
|
pako@~1.0.5:
|
3610
|
-
version "1.0.
|
3611
|
-
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.
|
3612
|
-
integrity sha512-
|
3689
|
+
version "1.0.11"
|
3690
|
+
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
|
3691
|
+
integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
|
3613
3692
|
|
3614
3693
|
parcel-bundler@^1.12.3:
|
3615
3694
|
version "1.12.4"
|
@@ -3676,14 +3755,13 @@ parcel-bundler@^1.12.3:
|
|
3676
3755
|
v8-compile-cache "^2.0.0"
|
3677
3756
|
ws "^5.1.1"
|
3678
3757
|
|
3679
|
-
parse-asn1@^5.0.0:
|
3680
|
-
version "5.1.
|
3681
|
-
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.
|
3682
|
-
integrity sha512-
|
3758
|
+
parse-asn1@^5.0.0, parse-asn1@^5.1.5:
|
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==
|
3683
3762
|
dependencies:
|
3684
|
-
asn1.js "^
|
3763
|
+
asn1.js "^5.2.0"
|
3685
3764
|
browserify-aes "^1.0.0"
|
3686
|
-
create-hash "^1.1.0"
|
3687
3765
|
evp_bytestokey "^1.0.0"
|
3688
3766
|
pbkdf2 "^3.0.3"
|
3689
3767
|
safe-buffer "^5.1.1"
|
@@ -3721,11 +3799,6 @@ path-dirname@^1.0.0:
|
|
3721
3799
|
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
|
3722
3800
|
integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
|
3723
3801
|
|
3724
|
-
path-exists@^3.0.0:
|
3725
|
-
version "3.0.0"
|
3726
|
-
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
3727
|
-
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
|
3728
|
-
|
3729
3802
|
path-is-absolute@^1.0.0:
|
3730
3803
|
version "1.0.1"
|
3731
3804
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
@@ -3742,9 +3815,9 @@ path-parse@^1.0.6:
|
|
3742
3815
|
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
3743
3816
|
|
3744
3817
|
pbkdf2@^3.0.3:
|
3745
|
-
version "3.
|
3746
|
-
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.
|
3747
|
-
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==
|
3748
3821
|
dependencies:
|
3749
3822
|
create-hash "^1.1.2"
|
3750
3823
|
create-hmac "^1.1.4"
|
@@ -3773,14 +3846,13 @@ posix-character-classes@^0.1.0:
|
|
3773
3846
|
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
3774
3847
|
|
3775
3848
|
postcss-calc@^7.0.1:
|
3776
|
-
version "7.0.
|
3777
|
-
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.
|
3778
|
-
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==
|
3779
3852
|
dependencies:
|
3780
|
-
|
3781
|
-
postcss "^
|
3782
|
-
postcss-
|
3783
|
-
postcss-value-parser "^3.3.1"
|
3853
|
+
postcss "^7.0.27"
|
3854
|
+
postcss-selector-parser "^6.0.2"
|
3855
|
+
postcss-value-parser "^4.0.2"
|
3784
3856
|
|
3785
3857
|
postcss-colormin@^4.0.3:
|
3786
3858
|
version "4.0.3"
|
@@ -3941,11 +4013,11 @@ postcss-modules-values@1.3.0:
|
|
3941
4013
|
postcss "^6.0.1"
|
3942
4014
|
|
3943
4015
|
postcss-nested@^4.1.1:
|
3944
|
-
version "4.2.
|
3945
|
-
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.
|
3946
|
-
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==
|
3947
4019
|
dependencies:
|
3948
|
-
postcss "^7.0.
|
4020
|
+
postcss "^7.0.32"
|
3949
4021
|
postcss-selector-parser "^6.0.2"
|
3950
4022
|
|
3951
4023
|
postcss-normalize-charset@^4.0.1:
|
@@ -4058,7 +4130,7 @@ postcss-reduce-transforms@^4.0.2:
|
|
4058
4130
|
postcss "^7.0.0"
|
4059
4131
|
postcss-value-parser "^3.0.0"
|
4060
4132
|
|
4061
|
-
postcss-selector-parser@6.0.2
|
4133
|
+
postcss-selector-parser@6.0.2:
|
4062
4134
|
version "6.0.2"
|
4063
4135
|
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
4064
4136
|
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
@@ -4068,22 +4140,23 @@ postcss-selector-parser@6.0.2, postcss-selector-parser@^6.0.0, postcss-selector-
|
|
4068
4140
|
uniq "^1.0.1"
|
4069
4141
|
|
4070
4142
|
postcss-selector-parser@^3.0.0:
|
4071
|
-
version "3.1.
|
4072
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.
|
4073
|
-
integrity
|
4143
|
+
version "3.1.2"
|
4144
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
|
4145
|
+
integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
|
4074
4146
|
dependencies:
|
4075
|
-
dot-prop "^
|
4147
|
+
dot-prop "^5.2.0"
|
4076
4148
|
indexes-of "^1.0.1"
|
4077
4149
|
uniq "^1.0.1"
|
4078
4150
|
|
4079
|
-
postcss-selector-parser@^
|
4080
|
-
version "
|
4081
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-
|
4082
|
-
integrity sha512-
|
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==
|
4083
4155
|
dependencies:
|
4084
|
-
cssesc "^
|
4156
|
+
cssesc "^3.0.0"
|
4085
4157
|
indexes-of "^1.0.1"
|
4086
4158
|
uniq "^1.0.1"
|
4159
|
+
util-deprecate "^1.0.2"
|
4087
4160
|
|
4088
4161
|
postcss-svgo@^4.0.2:
|
4089
4162
|
version "4.0.2"
|
@@ -4109,10 +4182,10 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^
|
|
4109
4182
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
|
4110
4183
|
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
|
4111
4184
|
|
4112
|
-
postcss-value-parser@^4.0.2:
|
4113
|
-
version "4.0
|
4114
|
-
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.
|
4115
|
-
integrity sha512-
|
4185
|
+
postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
|
4186
|
+
version "4.1.0"
|
4187
|
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
|
4188
|
+
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
|
4116
4189
|
|
4117
4190
|
postcss@6.0.1:
|
4118
4191
|
version "6.0.1"
|
@@ -4123,6 +4196,15 @@ postcss@6.0.1:
|
|
4123
4196
|
source-map "^0.5.6"
|
4124
4197
|
supports-color "^3.2.3"
|
4125
4198
|
|
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==
|
4203
|
+
dependencies:
|
4204
|
+
chalk "^2.4.2"
|
4205
|
+
source-map "^0.6.1"
|
4206
|
+
supports-color "^6.1.0"
|
4207
|
+
|
4126
4208
|
postcss@^6.0.1, postcss@^6.0.9:
|
4127
4209
|
version "6.0.23"
|
4128
4210
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
|
@@ -4132,10 +4214,10 @@ postcss@^6.0.1, postcss@^6.0.9:
|
|
4132
4214
|
source-map "^0.6.1"
|
4133
4215
|
supports-color "^5.4.0"
|
4134
4216
|
|
4135
|
-
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.
|
4136
|
-
version "7.0.
|
4137
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4138
|
-
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==
|
4139
4221
|
dependencies:
|
4140
4222
|
chalk "^2.4.2"
|
4141
4223
|
source-map "^0.6.1"
|
@@ -4148,10 +4230,17 @@ posthtml-parser@^0.4.0, posthtml-parser@^0.4.1:
|
|
4148
4230
|
dependencies:
|
4149
4231
|
htmlparser2 "^3.9.2"
|
4150
4232
|
|
4151
|
-
posthtml-
|
4152
|
-
version "
|
4153
|
-
resolved "https://registry.yarnpkg.com/posthtml-
|
4154
|
-
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==
|
4155
4244
|
|
4156
4245
|
posthtml@^0.11.2:
|
4157
4246
|
version "0.11.6"
|
@@ -4161,13 +4250,13 @@ posthtml@^0.11.2:
|
|
4161
4250
|
posthtml-parser "^0.4.1"
|
4162
4251
|
posthtml-render "^1.1.5"
|
4163
4252
|
|
4164
|
-
posthtml@^0.
|
4165
|
-
version "0.
|
4166
|
-
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.
|
4167
|
-
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==
|
4168
4257
|
dependencies:
|
4169
|
-
posthtml-parser "^0.
|
4170
|
-
posthtml-render "^1.
|
4258
|
+
posthtml-parser "^0.5.0"
|
4259
|
+
posthtml-render "^1.2.3"
|
4171
4260
|
|
4172
4261
|
prelude-ls@~1.1.2:
|
4173
4262
|
version "1.1.2"
|
@@ -4184,11 +4273,6 @@ pretty-hrtime@^1.0.3:
|
|
4184
4273
|
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
|
4185
4274
|
integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
|
4186
4275
|
|
4187
|
-
private@^0.1.6:
|
4188
|
-
version "0.1.8"
|
4189
|
-
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
4190
|
-
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
4191
|
-
|
4192
4276
|
process-nextick-args@~2.0.0:
|
4193
4277
|
version "2.0.1"
|
4194
4278
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
@@ -4199,10 +4283,10 @@ process@^0.11.10:
|
|
4199
4283
|
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
4200
4284
|
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
|
4201
4285
|
|
4202
|
-
psl@^1.1.
|
4203
|
-
version "1.
|
4204
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.
|
4205
|
-
integrity sha512-
|
4286
|
+
psl@^1.1.28:
|
4287
|
+
version "1.8.0"
|
4288
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
4289
|
+
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
|
4206
4290
|
|
4207
4291
|
public-encrypt@^4.0.0:
|
4208
4292
|
version "4.0.3"
|
@@ -4221,7 +4305,7 @@ punycode@1.3.2:
|
|
4221
4305
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
4222
4306
|
integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
|
4223
4307
|
|
4224
|
-
punycode@^1.2.4
|
4308
|
+
punycode@^1.2.4:
|
4225
4309
|
version "1.4.1"
|
4226
4310
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
4227
4311
|
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
|
@@ -4231,15 +4315,15 @@ punycode@^2.1.0, punycode@^2.1.1:
|
|
4231
4315
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
4232
4316
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
4233
4317
|
|
4234
|
-
purgecss@^
|
4235
|
-
version "
|
4236
|
-
resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-
|
4237
|
-
integrity sha512-
|
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==
|
4238
4322
|
dependencies:
|
4239
|
-
|
4240
|
-
|
4241
|
-
postcss
|
4242
|
-
|
4323
|
+
commander "^5.0.0"
|
4324
|
+
glob "^7.0.0"
|
4325
|
+
postcss "7.0.32"
|
4326
|
+
postcss-selector-parser "^6.0.2"
|
4243
4327
|
|
4244
4328
|
q@^1.1.2:
|
4245
4329
|
version "1.5.1"
|
@@ -4303,10 +4387,10 @@ readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.3, readable
|
|
4303
4387
|
string_decoder "~1.1.1"
|
4304
4388
|
util-deprecate "~1.0.1"
|
4305
4389
|
|
4306
|
-
readable-stream@^3.1.1:
|
4307
|
-
version "3.
|
4308
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.
|
4309
|
-
integrity sha512-
|
4390
|
+
readable-stream@^3.1.1, readable-stream@^3.6.0:
|
4391
|
+
version "3.6.0"
|
4392
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
|
4393
|
+
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
|
4310
4394
|
dependencies:
|
4311
4395
|
inherits "^2.0.3"
|
4312
4396
|
string_decoder "^1.1.1"
|
@@ -4329,34 +4413,34 @@ reduce-css-calc@^2.1.6:
|
|
4329
4413
|
css-unit-converter "^1.1.1"
|
4330
4414
|
postcss-value-parser "^3.3.0"
|
4331
4415
|
|
4332
|
-
regenerate-unicode-properties@^8.
|
4333
|
-
version "8.
|
4334
|
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.
|
4335
|
-
integrity sha512-
|
4416
|
+
regenerate-unicode-properties@^8.2.0:
|
4417
|
+
version "8.2.0"
|
4418
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
|
4419
|
+
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
|
4336
4420
|
dependencies:
|
4337
4421
|
regenerate "^1.4.0"
|
4338
4422
|
|
4339
|
-
regenerate@^1.
|
4340
|
-
version "1.4.
|
4341
|
-
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.
|
4342
|
-
integrity sha512-
|
4423
|
+
regenerate@^1.4.0:
|
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==
|
4343
4427
|
|
4344
4428
|
regenerator-runtime@^0.11.0:
|
4345
4429
|
version "0.11.1"
|
4346
4430
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
|
4347
4431
|
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
|
4348
4432
|
|
4349
|
-
regenerator-runtime@^0.13.
|
4350
|
-
version "0.13.
|
4351
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.
|
4352
|
-
integrity sha512-
|
4433
|
+
regenerator-runtime@^0.13.4:
|
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==
|
4353
4437
|
|
4354
|
-
regenerator-transform@^0.14.
|
4355
|
-
version "0.14.
|
4356
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.
|
4357
|
-
integrity sha512-
|
4438
|
+
regenerator-transform@^0.14.2:
|
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==
|
4358
4442
|
dependencies:
|
4359
|
-
|
4443
|
+
"@babel/runtime" "^7.8.4"
|
4360
4444
|
|
4361
4445
|
regex-not@^1.0.0, regex-not@^1.0.2:
|
4362
4446
|
version "1.0.2"
|
@@ -4366,50 +4450,34 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
4366
4450
|
extend-shallow "^3.0.2"
|
4367
4451
|
safe-regex "^1.1.0"
|
4368
4452
|
|
4369
|
-
regexpu-core@^
|
4370
|
-
version "
|
4371
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-
|
4372
|
-
integrity
|
4373
|
-
dependencies:
|
4374
|
-
regenerate "^1.2.1"
|
4375
|
-
regjsgen "^0.2.0"
|
4376
|
-
regjsparser "^0.1.4"
|
4377
|
-
|
4378
|
-
regexpu-core@^4.6.0:
|
4379
|
-
version "4.6.0"
|
4380
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
|
4381
|
-
integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
|
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==
|
4382
4457
|
dependencies:
|
4383
4458
|
regenerate "^1.4.0"
|
4384
|
-
regenerate-unicode-properties "^8.
|
4385
|
-
regjsgen "^0.5.
|
4386
|
-
regjsparser "^0.6.
|
4459
|
+
regenerate-unicode-properties "^8.2.0"
|
4460
|
+
regjsgen "^0.5.1"
|
4461
|
+
regjsparser "^0.6.4"
|
4387
4462
|
unicode-match-property-ecmascript "^1.0.4"
|
4388
|
-
unicode-match-property-value-ecmascript "^1.
|
4463
|
+
unicode-match-property-value-ecmascript "^1.2.0"
|
4389
4464
|
|
4390
|
-
regjsgen@^0.
|
4391
|
-
version "0.2
|
4392
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.
|
4393
|
-
integrity
|
4394
|
-
|
4395
|
-
regjsgen@^0.5.0:
|
4396
|
-
version "0.5.1"
|
4397
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
|
4398
|
-
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
|
4465
|
+
regjsgen@^0.5.1:
|
4466
|
+
version "0.5.2"
|
4467
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
|
4468
|
+
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
|
4399
4469
|
|
4400
|
-
regjsparser@^0.
|
4401
|
-
version "0.
|
4402
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.
|
4403
|
-
integrity
|
4470
|
+
regjsparser@^0.6.4:
|
4471
|
+
version "0.6.4"
|
4472
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
|
4473
|
+
integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
|
4404
4474
|
dependencies:
|
4405
4475
|
jsesc "~0.5.0"
|
4406
4476
|
|
4407
|
-
|
4408
|
-
version "0.
|
4409
|
-
resolved "https://registry.yarnpkg.com/
|
4410
|
-
integrity
|
4411
|
-
dependencies:
|
4412
|
-
jsesc "~0.5.0"
|
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=
|
4413
4481
|
|
4414
4482
|
remove-trailing-separator@^1.0.1:
|
4415
4483
|
version "1.1.0"
|
@@ -4426,26 +4494,26 @@ repeat-string@^1.6.1:
|
|
4426
4494
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
4427
4495
|
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
4428
4496
|
|
4429
|
-
request-promise-core@1.1.
|
4430
|
-
version "1.1.
|
4431
|
-
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.
|
4432
|
-
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==
|
4433
4501
|
dependencies:
|
4434
|
-
lodash "^4.17.
|
4502
|
+
lodash "^4.17.19"
|
4435
4503
|
|
4436
4504
|
request-promise-native@^1.0.5:
|
4437
|
-
version "1.0.
|
4438
|
-
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.
|
4439
|
-
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==
|
4440
4508
|
dependencies:
|
4441
|
-
request-promise-core "1.1.
|
4509
|
+
request-promise-core "1.1.4"
|
4442
4510
|
stealthy-require "^1.1.1"
|
4443
4511
|
tough-cookie "^2.3.3"
|
4444
4512
|
|
4445
4513
|
request@^2.88.0:
|
4446
|
-
version "2.88.
|
4447
|
-
resolved "https://registry.yarnpkg.com/request/-/request-2.88.
|
4448
|
-
integrity sha512-
|
4514
|
+
version "2.88.2"
|
4515
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
|
4516
|
+
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
|
4449
4517
|
dependencies:
|
4450
4518
|
aws-sign2 "~0.7.0"
|
4451
4519
|
aws4 "^1.8.0"
|
@@ -4454,7 +4522,7 @@ request@^2.88.0:
|
|
4454
4522
|
extend "~3.0.2"
|
4455
4523
|
forever-agent "~0.6.1"
|
4456
4524
|
form-data "~2.3.2"
|
4457
|
-
har-validator "~5.1.
|
4525
|
+
har-validator "~5.1.3"
|
4458
4526
|
http-signature "~1.2.0"
|
4459
4527
|
is-typedarray "~1.0.0"
|
4460
4528
|
isstream "~0.1.2"
|
@@ -4464,20 +4532,10 @@ request@^2.88.0:
|
|
4464
4532
|
performance-now "^2.1.0"
|
4465
4533
|
qs "~6.5.2"
|
4466
4534
|
safe-buffer "^5.1.2"
|
4467
|
-
tough-cookie "~2.
|
4535
|
+
tough-cookie "~2.5.0"
|
4468
4536
|
tunnel-agent "^0.6.0"
|
4469
4537
|
uuid "^3.3.2"
|
4470
4538
|
|
4471
|
-
require-directory@^2.1.1:
|
4472
|
-
version "2.1.1"
|
4473
|
-
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
4474
|
-
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
4475
|
-
|
4476
|
-
require-main-filename@^2.0.0:
|
4477
|
-
version "2.0.0"
|
4478
|
-
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
4479
|
-
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
4480
|
-
|
4481
4539
|
resolve-from@^3.0.0:
|
4482
4540
|
version "3.0.0"
|
4483
4541
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
|
@@ -4488,18 +4546,12 @@ resolve-url@^0.2.1:
|
|
4488
4546
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
4489
4547
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
4490
4548
|
|
4491
|
-
resolve@^1.1.5, resolve@^1.3.2, resolve@^1.4.0:
|
4492
|
-
version "1.
|
4493
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
4494
|
-
integrity sha512-
|
4495
|
-
dependencies:
|
4496
|
-
path-parse "^1.0.6"
|
4497
|
-
|
4498
|
-
resolve@^1.14.2:
|
4499
|
-
version "1.15.1"
|
4500
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
4501
|
-
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
4549
|
+
resolve@^1.1.5, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0:
|
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==
|
4502
4553
|
dependencies:
|
4554
|
+
is-core-module "^2.1.0"
|
4503
4555
|
path-parse "^1.0.6"
|
4504
4556
|
|
4505
4557
|
restore-cursor@^2.0.0:
|
@@ -4540,10 +4592,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
|
|
4540
4592
|
hash-base "^3.0.0"
|
4541
4593
|
inherits "^2.0.1"
|
4542
4594
|
|
4543
|
-
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
|
4544
|
-
version "5.2.
|
4545
|
-
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.
|
4546
|
-
integrity sha512-
|
4595
|
+
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
|
4596
|
+
version "5.2.1"
|
4597
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
4598
|
+
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
4547
4599
|
|
4548
4600
|
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
4549
4601
|
version "5.1.2"
|
@@ -4584,16 +4636,6 @@ semver@^5.4.1, semver@^5.5.0:
|
|
4584
4636
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
4585
4637
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
4586
4638
|
|
4587
|
-
semver@^6.3.0:
|
4588
|
-
version "6.3.0"
|
4589
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
4590
|
-
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
4591
|
-
|
4592
|
-
semver@^7.1.1:
|
4593
|
-
version "7.1.1"
|
4594
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667"
|
4595
|
-
integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A==
|
4596
|
-
|
4597
4639
|
send@0.17.1:
|
4598
4640
|
version "0.17.1"
|
4599
4641
|
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
|
@@ -4614,9 +4656,9 @@ send@0.17.1:
|
|
4614
4656
|
statuses "~1.5.0"
|
4615
4657
|
|
4616
4658
|
serialize-to-js@^3.0.0:
|
4617
|
-
version "3.
|
4618
|
-
resolved "https://registry.yarnpkg.com/serialize-to-js/-/serialize-to-js-3.
|
4619
|
-
integrity sha512-
|
4659
|
+
version "3.1.1"
|
4660
|
+
resolved "https://registry.yarnpkg.com/serialize-to-js/-/serialize-to-js-3.1.1.tgz#b3e77d0568ee4a60bfe66287f991e104d3a1a4ac"
|
4661
|
+
integrity sha512-F+NGU0UHMBO4Q965tjw7rvieNVjlH6Lqi2emq/Lc9LUURYJbiCzmpi4Cy1OOjjVPtxu0c+NE85LU6968Wko5ZA==
|
4620
4662
|
|
4621
4663
|
serve-static@^1.12.4:
|
4622
4664
|
version "1.14.1"
|
@@ -4628,11 +4670,6 @@ serve-static@^1.12.4:
|
|
4628
4670
|
parseurl "~1.3.3"
|
4629
4671
|
send "0.17.1"
|
4630
4672
|
|
4631
|
-
set-blocking@^2.0.0:
|
4632
|
-
version "2.0.0"
|
4633
|
-
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
4634
|
-
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
|
4635
|
-
|
4636
4673
|
set-value@^2.0.0, set-value@^2.0.1:
|
4637
4674
|
version "2.0.1"
|
4638
4675
|
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
|
@@ -4679,9 +4716,9 @@ shebang-regex@^1.0.0:
|
|
4679
4716
|
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
4680
4717
|
|
4681
4718
|
signal-exit@^3.0.2:
|
4682
|
-
version "3.0.
|
4683
|
-
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.
|
4684
|
-
integrity
|
4719
|
+
version "3.0.3"
|
4720
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
4721
|
+
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
4685
4722
|
|
4686
4723
|
simple-swizzle@^0.2.2:
|
4687
4724
|
version "0.2.2"
|
@@ -4732,9 +4769,9 @@ source-map-resolve@^0.5.0:
|
|
4732
4769
|
urix "^0.1.0"
|
4733
4770
|
|
4734
4771
|
source-map-support@~0.5.10, source-map-support@~0.5.12:
|
4735
|
-
version "0.5.
|
4736
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
4737
|
-
integrity sha512-
|
4772
|
+
version "0.5.19"
|
4773
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
4774
|
+
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
|
4738
4775
|
dependencies:
|
4739
4776
|
buffer-from "^1.0.0"
|
4740
4777
|
source-map "^0.6.0"
|
@@ -4766,6 +4803,11 @@ sprintf-js@~1.0.2:
|
|
4766
4803
|
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
4767
4804
|
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
4768
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
|
+
|
4769
4811
|
sshpk@^1.7.0:
|
4770
4812
|
version "1.16.1"
|
4771
4813
|
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
|
@@ -4787,9 +4829,9 @@ stable@^0.1.8:
|
|
4787
4829
|
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
|
4788
4830
|
|
4789
4831
|
static-eval@^2.0.0:
|
4790
|
-
version "2.0
|
4791
|
-
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.
|
4792
|
-
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==
|
4793
4835
|
dependencies:
|
4794
4836
|
escodegen "^1.11.1"
|
4795
4837
|
|
@@ -4831,13 +4873,13 @@ stealthy-require@^1.1.1:
|
|
4831
4873
|
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
4832
4874
|
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
|
4833
4875
|
|
4834
|
-
stimulus@^
|
4835
|
-
version "
|
4836
|
-
resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-
|
4837
|
-
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==
|
4838
4880
|
dependencies:
|
4839
|
-
"@stimulus/core" "^
|
4840
|
-
"@stimulus/webpack-helpers" "^
|
4881
|
+
"@stimulus/core" "^2.0.0"
|
4882
|
+
"@stimulus/webpack-helpers" "^2.0.0"
|
4841
4883
|
|
4842
4884
|
stream-browserify@^2.0.1:
|
4843
4885
|
version "2.0.2"
|
@@ -4858,30 +4900,21 @@ stream-http@^2.7.2:
|
|
4858
4900
|
to-arraybuffer "^1.0.0"
|
4859
4901
|
xtend "^4.0.0"
|
4860
4902
|
|
4861
|
-
string
|
4862
|
-
version "
|
4863
|
-
resolved "https://registry.yarnpkg.com/string
|
4864
|
-
integrity sha512-
|
4865
|
-
dependencies:
|
4866
|
-
emoji-regex "^7.0.1"
|
4867
|
-
is-fullwidth-code-point "^2.0.0"
|
4868
|
-
strip-ansi "^5.1.0"
|
4869
|
-
|
4870
|
-
string.prototype.trimleft@^2.1.1:
|
4871
|
-
version "2.1.1"
|
4872
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
|
4873
|
-
integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
|
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==
|
4874
4907
|
dependencies:
|
4908
|
+
call-bind "^1.0.0"
|
4875
4909
|
define-properties "^1.1.3"
|
4876
|
-
function-bind "^1.1.1"
|
4877
4910
|
|
4878
|
-
string.prototype.
|
4879
|
-
version "
|
4880
|
-
resolved "https://registry.yarnpkg.com/string.prototype.
|
4881
|
-
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==
|
4882
4915
|
dependencies:
|
4916
|
+
call-bind "^1.0.0"
|
4883
4917
|
define-properties "^1.1.3"
|
4884
|
-
function-bind "^1.1.1"
|
4885
4918
|
|
4886
4919
|
string_decoder@^1.0.0, string_decoder@^1.1.1:
|
4887
4920
|
version "1.3.0"
|
@@ -4911,13 +4944,6 @@ strip-ansi@^4.0.0:
|
|
4911
4944
|
dependencies:
|
4912
4945
|
ansi-regex "^3.0.0"
|
4913
4946
|
|
4914
|
-
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
4915
|
-
version "5.2.0"
|
4916
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
4917
|
-
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
4918
|
-
dependencies:
|
4919
|
-
ansi-regex "^4.1.0"
|
4920
|
-
|
4921
4947
|
stylehacks@^4.0.0:
|
4922
4948
|
version "4.0.3"
|
4923
4949
|
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
|
@@ -4954,9 +4980,9 @@ supports-color@^6.1.0:
|
|
4954
4980
|
has-flag "^3.0.0"
|
4955
4981
|
|
4956
4982
|
supports-color@^7.1.0:
|
4957
|
-
version "7.
|
4958
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.
|
4959
|
-
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==
|
4960
4986
|
dependencies:
|
4961
4987
|
has-flag "^4.0.0"
|
4962
4988
|
|
@@ -4985,23 +5011,29 @@ symbol-tree@^3.2.2:
|
|
4985
5011
|
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
|
4986
5012
|
|
4987
5013
|
tailwindcss@^1.0.1:
|
4988
|
-
version "1.
|
4989
|
-
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.
|
4990
|
-
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==
|
4991
5017
|
dependencies:
|
5018
|
+
"@fullhuman/postcss-purgecss" "^2.1.2"
|
4992
5019
|
autoprefixer "^9.4.5"
|
5020
|
+
browserslist "^4.12.0"
|
4993
5021
|
bytes "^3.0.0"
|
4994
|
-
chalk "^3.0.0"
|
5022
|
+
chalk "^3.0.0 || ^4.0.0"
|
5023
|
+
color "^3.1.2"
|
4995
5024
|
detective "^5.2.0"
|
4996
5025
|
fs-extra "^8.0.0"
|
4997
|
-
|
5026
|
+
html-tags "^3.1.0"
|
5027
|
+
lodash "^4.17.20"
|
4998
5028
|
node-emoji "^1.8.1"
|
4999
5029
|
normalize.css "^8.0.1"
|
5030
|
+
object-hash "^2.0.3"
|
5000
5031
|
postcss "^7.0.11"
|
5001
5032
|
postcss-functions "^3.0.0"
|
5002
5033
|
postcss-js "^2.0.0"
|
5003
5034
|
postcss-nested "^4.1.1"
|
5004
5035
|
postcss-selector-parser "^6.0.0"
|
5036
|
+
postcss-value-parser "^4.1.0"
|
5005
5037
|
pretty-hrtime "^1.0.3"
|
5006
5038
|
reduce-css-calc "^2.1.6"
|
5007
5039
|
resolve "^1.14.2"
|
@@ -5015,10 +5047,10 @@ terser@^3.7.3:
|
|
5015
5047
|
source-map "~0.6.1"
|
5016
5048
|
source-map-support "~0.5.10"
|
5017
5049
|
|
5018
|
-
terser@^4.
|
5019
|
-
version "4.
|
5020
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-4.
|
5021
|
-
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==
|
5022
5054
|
dependencies:
|
5023
5055
|
commander "^2.20.0"
|
5024
5056
|
source-map "~0.6.1"
|
@@ -5033,9 +5065,9 @@ through2@^2.0.0, through2@~2.0.3:
|
|
5033
5065
|
xtend "~4.0.1"
|
5034
5066
|
|
5035
5067
|
timers-browserify@^2.0.4:
|
5036
|
-
version "2.0.
|
5037
|
-
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.
|
5038
|
-
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==
|
5039
5071
|
dependencies:
|
5040
5072
|
setimmediate "^1.0.4"
|
5041
5073
|
|
@@ -5094,7 +5126,7 @@ toidentifier@1.0.0:
|
|
5094
5126
|
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
|
5095
5127
|
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
|
5096
5128
|
|
5097
|
-
tough-cookie@^2.3.3, tough-cookie@^2.5.0:
|
5129
|
+
tough-cookie@^2.3.3, tough-cookie@^2.5.0, tough-cookie@~2.5.0:
|
5098
5130
|
version "2.5.0"
|
5099
5131
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
5100
5132
|
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
@@ -5102,14 +5134,6 @@ tough-cookie@^2.3.3, tough-cookie@^2.5.0:
|
|
5102
5134
|
psl "^1.1.28"
|
5103
5135
|
punycode "^2.1.1"
|
5104
5136
|
|
5105
|
-
tough-cookie@~2.4.3:
|
5106
|
-
version "2.4.3"
|
5107
|
-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
|
5108
|
-
integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==
|
5109
|
-
dependencies:
|
5110
|
-
psl "^1.1.24"
|
5111
|
-
punycode "^1.4.1"
|
5112
|
-
|
5113
5137
|
tr46@^1.0.1:
|
5114
5138
|
version "1.0.1"
|
5115
5139
|
resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
|
@@ -5146,15 +5170,10 @@ typedarray@^0.0.6:
|
|
5146
5170
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
5147
5171
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
5148
5172
|
|
5149
|
-
|
5150
|
-
version "
|
5151
|
-
resolved "https://registry.yarnpkg.com/
|
5152
|
-
integrity sha512-
|
5153
|
-
|
5154
|
-
uncss@^0.17.2:
|
5155
|
-
version "0.17.2"
|
5156
|
-
resolved "https://registry.yarnpkg.com/uncss/-/uncss-0.17.2.tgz#fac1c2429be72108e8a47437c647d58cf9ea66f1"
|
5157
|
-
integrity sha512-hu2HquwDItuGDem4YsJROdAD8SknmWtM24zwhQax6J1se8tPjV1cnwPKhtjodzBaUhaL8Zb3hlGdZ2WAUpbAOg==
|
5173
|
+
uncss@^0.17.3:
|
5174
|
+
version "0.17.3"
|
5175
|
+
resolved "https://registry.yarnpkg.com/uncss/-/uncss-0.17.3.tgz#50fc1eb4ed573ffff763458d801cd86e4d69ea11"
|
5176
|
+
integrity sha512-ksdDWl81YWvF/X14fOSw4iu8tESDHFIeyKIeDrK6GEVTQvqJc1WlOEXqostNwOCi3qAj++4EaLsdAgPmUbEyog==
|
5158
5177
|
dependencies:
|
5159
5178
|
commander "^2.20.0"
|
5160
5179
|
glob "^7.1.4"
|
@@ -5179,15 +5198,15 @@ unicode-match-property-ecmascript@^1.0.4:
|
|
5179
5198
|
unicode-canonical-property-names-ecmascript "^1.0.4"
|
5180
5199
|
unicode-property-aliases-ecmascript "^1.0.4"
|
5181
5200
|
|
5182
|
-
unicode-match-property-value-ecmascript@^1.
|
5183
|
-
version "1.
|
5184
|
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.
|
5185
|
-
integrity sha512-
|
5201
|
+
unicode-match-property-value-ecmascript@^1.2.0:
|
5202
|
+
version "1.2.0"
|
5203
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
|
5204
|
+
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
|
5186
5205
|
|
5187
5206
|
unicode-property-aliases-ecmascript@^1.0.4:
|
5188
|
-
version "1.0
|
5189
|
-
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.
|
5190
|
-
integrity sha512-
|
5207
|
+
version "1.1.0"
|
5208
|
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
|
5209
|
+
integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
|
5191
5210
|
|
5192
5211
|
unicode-trie@^0.3.1:
|
5193
5212
|
version "0.3.1"
|
@@ -5241,9 +5260,9 @@ upath@^1.1.1:
|
|
5241
5260
|
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
|
5242
5261
|
|
5243
5262
|
uri-js@^4.2.2:
|
5244
|
-
version "4.
|
5245
|
-
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.
|
5246
|
-
integrity sha512-
|
5263
|
+
version "4.4.0"
|
5264
|
+
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
|
5265
|
+
integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
|
5247
5266
|
dependencies:
|
5248
5267
|
punycode "^2.1.0"
|
5249
5268
|
|
@@ -5265,18 +5284,20 @@ use@^3.1.0:
|
|
5265
5284
|
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
|
5266
5285
|
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
|
5267
5286
|
|
5268
|
-
util-deprecate@^1.0.1, util-deprecate@~1.0.1:
|
5287
|
+
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
|
5269
5288
|
version "1.0.2"
|
5270
5289
|
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
5271
5290
|
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
5272
5291
|
|
5273
5292
|
util.promisify@~1.0.0:
|
5274
|
-
version "1.0.
|
5275
|
-
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.
|
5276
|
-
integrity sha512-
|
5293
|
+
version "1.0.1"
|
5294
|
+
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
|
5295
|
+
integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
|
5277
5296
|
dependencies:
|
5278
|
-
define-properties "^1.1.
|
5279
|
-
|
5297
|
+
define-properties "^1.1.3"
|
5298
|
+
es-abstract "^1.17.2"
|
5299
|
+
has-symbols "^1.0.1"
|
5300
|
+
object.getownpropertydescriptors "^2.1.0"
|
5280
5301
|
|
5281
5302
|
util@0.10.3:
|
5282
5303
|
version "0.10.3"
|
@@ -5293,19 +5314,19 @@ util@^0.11.0:
|
|
5293
5314
|
inherits "2.0.3"
|
5294
5315
|
|
5295
5316
|
uuid@^3.3.2:
|
5296
|
-
version "3.
|
5297
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.
|
5298
|
-
integrity sha512-
|
5317
|
+
version "3.4.0"
|
5318
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
5319
|
+
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
5299
5320
|
|
5300
5321
|
v8-compile-cache@^2.0.0:
|
5301
|
-
version "2.
|
5302
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.
|
5303
|
-
integrity sha512-
|
5322
|
+
version "2.2.0"
|
5323
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
|
5324
|
+
integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
|
5304
5325
|
|
5305
5326
|
vendors@^1.0.0:
|
5306
|
-
version "1.0.
|
5307
|
-
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.
|
5308
|
-
integrity sha512
|
5327
|
+
version "1.0.4"
|
5328
|
+
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
|
5329
|
+
integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
|
5309
5330
|
|
5310
5331
|
verror@1.10.0:
|
5311
5332
|
version "1.10.0"
|
@@ -5327,11 +5348,11 @@ vm-browserify@^1.0.1:
|
|
5327
5348
|
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
|
5328
5349
|
|
5329
5350
|
w3c-hr-time@^1.0.1:
|
5330
|
-
version "1.0.
|
5331
|
-
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.
|
5332
|
-
integrity
|
5351
|
+
version "1.0.2"
|
5352
|
+
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
|
5353
|
+
integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
|
5333
5354
|
dependencies:
|
5334
|
-
browser-process-hrtime "^0.
|
5355
|
+
browser-process-hrtime "^1.0.0"
|
5335
5356
|
|
5336
5357
|
w3c-xmlserializer@^1.1.2:
|
5337
5358
|
version "1.1.2"
|
@@ -5375,11 +5396,6 @@ whatwg-url@^7.0.0:
|
|
5375
5396
|
tr46 "^1.0.1"
|
5376
5397
|
webidl-conversions "^4.0.2"
|
5377
5398
|
|
5378
|
-
which-module@^2.0.0:
|
5379
|
-
version "2.0.0"
|
5380
|
-
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
5381
|
-
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
5382
|
-
|
5383
5399
|
which@^1.2.9:
|
5384
5400
|
version "1.3.1"
|
5385
5401
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
@@ -5392,15 +5408,6 @@ word-wrap@~1.2.3:
|
|
5392
5408
|
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
5393
5409
|
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
5394
5410
|
|
5395
|
-
wrap-ansi@^5.1.0:
|
5396
|
-
version "5.1.0"
|
5397
|
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
|
5398
|
-
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
|
5399
|
-
dependencies:
|
5400
|
-
ansi-styles "^3.2.0"
|
5401
|
-
string-width "^3.0.0"
|
5402
|
-
strip-ansi "^5.0.0"
|
5403
|
-
|
5404
5411
|
wrappy@1:
|
5405
5412
|
version "1.0.2"
|
5406
5413
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
@@ -5434,33 +5441,3 @@ xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1:
|
|
5434
5441
|
version "4.0.2"
|
5435
5442
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
5436
5443
|
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
5437
|
-
|
5438
|
-
y18n@^4.0.0:
|
5439
|
-
version "4.0.0"
|
5440
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
|
5441
|
-
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
|
5442
|
-
|
5443
|
-
yargs-parser@^15.0.0:
|
5444
|
-
version "15.0.0"
|
5445
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08"
|
5446
|
-
integrity sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ==
|
5447
|
-
dependencies:
|
5448
|
-
camelcase "^5.0.0"
|
5449
|
-
decamelize "^1.2.0"
|
5450
|
-
|
5451
|
-
yargs@^14.0.0:
|
5452
|
-
version "14.2.2"
|
5453
|
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.2.tgz#2769564379009ff8597cdd38fba09da9b493c4b5"
|
5454
|
-
integrity sha512-/4ld+4VV5RnrynMhPZJ/ZpOCGSCeghMykZ3BhdFBDa9Wy/RH6uEGNWDJog+aUlq+9OM1CFTgtYRW5Is1Po9NOA==
|
5455
|
-
dependencies:
|
5456
|
-
cliui "^5.0.0"
|
5457
|
-
decamelize "^1.2.0"
|
5458
|
-
find-up "^3.0.0"
|
5459
|
-
get-caller-file "^2.0.1"
|
5460
|
-
require-directory "^2.1.1"
|
5461
|
-
require-main-filename "^2.0.0"
|
5462
|
-
set-blocking "^2.0.0"
|
5463
|
-
string-width "^3.0.0"
|
5464
|
-
which-module "^2.0.0"
|
5465
|
-
y18n "^4.0.0"
|
5466
|
-
yargs-parser "^15.0.0"
|