goodcheck 2.4.3 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +18 -0
- data/.github/workflows/release.yml +16 -0
- data/.github/workflows/test.yml +46 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +21 -0
- data/README.md +111 -52
- data/Rakefile +41 -2
- data/docusaurus/website/package.json +1 -1
- data/docusaurus/website/versioned_docs/version-2.4.3/rules.md +80 -0
- data/docusaurus/website/versions.json +6 -0
- data/docusaurus/website/yarn.lock +1335 -1471
- data/goodcheck.gemspec +4 -4
- data/goodcheck.yml +10 -0
- data/lib/goodcheck.rb +1 -2
- data/lib/goodcheck/buffer.rb +45 -1
- data/lib/goodcheck/cli.rb +6 -2
- data/lib/goodcheck/commands/check.rb +9 -7
- data/lib/goodcheck/commands/config_loading.rb +1 -1
- data/lib/goodcheck/commands/test.rb +32 -4
- data/lib/goodcheck/config_loader.rb +2 -2
- data/lib/goodcheck/glob.rb +1 -1
- data/lib/goodcheck/import_loader.rb +17 -1
- data/lib/goodcheck/issue.rb +1 -0
- data/lib/goodcheck/trigger.rb +2 -0
- data/lib/goodcheck/version.rb +1 -1
- metadata +36 -20
- data/.travis.yml +0 -11
data/Rakefile
CHANGED
@@ -19,14 +19,28 @@ namespace :docs do
|
|
19
19
|
desc "Install dependencies for the documentation website"
|
20
20
|
task :install_deps do
|
21
21
|
on_docs_dir do
|
22
|
-
sh "yarn install"
|
22
|
+
sh "yarn", "install"
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
26
|
desc "Build the documentation website"
|
27
27
|
task :build => [:install_deps] do
|
28
28
|
on_docs_dir do
|
29
|
-
sh "yarn run build"
|
29
|
+
sh "yarn", "run", "build"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
desc "Update the version of the documentation website"
|
34
|
+
task :update_version => [:install_deps] do
|
35
|
+
on_docs_dir do
|
36
|
+
sh "yarn", "run", "version", Goodcheck::VERSION
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
desc "Publish the documentation website"
|
41
|
+
task :publish => [:build] do
|
42
|
+
on_docs_dir do
|
43
|
+
sh "yarn", "run", "publish-gh-pages"
|
30
44
|
end
|
31
45
|
end
|
32
46
|
|
@@ -34,3 +48,28 @@ namespace :docs do
|
|
34
48
|
Dir.chdir "docusaurus/website", &block
|
35
49
|
end
|
36
50
|
end
|
51
|
+
|
52
|
+
namespace :benchmark do
|
53
|
+
desc "Run benchmark"
|
54
|
+
task :run, [:n] do |_task, args|
|
55
|
+
require "benchmark"
|
56
|
+
require "net/http"
|
57
|
+
require "tempfile"
|
58
|
+
require_relative "lib/goodcheck"
|
59
|
+
require_relative "lib/goodcheck/cli"
|
60
|
+
|
61
|
+
content = Net::HTTP.get(URI("https://raw.githubusercontent.com/ruby/ruby/0256e4f0f5e10f0a15cbba2cd64e252dfa864e4a/gc.c"))
|
62
|
+
target_file = Tempfile.new("goodcheck-benchmark-")
|
63
|
+
target_file.write content
|
64
|
+
target_file = target_file.path
|
65
|
+
|
66
|
+
n = Integer(args[:n] || 1000)
|
67
|
+
puts "n = #{n}"
|
68
|
+
|
69
|
+
Benchmark.bm do |x|
|
70
|
+
x.report do
|
71
|
+
n.times { Goodcheck::CLI.new(stdout: STDOUT, stderr: STDERR).run(["check", target_file]) }
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
---
|
2
|
+
id: version-2.4.3-rules
|
3
|
+
title: Rules
|
4
|
+
sidebar_label: Rules
|
5
|
+
original_id: rules
|
6
|
+
---
|
7
|
+
|
8
|
+
|
9
|
+
## Rule: `"_blank"` Security Issue
|
10
|
+
|
11
|
+
When `target = "_blank"` is used, the opened page can access the original window object and potentially redirect the original page to a malicious URL. In this example, the rule will look for patterns of `"_blank"` and suggest to use `rel="noopener"` to prevent the opened page from having access.
|
12
|
+
|
13
|
+
```yaml
|
14
|
+
rules:
|
15
|
+
- id: security.link
|
16
|
+
pattern:
|
17
|
+
- token: 'target="_blank"'
|
18
|
+
- token: 'target: "_blank"'
|
19
|
+
message: |
|
20
|
+
Specify rel="noopener" for security reasons.
|
21
|
+
|
22
|
+
Opening new tab without rel="noopener" may cause a security issue.
|
23
|
+
It allows modifying original tab URLs from opened tabs.
|
24
|
+
justification:
|
25
|
+
- When opening a URL in our service
|
26
|
+
glob:
|
27
|
+
- "**/*.html"
|
28
|
+
- "**/*.html.erb"
|
29
|
+
fail:
|
30
|
+
- '<a href="https://github.com" target="_blank">GitHub</a>'
|
31
|
+
pass:
|
32
|
+
- '<a href="/signup">Signup</a>'
|
33
|
+
```
|
34
|
+
|
35
|
+
## Rule: Sign in
|
36
|
+
> Warning: This rule needs customization.
|
37
|
+
|
38
|
+
Keep wording consistent to provide a clear experience for users. In this example, the use of Log in or Log out would prompt the use of sign in / sign out instead.
|
39
|
+
|
40
|
+
```yaml
|
41
|
+
rules:
|
42
|
+
- id: wording.signin
|
43
|
+
pattern:
|
44
|
+
- token: Log in
|
45
|
+
case_sensitive: false
|
46
|
+
- token: Log out
|
47
|
+
case_sensitive: false
|
48
|
+
glob:
|
49
|
+
- "**/*.html.erb"
|
50
|
+
- "**/*.yml"
|
51
|
+
message: |
|
52
|
+
Please use “sign in”/“sign out”
|
53
|
+
|
54
|
+
We use “sign in” instead of “log in” and “sign out” instead of “log out”.
|
55
|
+
See the wording policy for details.
|
56
|
+
|
57
|
+
https://docs.example.com/1840
|
58
|
+
fail:
|
59
|
+
- "Log in"
|
60
|
+
- "Log out"
|
61
|
+
pass:
|
62
|
+
- "Sign in"
|
63
|
+
- "Sign out"
|
64
|
+
```
|
65
|
+
|
66
|
+
## Rule: mixin
|
67
|
+
> Warning: This rule needs customization.
|
68
|
+
|
69
|
+
A mixin lets you make groups of CSS declarations that you want to reuse throughout your site. In this example, it creates a warning when the color pattern is used and suggests using a mixin instead.
|
70
|
+
|
71
|
+
```yaml
|
72
|
+
rules:
|
73
|
+
- id: use-mixin
|
74
|
+
message: Use mixin.
|
75
|
+
pattern: "color: #038cf4;"
|
76
|
+
pass:
|
77
|
+
- "@include some-mixin;"
|
78
|
+
fail:
|
79
|
+
- "color: #038cf4;"
|
80
|
+
```
|
@@ -2,736 +2,868 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
-
"@babel/code-frame@7.5.5"
|
5
|
+
"@babel/code-frame@7.5.5":
|
6
6
|
version "7.5.5"
|
7
7
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
|
8
8
|
integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
|
9
9
|
dependencies:
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
|
-
"@babel/
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
15
|
-
integrity sha512-
|
16
|
-
dependencies:
|
17
|
-
"@babel/
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
12
|
+
"@babel/code-frame@^7.8.3":
|
13
|
+
version "7.8.3"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
|
15
|
+
integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
|
16
|
+
dependencies:
|
17
|
+
"@babel/highlight" "^7.8.3"
|
18
|
+
|
19
|
+
"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0":
|
20
|
+
version "7.9.0"
|
21
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c"
|
22
|
+
integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g==
|
23
|
+
dependencies:
|
24
|
+
browserslist "^4.9.1"
|
25
|
+
invariant "^2.2.4"
|
26
|
+
semver "^5.5.0"
|
27
|
+
|
28
|
+
"@babel/core@^7.7.4":
|
29
|
+
version "7.9.0"
|
30
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e"
|
31
|
+
integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
|
32
|
+
dependencies:
|
33
|
+
"@babel/code-frame" "^7.8.3"
|
34
|
+
"@babel/generator" "^7.9.0"
|
35
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
36
|
+
"@babel/helpers" "^7.9.0"
|
37
|
+
"@babel/parser" "^7.9.0"
|
38
|
+
"@babel/template" "^7.8.6"
|
39
|
+
"@babel/traverse" "^7.9.0"
|
40
|
+
"@babel/types" "^7.9.0"
|
41
|
+
convert-source-map "^1.7.0"
|
25
42
|
debug "^4.1.0"
|
26
|
-
|
43
|
+
gensync "^1.0.0-beta.1"
|
44
|
+
json5 "^2.1.2"
|
27
45
|
lodash "^4.17.13"
|
28
46
|
resolve "^1.3.2"
|
29
47
|
semver "^5.4.1"
|
30
48
|
source-map "^0.5.0"
|
31
49
|
|
32
|
-
"@babel/generator@^7.
|
33
|
-
version "7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
35
|
-
integrity sha512-
|
50
|
+
"@babel/generator@^7.9.0", "@babel/generator@^7.9.5":
|
51
|
+
version "7.9.5"
|
52
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9"
|
53
|
+
integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ==
|
36
54
|
dependencies:
|
37
|
-
"@babel/types" "^7.
|
55
|
+
"@babel/types" "^7.9.5"
|
38
56
|
jsesc "^2.5.1"
|
39
57
|
lodash "^4.17.13"
|
40
58
|
source-map "^0.5.0"
|
41
|
-
trim-right "^1.0.1"
|
42
59
|
|
43
|
-
"@babel/helper-annotate-as-pure@^7.
|
44
|
-
version "7.
|
45
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
46
|
-
integrity sha512-
|
60
|
+
"@babel/helper-annotate-as-pure@^7.8.3":
|
61
|
+
version "7.8.3"
|
62
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
|
63
|
+
integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
|
47
64
|
dependencies:
|
48
|
-
"@babel/types" "^7.
|
65
|
+
"@babel/types" "^7.8.3"
|
49
66
|
|
50
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
51
|
-
version "7.
|
52
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
53
|
-
integrity sha512-
|
67
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
|
68
|
+
version "7.8.3"
|
69
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
|
70
|
+
integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
|
54
71
|
dependencies:
|
55
|
-
"@babel/helper-explode-assignable-expression" "^7.
|
56
|
-
"@babel/types" "^7.
|
72
|
+
"@babel/helper-explode-assignable-expression" "^7.8.3"
|
73
|
+
"@babel/types" "^7.8.3"
|
57
74
|
|
58
|
-
"@babel/helper-builder-react-jsx@^7.
|
59
|
-
version "7.
|
60
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.
|
61
|
-
integrity sha512-
|
75
|
+
"@babel/helper-builder-react-jsx-experimental@^7.9.0":
|
76
|
+
version "7.9.5"
|
77
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3"
|
78
|
+
integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==
|
62
79
|
dependencies:
|
63
|
-
"@babel/
|
64
|
-
|
80
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
81
|
+
"@babel/helper-module-imports" "^7.8.3"
|
82
|
+
"@babel/types" "^7.9.5"
|
65
83
|
|
66
|
-
"@babel/helper-
|
67
|
-
version "7.
|
68
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
69
|
-
integrity sha512-
|
84
|
+
"@babel/helper-builder-react-jsx@^7.9.0":
|
85
|
+
version "7.9.0"
|
86
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32"
|
87
|
+
integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==
|
70
88
|
dependencies:
|
71
|
-
"@babel/helper-
|
72
|
-
"@babel/
|
73
|
-
"@babel/types" "^7.4.4"
|
89
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
90
|
+
"@babel/types" "^7.9.0"
|
74
91
|
|
75
|
-
"@babel/helper-
|
76
|
-
version "7.
|
77
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
78
|
-
integrity sha512-
|
92
|
+
"@babel/helper-compilation-targets@^7.8.7":
|
93
|
+
version "7.8.7"
|
94
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde"
|
95
|
+
integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw==
|
79
96
|
dependencies:
|
80
|
-
"@babel/
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
"@babel/helper-split-export-declaration" "^7.4.4"
|
97
|
+
"@babel/compat-data" "^7.8.6"
|
98
|
+
browserslist "^4.9.1"
|
99
|
+
invariant "^2.2.4"
|
100
|
+
levenary "^1.1.1"
|
101
|
+
semver "^5.5.0"
|
86
102
|
|
87
|
-
"@babel/helper-
|
88
|
-
version "7.
|
89
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
90
|
-
integrity sha512-
|
91
|
-
dependencies:
|
92
|
-
"@babel/helper-function-name" "^7.
|
93
|
-
"@babel/
|
103
|
+
"@babel/helper-create-class-features-plugin@^7.8.3":
|
104
|
+
version "7.9.5"
|
105
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz#79753d44017806b481017f24b02fd4113c7106ea"
|
106
|
+
integrity sha512-IipaxGaQmW4TfWoXdqjY0TzoXQ1HRS0kPpEgvjosb3u7Uedcq297xFqDQiCcQtRRwzIMif+N1MLVI8C5a4/PAA==
|
107
|
+
dependencies:
|
108
|
+
"@babel/helper-function-name" "^7.9.5"
|
109
|
+
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
110
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
111
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
112
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
113
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
114
|
+
|
115
|
+
"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8":
|
116
|
+
version "7.8.8"
|
117
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087"
|
118
|
+
integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==
|
119
|
+
dependencies:
|
120
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
121
|
+
"@babel/helper-regex" "^7.8.3"
|
122
|
+
regexpu-core "^4.7.0"
|
123
|
+
|
124
|
+
"@babel/helper-define-map@^7.8.3":
|
125
|
+
version "7.8.3"
|
126
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
|
127
|
+
integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
|
128
|
+
dependencies:
|
129
|
+
"@babel/helper-function-name" "^7.8.3"
|
130
|
+
"@babel/types" "^7.8.3"
|
94
131
|
lodash "^4.17.13"
|
95
132
|
|
96
|
-
"@babel/helper-explode-assignable-expression@^7.
|
97
|
-
version "7.
|
98
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
|
99
|
-
integrity sha512-
|
133
|
+
"@babel/helper-explode-assignable-expression@^7.8.3":
|
134
|
+
version "7.8.3"
|
135
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
|
136
|
+
integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
|
100
137
|
dependencies:
|
101
|
-
"@babel/traverse" "^7.
|
102
|
-
"@babel/types" "^7.
|
138
|
+
"@babel/traverse" "^7.8.3"
|
139
|
+
"@babel/types" "^7.8.3"
|
103
140
|
|
104
|
-
"@babel/helper-function-name@^7.
|
105
|
-
version "7.
|
106
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.
|
107
|
-
integrity sha512-
|
141
|
+
"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5":
|
142
|
+
version "7.9.5"
|
143
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c"
|
144
|
+
integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==
|
108
145
|
dependencies:
|
109
|
-
"@babel/helper-get-function-arity" "^7.
|
110
|
-
"@babel/template" "^7.
|
111
|
-
"@babel/types" "^7.
|
146
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
147
|
+
"@babel/template" "^7.8.3"
|
148
|
+
"@babel/types" "^7.9.5"
|
112
149
|
|
113
|
-
"@babel/helper-get-function-arity@^7.
|
114
|
-
version "7.
|
115
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.
|
116
|
-
integrity sha512-
|
150
|
+
"@babel/helper-get-function-arity@^7.8.3":
|
151
|
+
version "7.8.3"
|
152
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
|
153
|
+
integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
|
117
154
|
dependencies:
|
118
|
-
"@babel/types" "^7.
|
155
|
+
"@babel/types" "^7.8.3"
|
119
156
|
|
120
|
-
"@babel/helper-hoist-variables@^7.
|
121
|
-
version "7.
|
122
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
123
|
-
integrity sha512-
|
157
|
+
"@babel/helper-hoist-variables@^7.8.3":
|
158
|
+
version "7.8.3"
|
159
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
|
160
|
+
integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
|
124
161
|
dependencies:
|
125
|
-
"@babel/types" "^7.
|
162
|
+
"@babel/types" "^7.8.3"
|
126
163
|
|
127
|
-
"@babel/helper-member-expression-to-functions@^7.
|
128
|
-
version "7.
|
129
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
130
|
-
integrity sha512-
|
164
|
+
"@babel/helper-member-expression-to-functions@^7.8.3":
|
165
|
+
version "7.8.3"
|
166
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
|
167
|
+
integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
|
131
168
|
dependencies:
|
132
|
-
"@babel/types" "^7.
|
169
|
+
"@babel/types" "^7.8.3"
|
133
170
|
|
134
|
-
"@babel/helper-module-imports@^7.
|
135
|
-
version "7.
|
136
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.
|
137
|
-
integrity sha512-
|
171
|
+
"@babel/helper-module-imports@^7.8.3":
|
172
|
+
version "7.8.3"
|
173
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
174
|
+
integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
|
138
175
|
dependencies:
|
139
|
-
"@babel/types" "^7.
|
176
|
+
"@babel/types" "^7.8.3"
|
140
177
|
|
141
|
-
"@babel/helper-module-transforms@^7.
|
142
|
-
version "7.
|
143
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
144
|
-
integrity sha512-
|
145
|
-
dependencies:
|
146
|
-
"@babel/helper-module-imports" "^7.
|
147
|
-
"@babel/helper-
|
148
|
-
"@babel/helper-
|
149
|
-
"@babel/
|
150
|
-
"@babel/
|
178
|
+
"@babel/helper-module-transforms@^7.9.0":
|
179
|
+
version "7.9.0"
|
180
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
|
181
|
+
integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
|
182
|
+
dependencies:
|
183
|
+
"@babel/helper-module-imports" "^7.8.3"
|
184
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
185
|
+
"@babel/helper-simple-access" "^7.8.3"
|
186
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
187
|
+
"@babel/template" "^7.8.6"
|
188
|
+
"@babel/types" "^7.9.0"
|
151
189
|
lodash "^4.17.13"
|
152
190
|
|
153
|
-
"@babel/helper-optimise-call-expression@^7.
|
154
|
-
version "7.
|
155
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.
|
156
|
-
integrity sha512-
|
191
|
+
"@babel/helper-optimise-call-expression@^7.8.3":
|
192
|
+
version "7.8.3"
|
193
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
|
194
|
+
integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
|
157
195
|
dependencies:
|
158
|
-
"@babel/types" "^7.
|
196
|
+
"@babel/types" "^7.8.3"
|
159
197
|
|
160
|
-
"@babel/helper-plugin-utils@^7.0.0":
|
161
|
-
version "7.
|
162
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
163
|
-
integrity sha512-
|
198
|
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
199
|
+
version "7.8.3"
|
200
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
|
201
|
+
integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
|
164
202
|
|
165
|
-
"@babel/helper-regex@^7.
|
166
|
-
version "7.
|
167
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.
|
168
|
-
integrity sha512-
|
203
|
+
"@babel/helper-regex@^7.8.3":
|
204
|
+
version "7.8.3"
|
205
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
|
206
|
+
integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==
|
169
207
|
dependencies:
|
170
208
|
lodash "^4.17.13"
|
171
209
|
|
172
|
-
"@babel/helper-remap-async-to-generator@^7.
|
173
|
-
version "7.
|
174
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
175
|
-
integrity sha512-
|
176
|
-
dependencies:
|
177
|
-
"@babel/helper-annotate-as-pure" "^7.
|
178
|
-
"@babel/helper-wrap-function" "^7.
|
179
|
-
"@babel/template" "^7.
|
180
|
-
"@babel/traverse" "^7.
|
181
|
-
"@babel/types" "^7.
|
210
|
+
"@babel/helper-remap-async-to-generator@^7.8.3":
|
211
|
+
version "7.8.3"
|
212
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
|
213
|
+
integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
|
214
|
+
dependencies:
|
215
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
216
|
+
"@babel/helper-wrap-function" "^7.8.3"
|
217
|
+
"@babel/template" "^7.8.3"
|
218
|
+
"@babel/traverse" "^7.8.3"
|
219
|
+
"@babel/types" "^7.8.3"
|
220
|
+
|
221
|
+
"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6":
|
222
|
+
version "7.8.6"
|
223
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8"
|
224
|
+
integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==
|
225
|
+
dependencies:
|
226
|
+
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
227
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
228
|
+
"@babel/traverse" "^7.8.6"
|
229
|
+
"@babel/types" "^7.8.6"
|
230
|
+
|
231
|
+
"@babel/helper-simple-access@^7.8.3":
|
232
|
+
version "7.8.3"
|
233
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
|
234
|
+
integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
|
235
|
+
dependencies:
|
236
|
+
"@babel/template" "^7.8.3"
|
237
|
+
"@babel/types" "^7.8.3"
|
238
|
+
|
239
|
+
"@babel/helper-split-export-declaration@^7.8.3":
|
240
|
+
version "7.8.3"
|
241
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
|
242
|
+
integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
|
243
|
+
dependencies:
|
244
|
+
"@babel/types" "^7.8.3"
|
245
|
+
|
246
|
+
"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
|
247
|
+
version "7.9.5"
|
248
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
|
249
|
+
integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==
|
250
|
+
|
251
|
+
"@babel/helper-wrap-function@^7.8.3":
|
252
|
+
version "7.8.3"
|
253
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
|
254
|
+
integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
|
255
|
+
dependencies:
|
256
|
+
"@babel/helper-function-name" "^7.8.3"
|
257
|
+
"@babel/template" "^7.8.3"
|
258
|
+
"@babel/traverse" "^7.8.3"
|
259
|
+
"@babel/types" "^7.8.3"
|
260
|
+
|
261
|
+
"@babel/helpers@^7.9.0":
|
262
|
+
version "7.9.2"
|
263
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f"
|
264
|
+
integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==
|
265
|
+
dependencies:
|
266
|
+
"@babel/template" "^7.8.3"
|
267
|
+
"@babel/traverse" "^7.9.0"
|
268
|
+
"@babel/types" "^7.9.0"
|
269
|
+
|
270
|
+
"@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3":
|
271
|
+
version "7.9.0"
|
272
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
|
273
|
+
integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
|
274
|
+
dependencies:
|
275
|
+
"@babel/helper-validator-identifier" "^7.9.0"
|
276
|
+
chalk "^2.0.0"
|
277
|
+
js-tokens "^4.0.0"
|
182
278
|
|
183
|
-
"@babel/
|
184
|
-
version "7.
|
185
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
186
|
-
integrity sha512-
|
279
|
+
"@babel/parser@^7.8.6", "@babel/parser@^7.9.0":
|
280
|
+
version "7.9.4"
|
281
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
|
282
|
+
integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
|
283
|
+
|
284
|
+
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
|
285
|
+
version "7.8.3"
|
286
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
|
287
|
+
integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
|
187
288
|
dependencies:
|
188
|
-
"@babel/helper-
|
189
|
-
"@babel/helper-
|
190
|
-
"@babel/
|
191
|
-
"@babel/types" "^7.5.5"
|
289
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
290
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
291
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
192
292
|
|
193
|
-
"@babel/
|
194
|
-
version "7.
|
195
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
196
|
-
integrity sha512-
|
293
|
+
"@babel/plugin-proposal-class-properties@^7.7.4":
|
294
|
+
version "7.8.3"
|
295
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e"
|
296
|
+
integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
|
197
297
|
dependencies:
|
198
|
-
"@babel/
|
199
|
-
"@babel/
|
298
|
+
"@babel/helper-create-class-features-plugin" "^7.8.3"
|
299
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
200
300
|
|
201
|
-
"@babel/
|
202
|
-
version "7.
|
203
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
204
|
-
integrity sha512-
|
301
|
+
"@babel/plugin-proposal-dynamic-import@^7.8.3":
|
302
|
+
version "7.8.3"
|
303
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
|
304
|
+
integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
|
205
305
|
dependencies:
|
206
|
-
"@babel/
|
306
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
307
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
207
308
|
|
208
|
-
"@babel/
|
209
|
-
version "7.
|
210
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
211
|
-
integrity sha512-
|
309
|
+
"@babel/plugin-proposal-json-strings@^7.8.3":
|
310
|
+
version "7.8.3"
|
311
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b"
|
312
|
+
integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==
|
212
313
|
dependencies:
|
213
|
-
"@babel/helper-
|
214
|
-
"@babel/
|
215
|
-
"@babel/traverse" "^7.1.0"
|
216
|
-
"@babel/types" "^7.2.0"
|
314
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
315
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
217
316
|
|
218
|
-
"@babel/
|
219
|
-
version "7.
|
220
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
221
|
-
integrity sha512-
|
317
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
|
318
|
+
version "7.8.3"
|
319
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
|
320
|
+
integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
|
222
321
|
dependencies:
|
223
|
-
"@babel/
|
224
|
-
"@babel/
|
225
|
-
"@babel/types" "^7.6.0"
|
322
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
323
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
226
324
|
|
227
|
-
"@babel/
|
228
|
-
version "7.
|
229
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
230
|
-
integrity sha512-
|
325
|
+
"@babel/plugin-proposal-numeric-separator@^7.8.3":
|
326
|
+
version "7.8.3"
|
327
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8"
|
328
|
+
integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==
|
231
329
|
dependencies:
|
232
|
-
|
233
|
-
|
234
|
-
js-tokens "^4.0.0"
|
330
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
331
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.3"
|
235
332
|
|
236
|
-
"@babel/
|
237
|
-
version "7.
|
238
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
239
|
-
integrity sha512
|
333
|
+
"@babel/plugin-proposal-object-rest-spread@^7.7.4", "@babel/plugin-proposal-object-rest-spread@^7.9.5":
|
334
|
+
version "7.9.5"
|
335
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.5.tgz#3fd65911306d8746014ec0d0cf78f0e39a149116"
|
336
|
+
integrity sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg==
|
337
|
+
dependencies:
|
338
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
339
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
340
|
+
"@babel/plugin-transform-parameters" "^7.9.5"
|
240
341
|
|
241
|
-
"@babel/plugin-proposal-
|
242
|
-
version "7.
|
243
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
244
|
-
integrity sha512
|
342
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
|
343
|
+
version "7.8.3"
|
344
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
|
345
|
+
integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
|
245
346
|
dependencies:
|
246
|
-
"@babel/helper-plugin-utils" "^7.
|
247
|
-
"@babel/
|
248
|
-
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
347
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
348
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
249
349
|
|
250
|
-
"@babel/plugin-proposal-
|
251
|
-
version "7.
|
252
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
253
|
-
integrity sha512-
|
350
|
+
"@babel/plugin-proposal-optional-chaining@^7.9.0":
|
351
|
+
version "7.9.0"
|
352
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58"
|
353
|
+
integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==
|
254
354
|
dependencies:
|
255
|
-
"@babel/helper-
|
256
|
-
"@babel/
|
355
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
356
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
257
357
|
|
258
|
-
"@babel/plugin-proposal-
|
259
|
-
version "7.
|
260
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
261
|
-
integrity sha512-
|
358
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3":
|
359
|
+
version "7.8.8"
|
360
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d"
|
361
|
+
integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==
|
262
362
|
dependencies:
|
263
|
-
"@babel/helper-plugin
|
264
|
-
"@babel/plugin-
|
363
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.8"
|
364
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
265
365
|
|
266
|
-
"@babel/plugin-
|
267
|
-
version "7.
|
268
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
269
|
-
integrity sha512-
|
366
|
+
"@babel/plugin-syntax-async-generators@^7.8.0":
|
367
|
+
version "7.8.4"
|
368
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
369
|
+
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
270
370
|
dependencies:
|
271
|
-
"@babel/helper-plugin-utils" "^7.
|
272
|
-
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
371
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
273
372
|
|
274
|
-
"@babel/plugin-
|
275
|
-
version "7.
|
276
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
277
|
-
integrity sha512-
|
373
|
+
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
374
|
+
version "7.8.3"
|
375
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
376
|
+
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
278
377
|
dependencies:
|
279
|
-
"@babel/helper-plugin-utils" "^7.
|
280
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
378
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
281
379
|
|
282
|
-
"@babel/plugin-
|
283
|
-
version "7.
|
284
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
285
|
-
integrity sha512-
|
380
|
+
"@babel/plugin-syntax-json-strings@^7.8.0":
|
381
|
+
version "7.8.3"
|
382
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
383
|
+
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
286
384
|
dependencies:
|
287
|
-
"@babel/helper-plugin-utils" "^7.
|
288
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
385
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
289
386
|
|
290
|
-
"@babel/plugin-
|
291
|
-
version "7.
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
293
|
-
integrity sha512-
|
387
|
+
"@babel/plugin-syntax-jsx@^7.8.3":
|
388
|
+
version "7.8.3"
|
389
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94"
|
390
|
+
integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==
|
294
391
|
dependencies:
|
295
|
-
"@babel/helper-plugin-utils" "^7.
|
296
|
-
"@babel/helper-regex" "^7.4.4"
|
297
|
-
regexpu-core "^4.5.4"
|
392
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
298
393
|
|
299
|
-
"@babel/plugin-syntax-
|
300
|
-
version "7.
|
301
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
302
|
-
integrity sha512-
|
394
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
395
|
+
version "7.8.3"
|
396
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
397
|
+
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
303
398
|
dependencies:
|
304
|
-
"@babel/helper-plugin-utils" "^7.
|
399
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
305
400
|
|
306
|
-
"@babel/plugin-syntax-
|
307
|
-
version "7.
|
308
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
309
|
-
integrity sha512-
|
401
|
+
"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3":
|
402
|
+
version "7.8.3"
|
403
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f"
|
404
|
+
integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==
|
310
405
|
dependencies:
|
311
|
-
"@babel/helper-plugin-utils" "^7.
|
406
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
312
407
|
|
313
|
-
"@babel/plugin-syntax-
|
314
|
-
version "7.
|
315
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
316
|
-
integrity sha512-
|
408
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
409
|
+
version "7.8.3"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
411
|
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
317
412
|
dependencies:
|
318
|
-
"@babel/helper-plugin-utils" "^7.
|
413
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
319
414
|
|
320
|
-
"@babel/plugin-syntax-
|
321
|
-
version "7.
|
322
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
323
|
-
integrity sha512-
|
415
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
|
416
|
+
version "7.8.3"
|
417
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
418
|
+
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
324
419
|
dependencies:
|
325
|
-
"@babel/helper-plugin-utils" "^7.
|
420
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
326
421
|
|
327
|
-
"@babel/plugin-syntax-
|
328
|
-
version "7.
|
329
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
330
|
-
integrity sha512-
|
422
|
+
"@babel/plugin-syntax-optional-chaining@^7.8.0":
|
423
|
+
version "7.8.3"
|
424
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
425
|
+
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
331
426
|
dependencies:
|
332
|
-
"@babel/helper-plugin-utils" "^7.
|
427
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
333
428
|
|
334
|
-
"@babel/plugin-syntax-
|
335
|
-
version "7.
|
336
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
337
|
-
integrity sha512-
|
429
|
+
"@babel/plugin-syntax-top-level-await@^7.8.3":
|
430
|
+
version "7.8.3"
|
431
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391"
|
432
|
+
integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==
|
338
433
|
dependencies:
|
339
|
-
"@babel/helper-plugin-utils" "^7.
|
434
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
340
435
|
|
341
|
-
"@babel/plugin-transform-arrow-functions@^7.
|
342
|
-
version "7.
|
343
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
344
|
-
integrity sha512-
|
436
|
+
"@babel/plugin-transform-arrow-functions@^7.8.3":
|
437
|
+
version "7.8.3"
|
438
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
|
439
|
+
integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
|
345
440
|
dependencies:
|
346
|
-
"@babel/helper-plugin-utils" "^7.
|
441
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
347
442
|
|
348
|
-
"@babel/plugin-transform-async-to-generator@^7.
|
349
|
-
version "7.
|
350
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
351
|
-
integrity sha512-
|
443
|
+
"@babel/plugin-transform-async-to-generator@^7.8.3":
|
444
|
+
version "7.8.3"
|
445
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
|
446
|
+
integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
|
352
447
|
dependencies:
|
353
|
-
"@babel/helper-module-imports" "^7.
|
354
|
-
"@babel/helper-plugin-utils" "^7.
|
355
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
448
|
+
"@babel/helper-module-imports" "^7.8.3"
|
449
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
450
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
356
451
|
|
357
|
-
"@babel/plugin-transform-block-scoped-functions@^7.
|
358
|
-
version "7.
|
359
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
360
|
-
integrity sha512-
|
452
|
+
"@babel/plugin-transform-block-scoped-functions@^7.8.3":
|
453
|
+
version "7.8.3"
|
454
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
|
455
|
+
integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
|
361
456
|
dependencies:
|
362
|
-
"@babel/helper-plugin-utils" "^7.
|
457
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
363
458
|
|
364
|
-
"@babel/plugin-transform-block-scoping@^7.
|
365
|
-
version "7.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
367
|
-
integrity sha512-
|
459
|
+
"@babel/plugin-transform-block-scoping@^7.8.3":
|
460
|
+
version "7.8.3"
|
461
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
|
462
|
+
integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
|
368
463
|
dependencies:
|
369
|
-
"@babel/helper-plugin-utils" "^7.
|
464
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
370
465
|
lodash "^4.17.13"
|
371
466
|
|
372
|
-
"@babel/plugin-transform-classes@^7.
|
373
|
-
version "7.
|
374
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
375
|
-
integrity sha512-
|
376
|
-
dependencies:
|
377
|
-
"@babel/helper-annotate-as-pure" "^7.
|
378
|
-
"@babel/helper-define-map" "^7.
|
379
|
-
"@babel/helper-function-name" "^7.
|
380
|
-
"@babel/helper-optimise-call-expression" "^7.
|
381
|
-
"@babel/helper-plugin-utils" "^7.
|
382
|
-
"@babel/helper-replace-supers" "^7.
|
383
|
-
"@babel/helper-split-export-declaration" "^7.
|
467
|
+
"@babel/plugin-transform-classes@^7.9.5":
|
468
|
+
version "7.9.5"
|
469
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c"
|
470
|
+
integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==
|
471
|
+
dependencies:
|
472
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
473
|
+
"@babel/helper-define-map" "^7.8.3"
|
474
|
+
"@babel/helper-function-name" "^7.9.5"
|
475
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
476
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
477
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
478
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
384
479
|
globals "^11.1.0"
|
385
480
|
|
386
|
-
"@babel/plugin-transform-computed-properties@^7.
|
387
|
-
version "7.
|
388
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
389
|
-
integrity sha512-
|
481
|
+
"@babel/plugin-transform-computed-properties@^7.8.3":
|
482
|
+
version "7.8.3"
|
483
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
|
484
|
+
integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
|
390
485
|
dependencies:
|
391
|
-
"@babel/helper-plugin-utils" "^7.
|
486
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
392
487
|
|
393
|
-
"@babel/plugin-transform-destructuring@^7.
|
394
|
-
version "7.
|
395
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
396
|
-
integrity sha512-
|
488
|
+
"@babel/plugin-transform-destructuring@^7.9.5":
|
489
|
+
version "7.9.5"
|
490
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50"
|
491
|
+
integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==
|
397
492
|
dependencies:
|
398
|
-
"@babel/helper-plugin-utils" "^7.
|
493
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
399
494
|
|
400
|
-
"@babel/plugin-transform-dotall-regex@^7.4.4":
|
401
|
-
version "7.
|
402
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
403
|
-
integrity sha512-
|
495
|
+
"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3":
|
496
|
+
version "7.8.3"
|
497
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
|
498
|
+
integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
|
404
499
|
dependencies:
|
405
|
-
"@babel/helper-plugin
|
406
|
-
"@babel/helper-
|
407
|
-
regexpu-core "^4.5.4"
|
500
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
501
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
408
502
|
|
409
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
410
|
-
version "7.
|
411
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
412
|
-
integrity sha512-
|
503
|
+
"@babel/plugin-transform-duplicate-keys@^7.8.3":
|
504
|
+
version "7.8.3"
|
505
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1"
|
506
|
+
integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==
|
413
507
|
dependencies:
|
414
|
-
"@babel/helper-plugin-utils" "^7.
|
508
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
415
509
|
|
416
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
417
|
-
version "7.
|
418
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
419
|
-
integrity sha512-
|
510
|
+
"@babel/plugin-transform-exponentiation-operator@^7.8.3":
|
511
|
+
version "7.8.3"
|
512
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
|
513
|
+
integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
|
420
514
|
dependencies:
|
421
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
422
|
-
"@babel/helper-plugin-utils" "^7.
|
515
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
|
516
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
423
517
|
|
424
|
-
"@babel/plugin-transform-for-of@^7.
|
425
|
-
version "7.
|
426
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
427
|
-
integrity sha512-
|
518
|
+
"@babel/plugin-transform-for-of@^7.9.0":
|
519
|
+
version "7.9.0"
|
520
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e"
|
521
|
+
integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==
|
428
522
|
dependencies:
|
429
|
-
"@babel/helper-plugin-utils" "^7.
|
523
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
430
524
|
|
431
|
-
"@babel/plugin-transform-function-name@^7.
|
432
|
-
version "7.
|
433
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
434
|
-
integrity sha512-
|
525
|
+
"@babel/plugin-transform-function-name@^7.8.3":
|
526
|
+
version "7.8.3"
|
527
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
|
528
|
+
integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
|
435
529
|
dependencies:
|
436
|
-
"@babel/helper-function-name" "^7.
|
437
|
-
"@babel/helper-plugin-utils" "^7.
|
530
|
+
"@babel/helper-function-name" "^7.8.3"
|
531
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
438
532
|
|
439
|
-
"@babel/plugin-transform-literals@^7.
|
440
|
-
version "7.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
442
|
-
integrity sha512-
|
533
|
+
"@babel/plugin-transform-literals@^7.8.3":
|
534
|
+
version "7.8.3"
|
535
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
|
536
|
+
integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
|
443
537
|
dependencies:
|
444
|
-
"@babel/helper-plugin-utils" "^7.
|
538
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
445
539
|
|
446
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
447
|
-
version "7.
|
448
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
449
|
-
integrity sha512-
|
540
|
+
"@babel/plugin-transform-member-expression-literals@^7.8.3":
|
541
|
+
version "7.8.3"
|
542
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
|
543
|
+
integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
|
450
544
|
dependencies:
|
451
|
-
"@babel/helper-plugin-utils" "^7.
|
545
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
452
546
|
|
453
|
-
"@babel/plugin-transform-modules-amd@^7.
|
454
|
-
version "7.
|
455
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
456
|
-
integrity sha512-
|
547
|
+
"@babel/plugin-transform-modules-amd@^7.9.0":
|
548
|
+
version "7.9.0"
|
549
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4"
|
550
|
+
integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q==
|
457
551
|
dependencies:
|
458
|
-
"@babel/helper-module-transforms" "^7.
|
459
|
-
"@babel/helper-plugin-utils" "^7.
|
552
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
553
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
460
554
|
babel-plugin-dynamic-import-node "^2.3.0"
|
461
555
|
|
462
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
463
|
-
version "7.
|
464
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
465
|
-
integrity sha512-
|
556
|
+
"@babel/plugin-transform-modules-commonjs@^7.9.0":
|
557
|
+
version "7.9.0"
|
558
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940"
|
559
|
+
integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g==
|
466
560
|
dependencies:
|
467
|
-
"@babel/helper-module-transforms" "^7.
|
468
|
-
"@babel/helper-plugin-utils" "^7.
|
469
|
-
"@babel/helper-simple-access" "^7.
|
561
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
562
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
563
|
+
"@babel/helper-simple-access" "^7.8.3"
|
470
564
|
babel-plugin-dynamic-import-node "^2.3.0"
|
471
565
|
|
472
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
473
|
-
version "7.
|
474
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
475
|
-
integrity sha512-
|
566
|
+
"@babel/plugin-transform-modules-systemjs@^7.9.0":
|
567
|
+
version "7.9.0"
|
568
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90"
|
569
|
+
integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ==
|
476
570
|
dependencies:
|
477
|
-
"@babel/helper-hoist-variables" "^7.
|
478
|
-
"@babel/helper-
|
571
|
+
"@babel/helper-hoist-variables" "^7.8.3"
|
572
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
573
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
479
574
|
babel-plugin-dynamic-import-node "^2.3.0"
|
480
575
|
|
481
|
-
"@babel/plugin-transform-modules-umd@^7.
|
482
|
-
version "7.
|
483
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
484
|
-
integrity sha512-
|
576
|
+
"@babel/plugin-transform-modules-umd@^7.9.0":
|
577
|
+
version "7.9.0"
|
578
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697"
|
579
|
+
integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==
|
485
580
|
dependencies:
|
486
|
-
"@babel/helper-module-transforms" "^7.
|
487
|
-
"@babel/helper-plugin-utils" "^7.
|
581
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
582
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
488
583
|
|
489
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
490
|
-
version "7.
|
491
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
492
|
-
integrity sha512-
|
584
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
|
585
|
+
version "7.8.3"
|
586
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
|
587
|
+
integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
|
493
588
|
dependencies:
|
494
|
-
regexp-
|
589
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
495
590
|
|
496
|
-
"@babel/plugin-transform-new-target@^7.
|
497
|
-
version "7.
|
498
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
499
|
-
integrity sha512-
|
591
|
+
"@babel/plugin-transform-new-target@^7.8.3":
|
592
|
+
version "7.8.3"
|
593
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43"
|
594
|
+
integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==
|
500
595
|
dependencies:
|
501
|
-
"@babel/helper-plugin-utils" "^7.
|
596
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
502
597
|
|
503
|
-
"@babel/plugin-transform-object-super@^7.
|
504
|
-
version "7.
|
505
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
506
|
-
integrity sha512-
|
598
|
+
"@babel/plugin-transform-object-super@^7.8.3":
|
599
|
+
version "7.8.3"
|
600
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
|
601
|
+
integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
|
507
602
|
dependencies:
|
508
|
-
"@babel/helper-plugin-utils" "^7.
|
509
|
-
"@babel/helper-replace-supers" "^7.
|
603
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
604
|
+
"@babel/helper-replace-supers" "^7.8.3"
|
510
605
|
|
511
|
-
"@babel/plugin-transform-parameters@^7.
|
512
|
-
version "7.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
514
|
-
integrity sha512-
|
606
|
+
"@babel/plugin-transform-parameters@^7.9.5":
|
607
|
+
version "7.9.5"
|
608
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795"
|
609
|
+
integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==
|
515
610
|
dependencies:
|
516
|
-
"@babel/helper-
|
517
|
-
"@babel/helper-
|
518
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
611
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
612
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
519
613
|
|
520
|
-
"@babel/plugin-transform-property-literals@^7.
|
521
|
-
version "7.
|
522
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
523
|
-
integrity sha512-
|
614
|
+
"@babel/plugin-transform-property-literals@^7.8.3":
|
615
|
+
version "7.8.3"
|
616
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
|
617
|
+
integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
|
524
618
|
dependencies:
|
525
|
-
"@babel/helper-plugin-utils" "^7.
|
619
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
526
620
|
|
527
|
-
"@babel/plugin-transform-react-display-name@^7.
|
528
|
-
version "7.
|
529
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.
|
530
|
-
integrity sha512-
|
621
|
+
"@babel/plugin-transform-react-display-name@^7.8.3":
|
622
|
+
version "7.8.3"
|
623
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5"
|
624
|
+
integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
|
531
625
|
dependencies:
|
532
|
-
"@babel/helper-plugin-utils" "^7.
|
626
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
533
627
|
|
534
|
-
"@babel/plugin-transform-react-jsx-
|
535
|
-
version "7.
|
536
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-
|
537
|
-
integrity sha512-
|
628
|
+
"@babel/plugin-transform-react-jsx-development@^7.9.0":
|
629
|
+
version "7.9.0"
|
630
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754"
|
631
|
+
integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==
|
538
632
|
dependencies:
|
539
|
-
"@babel/helper-
|
540
|
-
"@babel/plugin-
|
633
|
+
"@babel/helper-builder-react-jsx-experimental" "^7.9.0"
|
634
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
635
|
+
"@babel/plugin-syntax-jsx" "^7.8.3"
|
541
636
|
|
542
|
-
"@babel/plugin-transform-react-jsx-
|
543
|
-
version "7.
|
544
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-
|
545
|
-
integrity sha512-
|
637
|
+
"@babel/plugin-transform-react-jsx-self@^7.9.0":
|
638
|
+
version "7.9.0"
|
639
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b"
|
640
|
+
integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==
|
546
641
|
dependencies:
|
547
|
-
"@babel/helper-plugin-utils" "^7.
|
548
|
-
"@babel/plugin-syntax-jsx" "^7.
|
642
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
643
|
+
"@babel/plugin-syntax-jsx" "^7.8.3"
|
549
644
|
|
550
|
-
"@babel/plugin-transform-react-jsx@^7.
|
551
|
-
version "7.
|
552
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.
|
553
|
-
integrity sha512-
|
645
|
+
"@babel/plugin-transform-react-jsx-source@^7.9.0":
|
646
|
+
version "7.9.0"
|
647
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0"
|
648
|
+
integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==
|
554
649
|
dependencies:
|
555
|
-
"@babel/helper-
|
556
|
-
"@babel/
|
557
|
-
"@babel/plugin-syntax-jsx" "^7.2.0"
|
650
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
651
|
+
"@babel/plugin-syntax-jsx" "^7.8.3"
|
558
652
|
|
559
|
-
"@babel/plugin-transform-
|
560
|
-
version "7.4
|
561
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
562
|
-
integrity sha512-
|
653
|
+
"@babel/plugin-transform-react-jsx@^7.9.4":
|
654
|
+
version "7.9.4"
|
655
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f"
|
656
|
+
integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==
|
563
657
|
dependencies:
|
564
|
-
|
658
|
+
"@babel/helper-builder-react-jsx" "^7.9.0"
|
659
|
+
"@babel/helper-builder-react-jsx-experimental" "^7.9.0"
|
660
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
661
|
+
"@babel/plugin-syntax-jsx" "^7.8.3"
|
565
662
|
|
566
|
-
"@babel/plugin-transform-
|
567
|
-
version "7.
|
568
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
569
|
-
integrity sha512-
|
663
|
+
"@babel/plugin-transform-regenerator@^7.8.7":
|
664
|
+
version "7.8.7"
|
665
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8"
|
666
|
+
integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==
|
570
667
|
dependencies:
|
571
|
-
|
668
|
+
regenerator-transform "^0.14.2"
|
572
669
|
|
573
|
-
"@babel/plugin-transform-
|
574
|
-
version "7.
|
575
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
576
|
-
integrity sha512-
|
670
|
+
"@babel/plugin-transform-reserved-words@^7.8.3":
|
671
|
+
version "7.8.3"
|
672
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5"
|
673
|
+
integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==
|
577
674
|
dependencies:
|
578
|
-
"@babel/helper-plugin-utils" "^7.
|
675
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
579
676
|
|
580
|
-
"@babel/plugin-transform-
|
581
|
-
version "7.
|
582
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
583
|
-
integrity sha512-
|
677
|
+
"@babel/plugin-transform-shorthand-properties@^7.8.3":
|
678
|
+
version "7.8.3"
|
679
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
|
680
|
+
integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
|
584
681
|
dependencies:
|
585
|
-
"@babel/helper-plugin-utils" "^7.
|
682
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
586
683
|
|
587
|
-
"@babel/plugin-transform-
|
588
|
-
version "7.
|
589
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
590
|
-
integrity sha512-
|
684
|
+
"@babel/plugin-transform-spread@^7.8.3":
|
685
|
+
version "7.8.3"
|
686
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
|
687
|
+
integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
|
591
688
|
dependencies:
|
592
|
-
"@babel/helper-plugin-utils" "^7.
|
593
|
-
"@babel/helper-regex" "^7.0.0"
|
689
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
594
690
|
|
595
|
-
"@babel/plugin-transform-
|
596
|
-
version "7.
|
597
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
598
|
-
integrity sha512-
|
691
|
+
"@babel/plugin-transform-sticky-regex@^7.8.3":
|
692
|
+
version "7.8.3"
|
693
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
|
694
|
+
integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
|
599
695
|
dependencies:
|
600
|
-
"@babel/helper-
|
601
|
-
"@babel/helper-
|
696
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
697
|
+
"@babel/helper-regex" "^7.8.3"
|
602
698
|
|
603
|
-
"@babel/plugin-transform-
|
604
|
-
version "7.
|
605
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
606
|
-
integrity sha512-
|
699
|
+
"@babel/plugin-transform-template-literals@^7.8.3":
|
700
|
+
version "7.8.3"
|
701
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
|
702
|
+
integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
|
607
703
|
dependencies:
|
608
|
-
"@babel/helper-
|
704
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
705
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
609
706
|
|
610
|
-
"@babel/plugin-transform-
|
611
|
-
version "7.
|
612
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
613
|
-
integrity sha512-
|
707
|
+
"@babel/plugin-transform-typeof-symbol@^7.8.4":
|
708
|
+
version "7.8.4"
|
709
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412"
|
710
|
+
integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==
|
614
711
|
dependencies:
|
615
|
-
"@babel/helper-plugin-utils" "^7.
|
616
|
-
"@babel/helper-regex" "^7.4.4"
|
617
|
-
regexpu-core "^4.5.4"
|
712
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
618
713
|
|
619
|
-
"@babel/
|
620
|
-
version "7.
|
621
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
622
|
-
integrity sha512
|
714
|
+
"@babel/plugin-transform-unicode-regex@^7.8.3":
|
715
|
+
version "7.8.3"
|
716
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
|
717
|
+
integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
|
718
|
+
dependencies:
|
719
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
720
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
721
|
+
|
722
|
+
"@babel/polyfill@^7.7.0":
|
723
|
+
version "7.8.7"
|
724
|
+
resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f"
|
725
|
+
integrity sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w==
|
623
726
|
dependencies:
|
624
727
|
core-js "^2.6.5"
|
625
|
-
regenerator-runtime "^0.13.
|
728
|
+
regenerator-runtime "^0.13.4"
|
729
|
+
|
730
|
+
"@babel/preset-env@^7.7.4":
|
731
|
+
version "7.9.5"
|
732
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.5.tgz#8ddc76039bc45b774b19e2fc548f6807d8a8919f"
|
733
|
+
integrity sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ==
|
734
|
+
dependencies:
|
735
|
+
"@babel/compat-data" "^7.9.0"
|
736
|
+
"@babel/helper-compilation-targets" "^7.8.7"
|
737
|
+
"@babel/helper-module-imports" "^7.8.3"
|
738
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
739
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.8.3"
|
740
|
+
"@babel/plugin-proposal-dynamic-import" "^7.8.3"
|
741
|
+
"@babel/plugin-proposal-json-strings" "^7.8.3"
|
742
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
|
743
|
+
"@babel/plugin-proposal-numeric-separator" "^7.8.3"
|
744
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.9.5"
|
745
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
|
746
|
+
"@babel/plugin-proposal-optional-chaining" "^7.9.0"
|
747
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
|
748
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
749
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
750
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
751
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
752
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.0"
|
753
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
754
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
755
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
756
|
+
"@babel/plugin-syntax-top-level-await" "^7.8.3"
|
757
|
+
"@babel/plugin-transform-arrow-functions" "^7.8.3"
|
758
|
+
"@babel/plugin-transform-async-to-generator" "^7.8.3"
|
759
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.8.3"
|
760
|
+
"@babel/plugin-transform-block-scoping" "^7.8.3"
|
761
|
+
"@babel/plugin-transform-classes" "^7.9.5"
|
762
|
+
"@babel/plugin-transform-computed-properties" "^7.8.3"
|
763
|
+
"@babel/plugin-transform-destructuring" "^7.9.5"
|
764
|
+
"@babel/plugin-transform-dotall-regex" "^7.8.3"
|
765
|
+
"@babel/plugin-transform-duplicate-keys" "^7.8.3"
|
766
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.8.3"
|
767
|
+
"@babel/plugin-transform-for-of" "^7.9.0"
|
768
|
+
"@babel/plugin-transform-function-name" "^7.8.3"
|
769
|
+
"@babel/plugin-transform-literals" "^7.8.3"
|
770
|
+
"@babel/plugin-transform-member-expression-literals" "^7.8.3"
|
771
|
+
"@babel/plugin-transform-modules-amd" "^7.9.0"
|
772
|
+
"@babel/plugin-transform-modules-commonjs" "^7.9.0"
|
773
|
+
"@babel/plugin-transform-modules-systemjs" "^7.9.0"
|
774
|
+
"@babel/plugin-transform-modules-umd" "^7.9.0"
|
775
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
|
776
|
+
"@babel/plugin-transform-new-target" "^7.8.3"
|
777
|
+
"@babel/plugin-transform-object-super" "^7.8.3"
|
778
|
+
"@babel/plugin-transform-parameters" "^7.9.5"
|
779
|
+
"@babel/plugin-transform-property-literals" "^7.8.3"
|
780
|
+
"@babel/plugin-transform-regenerator" "^7.8.7"
|
781
|
+
"@babel/plugin-transform-reserved-words" "^7.8.3"
|
782
|
+
"@babel/plugin-transform-shorthand-properties" "^7.8.3"
|
783
|
+
"@babel/plugin-transform-spread" "^7.8.3"
|
784
|
+
"@babel/plugin-transform-sticky-regex" "^7.8.3"
|
785
|
+
"@babel/plugin-transform-template-literals" "^7.8.3"
|
786
|
+
"@babel/plugin-transform-typeof-symbol" "^7.8.4"
|
787
|
+
"@babel/plugin-transform-unicode-regex" "^7.8.3"
|
788
|
+
"@babel/preset-modules" "^0.1.3"
|
789
|
+
"@babel/types" "^7.9.5"
|
790
|
+
browserslist "^4.9.1"
|
791
|
+
core-js-compat "^3.6.2"
|
792
|
+
invariant "^2.2.2"
|
793
|
+
levenary "^1.1.1"
|
794
|
+
semver "^5.5.0"
|
626
795
|
|
627
|
-
"@babel/preset-
|
628
|
-
version "
|
629
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-
|
630
|
-
integrity sha512-
|
796
|
+
"@babel/preset-modules@^0.1.3":
|
797
|
+
version "0.1.3"
|
798
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
|
799
|
+
integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
|
631
800
|
dependencies:
|
632
|
-
"@babel/helper-module-imports" "^7.0.0"
|
633
801
|
"@babel/helper-plugin-utils" "^7.0.0"
|
634
|
-
"@babel/plugin-proposal-async-generator-functions" "^7.2.0"
|
635
|
-
"@babel/plugin-proposal-dynamic-import" "^7.5.0"
|
636
|
-
"@babel/plugin-proposal-json-strings" "^7.2.0"
|
637
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.5.5"
|
638
|
-
"@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
|
639
802
|
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
640
|
-
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
641
|
-
"@babel/plugin-syntax-dynamic-import" "^7.2.0"
|
642
|
-
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
643
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
644
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
645
|
-
"@babel/plugin-transform-arrow-functions" "^7.2.0"
|
646
|
-
"@babel/plugin-transform-async-to-generator" "^7.5.0"
|
647
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.2.0"
|
648
|
-
"@babel/plugin-transform-block-scoping" "^7.6.0"
|
649
|
-
"@babel/plugin-transform-classes" "^7.5.5"
|
650
|
-
"@babel/plugin-transform-computed-properties" "^7.2.0"
|
651
|
-
"@babel/plugin-transform-destructuring" "^7.6.0"
|
652
803
|
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
653
|
-
"@babel/
|
654
|
-
|
655
|
-
"@babel/plugin-transform-for-of" "^7.4.4"
|
656
|
-
"@babel/plugin-transform-function-name" "^7.4.4"
|
657
|
-
"@babel/plugin-transform-literals" "^7.2.0"
|
658
|
-
"@babel/plugin-transform-member-expression-literals" "^7.2.0"
|
659
|
-
"@babel/plugin-transform-modules-amd" "^7.5.0"
|
660
|
-
"@babel/plugin-transform-modules-commonjs" "^7.6.0"
|
661
|
-
"@babel/plugin-transform-modules-systemjs" "^7.5.0"
|
662
|
-
"@babel/plugin-transform-modules-umd" "^7.2.0"
|
663
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.6.0"
|
664
|
-
"@babel/plugin-transform-new-target" "^7.4.4"
|
665
|
-
"@babel/plugin-transform-object-super" "^7.5.5"
|
666
|
-
"@babel/plugin-transform-parameters" "^7.4.4"
|
667
|
-
"@babel/plugin-transform-property-literals" "^7.2.0"
|
668
|
-
"@babel/plugin-transform-regenerator" "^7.4.5"
|
669
|
-
"@babel/plugin-transform-reserved-words" "^7.2.0"
|
670
|
-
"@babel/plugin-transform-shorthand-properties" "^7.2.0"
|
671
|
-
"@babel/plugin-transform-spread" "^7.2.0"
|
672
|
-
"@babel/plugin-transform-sticky-regex" "^7.2.0"
|
673
|
-
"@babel/plugin-transform-template-literals" "^7.4.4"
|
674
|
-
"@babel/plugin-transform-typeof-symbol" "^7.2.0"
|
675
|
-
"@babel/plugin-transform-unicode-regex" "^7.4.4"
|
676
|
-
"@babel/types" "^7.6.0"
|
677
|
-
browserslist "^4.6.0"
|
678
|
-
core-js-compat "^3.1.1"
|
679
|
-
invariant "^2.2.2"
|
680
|
-
js-levenshtein "^1.1.3"
|
681
|
-
semver "^5.5.0"
|
804
|
+
"@babel/types" "^7.4.4"
|
805
|
+
esutils "^2.0.2"
|
682
806
|
|
683
|
-
"@babel/preset-react@^7.
|
684
|
-
version "7.
|
685
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.
|
686
|
-
integrity sha512-
|
807
|
+
"@babel/preset-react@^7.7.4":
|
808
|
+
version "7.9.4"
|
809
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d"
|
810
|
+
integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==
|
687
811
|
dependencies:
|
688
|
-
"@babel/helper-plugin-utils" "^7.
|
689
|
-
"@babel/plugin-transform-react-display-name" "^7.
|
690
|
-
"@babel/plugin-transform-react-jsx" "^7.
|
691
|
-
"@babel/plugin-transform-react-jsx-
|
692
|
-
"@babel/plugin-transform-react-jsx-
|
812
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
813
|
+
"@babel/plugin-transform-react-display-name" "^7.8.3"
|
814
|
+
"@babel/plugin-transform-react-jsx" "^7.9.4"
|
815
|
+
"@babel/plugin-transform-react-jsx-development" "^7.9.0"
|
816
|
+
"@babel/plugin-transform-react-jsx-self" "^7.9.0"
|
817
|
+
"@babel/plugin-transform-react-jsx-source" "^7.9.0"
|
693
818
|
|
694
|
-
"@babel/register@^7.
|
695
|
-
version "7.
|
696
|
-
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.
|
697
|
-
integrity sha512-
|
819
|
+
"@babel/register@^7.7.4":
|
820
|
+
version "7.9.0"
|
821
|
+
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.9.0.tgz#02464ede57548bddbb5e9f705d263b7c3f43d48b"
|
822
|
+
integrity sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q==
|
698
823
|
dependencies:
|
699
824
|
find-cache-dir "^2.0.0"
|
700
825
|
lodash "^4.17.13"
|
701
|
-
|
826
|
+
make-dir "^2.1.0"
|
702
827
|
pirates "^4.0.0"
|
703
|
-
source-map-support "^0.5.
|
704
|
-
|
705
|
-
"@babel/
|
706
|
-
version "7.
|
707
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
708
|
-
integrity sha512-
|
709
|
-
dependencies:
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
"@babel/
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
828
|
+
source-map-support "^0.5.16"
|
829
|
+
|
830
|
+
"@babel/runtime@^7.8.4":
|
831
|
+
version "7.9.2"
|
832
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06"
|
833
|
+
integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==
|
834
|
+
dependencies:
|
835
|
+
regenerator-runtime "^0.13.4"
|
836
|
+
|
837
|
+
"@babel/template@^7.8.3", "@babel/template@^7.8.6":
|
838
|
+
version "7.8.6"
|
839
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
|
840
|
+
integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
|
841
|
+
dependencies:
|
842
|
+
"@babel/code-frame" "^7.8.3"
|
843
|
+
"@babel/parser" "^7.8.6"
|
844
|
+
"@babel/types" "^7.8.6"
|
845
|
+
|
846
|
+
"@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0":
|
847
|
+
version "7.9.5"
|
848
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2"
|
849
|
+
integrity sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ==
|
850
|
+
dependencies:
|
851
|
+
"@babel/code-frame" "^7.8.3"
|
852
|
+
"@babel/generator" "^7.9.5"
|
853
|
+
"@babel/helper-function-name" "^7.9.5"
|
854
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
855
|
+
"@babel/parser" "^7.9.0"
|
856
|
+
"@babel/types" "^7.9.5"
|
725
857
|
debug "^4.1.0"
|
726
858
|
globals "^11.1.0"
|
727
859
|
lodash "^4.17.13"
|
728
860
|
|
729
|
-
"@babel/types@^7.
|
730
|
-
version "7.
|
731
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
732
|
-
integrity sha512-
|
861
|
+
"@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5":
|
862
|
+
version "7.9.5"
|
863
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444"
|
864
|
+
integrity sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg==
|
733
865
|
dependencies:
|
734
|
-
|
866
|
+
"@babel/helper-validator-identifier" "^7.9.5"
|
735
867
|
lodash "^4.17.13"
|
736
868
|
to-fast-properties "^2.0.0"
|
737
869
|
|
@@ -754,27 +886,27 @@
|
|
754
886
|
integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
|
755
887
|
|
756
888
|
"@types/cheerio@^0.22.8":
|
757
|
-
version "0.22.
|
758
|
-
resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.
|
759
|
-
integrity sha512-
|
889
|
+
version "0.22.17"
|
890
|
+
resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.17.tgz#e54f71c3135f71ebc16c8dc62edad533872c9e72"
|
891
|
+
integrity sha512-izlm+hbqWN9csuB9GSMfCnAyd3/57XZi3rfz1B0C4QBGVMp+9xQ7+9KYnep+ySfUrCWql4lGzkLf0XmprXcz9g==
|
760
892
|
dependencies:
|
761
893
|
"@types/node" "*"
|
762
894
|
|
895
|
+
"@types/color-name@^1.1.1":
|
896
|
+
version "1.1.1"
|
897
|
+
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
|
898
|
+
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
|
899
|
+
|
763
900
|
"@types/node@*":
|
764
|
-
version "
|
765
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-
|
766
|
-
integrity sha512-
|
901
|
+
version "13.13.1"
|
902
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.1.tgz#1ba94c5a177a1692518bfc7b41aec0aa1a14354e"
|
903
|
+
integrity sha512-uysqysLJ+As9jqI5yqjwP3QJrhOcUwBjHUlUxPxjbplwKoILvXVsmYWEhfmAQlrPfbRZmhJB007o4L9sKqtHqQ==
|
767
904
|
|
768
905
|
"@types/q@^1.5.1":
|
769
906
|
version "1.5.2"
|
770
907
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
|
771
908
|
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
|
772
909
|
|
773
|
-
abbrev@1:
|
774
|
-
version "1.1.1"
|
775
|
-
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
776
|
-
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
777
|
-
|
778
910
|
accepts@~1.3.7:
|
779
911
|
version "1.3.7"
|
780
912
|
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
|
@@ -783,22 +915,17 @@ accepts@~1.3.7:
|
|
783
915
|
mime-types "~2.1.24"
|
784
916
|
negotiator "0.6.2"
|
785
917
|
|
786
|
-
address@1.1.0:
|
787
|
-
version "1.1.0"
|
788
|
-
resolved "https://registry.yarnpkg.com/address/-/address-1.1.0.tgz#ef8e047847fcd2c5b6f50c16965f924fd99fe709"
|
789
|
-
integrity sha512-4diPfzWbLEIElVG4AnqP+00SULlPzNuyJFNnmMrLgyaxG6tZXJ1sn7mjBu4fHrJE+Yp/jgylOweJn2xsLMFggQ==
|
790
|
-
|
791
|
-
address@^1.0.1:
|
918
|
+
address@1.1.2, address@^1.0.1:
|
792
919
|
version "1.1.2"
|
793
920
|
resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
|
794
921
|
integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
|
795
922
|
|
796
923
|
ajv@^6.5.5:
|
797
|
-
version "6.
|
798
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.
|
799
|
-
integrity sha512-
|
924
|
+
version "6.12.2"
|
925
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
|
926
|
+
integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
|
800
927
|
dependencies:
|
801
|
-
fast-deep-equal "^
|
928
|
+
fast-deep-equal "^3.1.1"
|
802
929
|
fast-json-stable-stringify "^2.0.0"
|
803
930
|
json-schema-traverse "^0.4.1"
|
804
931
|
uri-js "^4.2.2"
|
@@ -847,6 +974,14 @@ ansi-styles@^3.2.1:
|
|
847
974
|
dependencies:
|
848
975
|
color-convert "^1.9.0"
|
849
976
|
|
977
|
+
ansi-styles@^4.1.0:
|
978
|
+
version "4.2.1"
|
979
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
|
980
|
+
integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
|
981
|
+
dependencies:
|
982
|
+
"@types/color-name" "^1.1.1"
|
983
|
+
color-convert "^2.0.1"
|
984
|
+
|
850
985
|
ansi-wrap@0.1.0:
|
851
986
|
version "0.1.0"
|
852
987
|
resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
|
@@ -860,19 +995,6 @@ anymatch@^2.0.0:
|
|
860
995
|
micromatch "^3.1.4"
|
861
996
|
normalize-path "^2.1.1"
|
862
997
|
|
863
|
-
anymatch@^3.1.0:
|
864
|
-
version "3.1.0"
|
865
|
-
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.0.tgz#e609350e50a9313b472789b2f14ef35808ee14d6"
|
866
|
-
integrity sha512-Ozz7l4ixzI7Oxj2+cw+p0tVUt27BpaJ+1+q1TCeANWxHpvyn2+Un+YamBdfKu0uh8xLodGhoa1v7595NhKDAuA==
|
867
|
-
dependencies:
|
868
|
-
normalize-path "^3.0.0"
|
869
|
-
picomatch "^2.0.4"
|
870
|
-
|
871
|
-
aproba@^1.0.3:
|
872
|
-
version "1.2.0"
|
873
|
-
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
874
|
-
integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
|
875
|
-
|
876
998
|
arch@^2.1.0:
|
877
999
|
version "2.1.1"
|
878
1000
|
resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e"
|
@@ -885,14 +1007,6 @@ archive-type@^4.0.0:
|
|
885
1007
|
dependencies:
|
886
1008
|
file-type "^4.2.0"
|
887
1009
|
|
888
|
-
are-we-there-yet@~1.1.2:
|
889
|
-
version "1.1.5"
|
890
|
-
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
|
891
|
-
integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
|
892
|
-
dependencies:
|
893
|
-
delegates "^1.0.0"
|
894
|
-
readable-stream "^2.0.6"
|
895
|
-
|
896
1010
|
argparse@^1.0.10, argparse@^1.0.7:
|
897
1011
|
version "1.0.10"
|
898
1012
|
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
@@ -915,11 +1029,6 @@ arr-union@^3.1.0:
|
|
915
1029
|
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
|
916
1030
|
integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
|
917
1031
|
|
918
|
-
array-filter@~0.0.0:
|
919
|
-
version "0.0.1"
|
920
|
-
resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
|
921
|
-
integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw=
|
922
|
-
|
923
1032
|
array-find-index@^1.0.1:
|
924
1033
|
version "1.0.2"
|
925
1034
|
resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
|
@@ -930,16 +1039,6 @@ array-flatten@1.1.1:
|
|
930
1039
|
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
|
931
1040
|
integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
|
932
1041
|
|
933
|
-
array-map@~0.0.0:
|
934
|
-
version "0.0.0"
|
935
|
-
resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
|
936
|
-
integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=
|
937
|
-
|
938
|
-
array-reduce@~0.0.0:
|
939
|
-
version "0.0.0"
|
940
|
-
resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
|
941
|
-
integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=
|
942
|
-
|
943
1042
|
array-union@^1.0.1:
|
944
1043
|
version "1.0.2"
|
945
1044
|
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
@@ -952,11 +1051,6 @@ array-uniq@^1.0.1:
|
|
952
1051
|
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
953
1052
|
integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
|
954
1053
|
|
955
|
-
array-uniq@^2.1.0:
|
956
|
-
version "2.1.0"
|
957
|
-
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-2.1.0.tgz#46603d5e28e79bfd02b046fcc1d77c6820bd8e98"
|
958
|
-
integrity sha512-bdHxtev7FN6+MXI1YFW0Q8mQ8dTJc2S8AMfju+ZR77pbg2yAdVyDlwkaUI7Har0LyOMRFPHrJ9lYdyjZZswdlQ==
|
959
|
-
|
960
1054
|
array-unique@^0.3.2:
|
961
1055
|
version "0.3.2"
|
962
1056
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
@@ -989,21 +1083,30 @@ async-each@^1.0.1:
|
|
989
1083
|
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
|
990
1084
|
integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
|
991
1085
|
|
992
|
-
async@^
|
993
|
-
version "
|
994
|
-
resolved "https://registry.yarnpkg.com/async/-/async-
|
995
|
-
integrity
|
1086
|
+
async@^2.6.2:
|
1087
|
+
version "2.6.3"
|
1088
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
|
1089
|
+
integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
|
1090
|
+
dependencies:
|
1091
|
+
lodash "^4.17.14"
|
996
1092
|
|
997
1093
|
asynckit@^0.4.0:
|
998
1094
|
version "0.4.0"
|
999
1095
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
1000
1096
|
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
1001
1097
|
|
1002
|
-
atob@^2.1.
|
1098
|
+
atob@^2.1.2:
|
1003
1099
|
version "2.1.2"
|
1004
1100
|
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
1005
1101
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1006
1102
|
|
1103
|
+
autolinker@^3.11.0:
|
1104
|
+
version "3.14.1"
|
1105
|
+
resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-3.14.1.tgz#6ae4b812b6eaf42d4d68138b9e67757cbf2bc1e4"
|
1106
|
+
integrity sha512-yvsRHIaY51EYDml6MGlbqyJGfl4n7zezGYf+R7gvM8c5LNpRGc4SISkvgAswSS8SWxk/OrGCylKV9mJyVstz7w==
|
1107
|
+
dependencies:
|
1108
|
+
tslib "^1.9.3"
|
1109
|
+
|
1007
1110
|
autolinker@~0.28.0:
|
1008
1111
|
version "0.28.1"
|
1009
1112
|
resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.28.1.tgz#0652b491881879f0775dace0cdca3233942a4e47"
|
@@ -1011,18 +1114,18 @@ autolinker@~0.28.0:
|
|
1011
1114
|
dependencies:
|
1012
1115
|
gulp-header "^1.7.1"
|
1013
1116
|
|
1014
|
-
autoprefixer@^9.
|
1015
|
-
version "9.6
|
1016
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.
|
1017
|
-
integrity sha512-
|
1117
|
+
autoprefixer@^9.7.2:
|
1118
|
+
version "9.7.6"
|
1119
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4"
|
1120
|
+
integrity sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==
|
1018
1121
|
dependencies:
|
1019
|
-
browserslist "^4.
|
1020
|
-
caniuse-lite "^1.0.
|
1122
|
+
browserslist "^4.11.1"
|
1123
|
+
caniuse-lite "^1.0.30001039"
|
1021
1124
|
chalk "^2.4.2"
|
1022
1125
|
normalize-range "^0.1.2"
|
1023
1126
|
num2fraction "^1.2.2"
|
1024
|
-
postcss "^7.0.
|
1025
|
-
postcss-value-parser "^4.0.
|
1127
|
+
postcss "^7.0.27"
|
1128
|
+
postcss-value-parser "^4.0.3"
|
1026
1129
|
|
1027
1130
|
aws-sign2@~0.7.0:
|
1028
1131
|
version "0.7.0"
|
@@ -1030,9 +1133,9 @@ aws-sign2@~0.7.0:
|
|
1030
1133
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
1031
1134
|
|
1032
1135
|
aws4@^1.8.0:
|
1033
|
-
version "1.
|
1034
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
1035
|
-
integrity sha512-
|
1136
|
+
version "1.9.1"
|
1137
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e"
|
1138
|
+
integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
|
1036
1139
|
|
1037
1140
|
babel-code-frame@^6.22.0:
|
1038
1141
|
version "6.26.0"
|
@@ -1044,9 +1147,9 @@ babel-code-frame@^6.22.0:
|
|
1044
1147
|
js-tokens "^3.0.2"
|
1045
1148
|
|
1046
1149
|
babel-plugin-dynamic-import-node@^2.3.0:
|
1047
|
-
version "2.3.
|
1048
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.
|
1049
|
-
integrity sha512-
|
1150
|
+
version "2.3.2"
|
1151
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.2.tgz#14fb5accb300f9aac0151949f6192259f1403c4a"
|
1152
|
+
integrity sha512-yvczAMjbc73xira9yTyF1XnEmkX8QwlUhmxuhimeMUeAaA6s7busTPRVDzhVG7eeBdNcRiZ/mAwFrJ9It4vQcg==
|
1050
1153
|
dependencies:
|
1051
1154
|
object.assign "^4.1.0"
|
1052
1155
|
|
@@ -1143,10 +1246,12 @@ binary-extensions@^1.0.0:
|
|
1143
1246
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
|
1144
1247
|
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
|
1145
1248
|
|
1146
|
-
|
1147
|
-
version "
|
1148
|
-
resolved "https://registry.yarnpkg.com/
|
1149
|
-
integrity sha512-
|
1249
|
+
bindings@^1.5.0:
|
1250
|
+
version "1.5.0"
|
1251
|
+
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
|
1252
|
+
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
|
1253
|
+
dependencies:
|
1254
|
+
file-uri-to-path "1.0.0"
|
1150
1255
|
|
1151
1256
|
bl@^1.0.0:
|
1152
1257
|
version "1.2.2"
|
@@ -1211,23 +1316,7 @@ braces@^2.3.1, braces@^2.3.2:
|
|
1211
1316
|
split-string "^3.0.2"
|
1212
1317
|
to-regex "^3.0.1"
|
1213
1318
|
|
1214
|
-
|
1215
|
-
version "3.0.2"
|
1216
|
-
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
1217
|
-
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
1218
|
-
dependencies:
|
1219
|
-
fill-range "^7.0.1"
|
1220
|
-
|
1221
|
-
browserslist@4.6.6:
|
1222
|
-
version "4.6.6"
|
1223
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.6.tgz#6e4bf467cde520bc9dbdf3747dafa03531cec453"
|
1224
|
-
integrity sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA==
|
1225
|
-
dependencies:
|
1226
|
-
caniuse-lite "^1.0.30000984"
|
1227
|
-
electron-to-chromium "^1.3.191"
|
1228
|
-
node-releases "^1.1.25"
|
1229
|
-
|
1230
|
-
browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.3, browserslist@^4.6.6:
|
1319
|
+
browserslist@4.7.0:
|
1231
1320
|
version "4.7.0"
|
1232
1321
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17"
|
1233
1322
|
integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==
|
@@ -1236,6 +1325,16 @@ browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.3, browserslist@^4.6
|
|
1236
1325
|
electron-to-chromium "^1.3.247"
|
1237
1326
|
node-releases "^1.1.29"
|
1238
1327
|
|
1328
|
+
browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.8.5, browserslist@^4.9.1:
|
1329
|
+
version "4.12.0"
|
1330
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d"
|
1331
|
+
integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==
|
1332
|
+
dependencies:
|
1333
|
+
caniuse-lite "^1.0.30001043"
|
1334
|
+
electron-to-chromium "^1.3.413"
|
1335
|
+
node-releases "^1.1.53"
|
1336
|
+
pkg-up "^2.0.0"
|
1337
|
+
|
1239
1338
|
buffer-alloc-unsafe@^1.1.0:
|
1240
1339
|
version "1.1.0"
|
1241
1340
|
resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0"
|
@@ -1265,9 +1364,9 @@ buffer-from@^1.0.0:
|
|
1265
1364
|
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
1266
1365
|
|
1267
1366
|
buffer@^5.2.1:
|
1268
|
-
version "5.
|
1269
|
-
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.
|
1270
|
-
integrity sha512
|
1367
|
+
version "5.6.0"
|
1368
|
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
|
1369
|
+
integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
|
1271
1370
|
dependencies:
|
1272
1371
|
base64-js "^1.0.2"
|
1273
1372
|
ieee754 "^1.1.4"
|
@@ -1357,10 +1456,10 @@ caniuse-api@^3.0.0:
|
|
1357
1456
|
lodash.memoize "^4.1.2"
|
1358
1457
|
lodash.uniq "^4.5.0"
|
1359
1458
|
|
1360
|
-
caniuse-lite@^1.0.0, caniuse-lite@^1.0.
|
1361
|
-
version "1.0.
|
1362
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1363
|
-
integrity sha512-
|
1459
|
+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001039, caniuse-lite@^1.0.30001043:
|
1460
|
+
version "1.0.30001043"
|
1461
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001043.tgz#1b561de27aefbe6ff99e41866b8d7d87840c513b"
|
1462
|
+
integrity sha512-MrBDRPJPDBYwACtSQvxg9+fkna5jPXhJlKmuxenl/ml9uf8LHKlDmLpElu+zTW/bEz7lC1m0wTDD7jiIB+hgFg==
|
1364
1463
|
|
1365
1464
|
caseless@~0.12.0:
|
1366
1465
|
version "0.12.0"
|
@@ -1397,6 +1496,14 @@ chalk@^1.0.0, chalk@^1.1.3:
|
|
1397
1496
|
strip-ansi "^3.0.0"
|
1398
1497
|
supports-color "^2.0.0"
|
1399
1498
|
|
1499
|
+
chalk@^3.0.0:
|
1500
|
+
version "3.0.0"
|
1501
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
1502
|
+
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
1503
|
+
dependencies:
|
1504
|
+
ansi-styles "^4.1.0"
|
1505
|
+
supports-color "^7.1.0"
|
1506
|
+
|
1400
1507
|
chardet@^0.7.0:
|
1401
1508
|
version "0.7.0"
|
1402
1509
|
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
|
@@ -1443,26 +1550,6 @@ chokidar@^2.0.4:
|
|
1443
1550
|
optionalDependencies:
|
1444
1551
|
fsevents "^1.2.7"
|
1445
1552
|
|
1446
|
-
chokidar@^3.0.2:
|
1447
|
-
version "3.1.0"
|
1448
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.1.0.tgz#ff23d077682a90eadd209bfa76eb10ed6d359668"
|
1449
|
-
integrity sha512-6vZfo+7W0EOlbSo0nhVKMz4yyssrwiPbBZ8wj1lq8/+l4ZhGZ2U4Md7PspvmijXp1a26D3B7AHEBmIB7aVtaOQ==
|
1450
|
-
dependencies:
|
1451
|
-
anymatch "^3.1.0"
|
1452
|
-
braces "^3.0.2"
|
1453
|
-
glob-parent "^5.0.0"
|
1454
|
-
is-binary-path "^2.1.0"
|
1455
|
-
is-glob "^4.0.1"
|
1456
|
-
normalize-path "^3.0.0"
|
1457
|
-
readdirp "^3.1.1"
|
1458
|
-
optionalDependencies:
|
1459
|
-
fsevents "^2.0.6"
|
1460
|
-
|
1461
|
-
chownr@^1.1.1:
|
1462
|
-
version "1.1.2"
|
1463
|
-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6"
|
1464
|
-
integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==
|
1465
|
-
|
1466
1553
|
class-utils@^0.3.5:
|
1467
1554
|
version "0.3.6"
|
1468
1555
|
resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
|
@@ -1486,14 +1573,14 @@ cli-cursor@^2.1.0:
|
|
1486
1573
|
restore-cursor "^2.0.0"
|
1487
1574
|
|
1488
1575
|
cli-width@^2.0.0:
|
1489
|
-
version "2.2.
|
1490
|
-
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.
|
1491
|
-
integrity
|
1576
|
+
version "2.2.1"
|
1577
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
|
1578
|
+
integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
|
1492
1579
|
|
1493
1580
|
clipboard@^2.0.0:
|
1494
|
-
version "2.0.
|
1495
|
-
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.
|
1496
|
-
integrity sha512-
|
1581
|
+
version "2.0.6"
|
1582
|
+
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376"
|
1583
|
+
integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==
|
1497
1584
|
dependencies:
|
1498
1585
|
good-listener "^1.2.2"
|
1499
1586
|
select "^1.1.2"
|
@@ -1515,11 +1602,6 @@ coa@^2.0.2:
|
|
1515
1602
|
chalk "^2.4.1"
|
1516
1603
|
q "^1.1.2"
|
1517
1604
|
|
1518
|
-
code-point-at@^1.0.0:
|
1519
|
-
version "1.1.0"
|
1520
|
-
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
1521
|
-
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
|
1522
|
-
|
1523
1605
|
coffee-script@^1.12.4:
|
1524
1606
|
version "1.12.7"
|
1525
1607
|
resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53"
|
@@ -1540,12 +1622,19 @@ color-convert@^1.9.0, color-convert@^1.9.1:
|
|
1540
1622
|
dependencies:
|
1541
1623
|
color-name "1.1.3"
|
1542
1624
|
|
1625
|
+
color-convert@^2.0.1:
|
1626
|
+
version "2.0.1"
|
1627
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
1628
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
1629
|
+
dependencies:
|
1630
|
+
color-name "~1.1.4"
|
1631
|
+
|
1543
1632
|
color-name@1.1.3:
|
1544
1633
|
version "1.1.3"
|
1545
1634
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
1546
1635
|
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
1547
1636
|
|
1548
|
-
color-name@^1.0.0:
|
1637
|
+
color-name@^1.0.0, color-name@~1.1.4:
|
1549
1638
|
version "1.1.4"
|
1550
1639
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1551
1640
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
@@ -1558,14 +1647,6 @@ color-string@^1.5.2:
|
|
1558
1647
|
color-name "^1.0.0"
|
1559
1648
|
simple-swizzle "^0.2.2"
|
1560
1649
|
|
1561
|
-
color@^2.0.1:
|
1562
|
-
version "2.0.1"
|
1563
|
-
resolved "https://registry.yarnpkg.com/color/-/color-2.0.1.tgz#e4ed78a3c4603d0891eba5430b04b86314f4c839"
|
1564
|
-
integrity sha512-ubUCVVKfT7r2w2D3qtHakj8mbmKms+tThR8gI8zEYCbUBl8/voqFGt3kgBqGwXAopgXybnkuOq+qMYCRrp4cXw==
|
1565
|
-
dependencies:
|
1566
|
-
color-convert "^1.9.1"
|
1567
|
-
color-string "^1.5.2"
|
1568
|
-
|
1569
1650
|
color@^3.0.0:
|
1570
1651
|
version "3.1.2"
|
1571
1652
|
resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10"
|
@@ -1581,10 +1662,15 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
|
|
1581
1662
|
dependencies:
|
1582
1663
|
delayed-stream "~1.0.0"
|
1583
1664
|
|
1584
|
-
commander@^
|
1585
|
-
version "
|
1586
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-
|
1587
|
-
integrity sha512-
|
1665
|
+
commander@^4.0.1:
|
1666
|
+
version "4.1.1"
|
1667
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
|
1668
|
+
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
|
1669
|
+
|
1670
|
+
commander@^5.0.0:
|
1671
|
+
version "5.0.0"
|
1672
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-5.0.0.tgz#dbf1909b49e5044f8fdaf0adc809f0c0722bdfd0"
|
1673
|
+
integrity sha512-JrDGPAKjMGSP1G0DUoaceEJ3DZgAfr/q6X7FVk4+U5KxUSKviYGM2k6zWkfyyBHy5rAtzgYJFa1ro2O9PtoxwQ==
|
1588
1674
|
|
1589
1675
|
commander@~2.8.1:
|
1590
1676
|
version "2.8.1"
|
@@ -1633,11 +1719,6 @@ config-chain@^1.1.11:
|
|
1633
1719
|
ini "^1.3.4"
|
1634
1720
|
proto-list "~1.2.1"
|
1635
1721
|
|
1636
|
-
console-control-strings@^1.0.0, console-control-strings@~1.1.0:
|
1637
|
-
version "1.1.0"
|
1638
|
-
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
1639
|
-
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
|
1640
|
-
|
1641
1722
|
console-stream@^0.1.1:
|
1642
1723
|
version "0.1.1"
|
1643
1724
|
resolved "https://registry.yarnpkg.com/console-stream/-/console-stream-0.1.1.tgz#a095fe07b20465955f2fafd28b5d72bccd949d44"
|
@@ -1660,10 +1741,10 @@ continuable-cache@^0.3.1:
|
|
1660
1741
|
resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f"
|
1661
1742
|
integrity sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=
|
1662
1743
|
|
1663
|
-
convert-source-map@^1.
|
1664
|
-
version "1.
|
1665
|
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.
|
1666
|
-
integrity sha512-
|
1744
|
+
convert-source-map@^1.7.0:
|
1745
|
+
version "1.7.0"
|
1746
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
|
1747
|
+
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
|
1667
1748
|
dependencies:
|
1668
1749
|
safe-buffer "~5.1.1"
|
1669
1750
|
|
@@ -1682,18 +1763,18 @@ copy-descriptor@^0.1.0:
|
|
1682
1763
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1683
1764
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1684
1765
|
|
1685
|
-
core-js-compat@^3.
|
1686
|
-
version "3.
|
1687
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1688
|
-
integrity sha512-
|
1766
|
+
core-js-compat@^3.6.2:
|
1767
|
+
version "3.6.5"
|
1768
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
|
1769
|
+
integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==
|
1689
1770
|
dependencies:
|
1690
|
-
browserslist "^4.
|
1691
|
-
semver "
|
1771
|
+
browserslist "^4.8.5"
|
1772
|
+
semver "7.0.0"
|
1692
1773
|
|
1693
1774
|
core-js@^2.6.5:
|
1694
|
-
version "2.6.
|
1695
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.
|
1696
|
-
integrity sha512-
|
1775
|
+
version "2.6.11"
|
1776
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
|
1777
|
+
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
|
1697
1778
|
|
1698
1779
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1699
1780
|
version "1.0.2"
|
@@ -1710,7 +1791,7 @@ cosmiconfig@^5.0.0:
|
|
1710
1791
|
js-yaml "^3.13.1"
|
1711
1792
|
parse-json "^4.0.0"
|
1712
1793
|
|
1713
|
-
cross-spawn@6.0.5, cross-spawn@^6.0.0
|
1794
|
+
cross-spawn@6.0.5, cross-spawn@^6.0.0:
|
1714
1795
|
version "6.0.5"
|
1715
1796
|
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
|
1716
1797
|
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
|
@@ -1758,12 +1839,12 @@ css-select-base-adapter@^0.1.1:
|
|
1758
1839
|
integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
|
1759
1840
|
|
1760
1841
|
css-select@^2.0.0:
|
1761
|
-
version "2.0
|
1762
|
-
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.
|
1763
|
-
integrity sha512-
|
1842
|
+
version "2.1.0"
|
1843
|
+
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
|
1844
|
+
integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
|
1764
1845
|
dependencies:
|
1765
1846
|
boolbase "^1.0.0"
|
1766
|
-
css-what "^2.1
|
1847
|
+
css-what "^3.2.1"
|
1767
1848
|
domutils "^1.7.0"
|
1768
1849
|
nth-check "^1.0.2"
|
1769
1850
|
|
@@ -1777,36 +1858,36 @@ css-select@~1.2.0:
|
|
1777
1858
|
domutils "1.5.1"
|
1778
1859
|
nth-check "~1.0.1"
|
1779
1860
|
|
1780
|
-
css-tree@1.0.0-alpha.
|
1781
|
-
version "1.0.0-alpha.
|
1782
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.
|
1783
|
-
integrity sha512-
|
1784
|
-
dependencies:
|
1785
|
-
mdn-data "~1.1.0"
|
1786
|
-
source-map "^0.5.3"
|
1787
|
-
|
1788
|
-
css-tree@1.0.0-alpha.33:
|
1789
|
-
version "1.0.0-alpha.33"
|
1790
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.33.tgz#970e20e5a91f7a378ddd0fc58d0b6c8d4f3be93e"
|
1791
|
-
integrity sha512-SPt57bh5nQnpsTBsx/IXbO14sRc9xXu5MtMAVuo0BaQQmyf0NupNPPSoMaqiAF5tDFafYsTkfeH4Q/HCKXkg4w==
|
1861
|
+
css-tree@1.0.0-alpha.37:
|
1862
|
+
version "1.0.0-alpha.37"
|
1863
|
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
|
1864
|
+
integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
|
1792
1865
|
dependencies:
|
1793
1866
|
mdn-data "2.0.4"
|
1794
|
-
source-map "^0.
|
1867
|
+
source-map "^0.6.1"
|
1795
1868
|
|
1796
|
-
css-
|
1797
|
-
version "1.
|
1798
|
-
resolved "https://registry.yarnpkg.com/css-
|
1799
|
-
integrity
|
1869
|
+
css-tree@1.0.0-alpha.39:
|
1870
|
+
version "1.0.0-alpha.39"
|
1871
|
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb"
|
1872
|
+
integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==
|
1873
|
+
dependencies:
|
1874
|
+
mdn-data "2.0.6"
|
1875
|
+
source-map "^0.6.1"
|
1800
1876
|
|
1801
|
-
css-what@2.1
|
1877
|
+
css-what@2.1:
|
1802
1878
|
version "2.1.3"
|
1803
1879
|
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
|
1804
1880
|
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
|
1805
1881
|
|
1806
|
-
|
1807
|
-
version "2.
|
1808
|
-
resolved "https://registry.yarnpkg.com/
|
1809
|
-
integrity sha512-
|
1882
|
+
css-what@^3.2.1:
|
1883
|
+
version "3.2.1"
|
1884
|
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1"
|
1885
|
+
integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==
|
1886
|
+
|
1887
|
+
cssesc@^3.0.0:
|
1888
|
+
version "3.0.0"
|
1889
|
+
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
1890
|
+
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
1810
1891
|
|
1811
1892
|
cssnano-preset-default@^4.0.7:
|
1812
1893
|
version "4.0.7"
|
@@ -1876,12 +1957,12 @@ cssnano@^4.1.10:
|
|
1876
1957
|
is-resolvable "^1.0.0"
|
1877
1958
|
postcss "^7.0.0"
|
1878
1959
|
|
1879
|
-
csso@^
|
1880
|
-
version "
|
1881
|
-
resolved "https://registry.yarnpkg.com/csso/-/csso-
|
1882
|
-
integrity sha512-
|
1960
|
+
csso@^4.0.2:
|
1961
|
+
version "4.0.3"
|
1962
|
+
resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903"
|
1963
|
+
integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==
|
1883
1964
|
dependencies:
|
1884
|
-
css-tree "1.0.0-alpha.
|
1965
|
+
css-tree "1.0.0-alpha.39"
|
1885
1966
|
|
1886
1967
|
currently-unhandled@^0.4.1:
|
1887
1968
|
version "0.4.1"
|
@@ -1911,7 +1992,7 @@ debug@4.1.0:
|
|
1911
1992
|
dependencies:
|
1912
1993
|
ms "^2.1.1"
|
1913
1994
|
|
1914
|
-
debug@^3.1.0, debug@^3.
|
1995
|
+
debug@^3.1.0, debug@^3.1.1, debug@^3.2.5:
|
1915
1996
|
version "3.2.6"
|
1916
1997
|
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
|
1917
1998
|
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
|
@@ -1982,9 +2063,9 @@ decompress-unzip@^4.0.1:
|
|
1982
2063
|
yauzl "^2.4.2"
|
1983
2064
|
|
1984
2065
|
decompress@^4.0.0, decompress@^4.2.0:
|
1985
|
-
version "4.2.
|
1986
|
-
resolved "https://registry.yarnpkg.com/decompress/-/decompress-4.2.
|
1987
|
-
integrity
|
2066
|
+
version "4.2.1"
|
2067
|
+
resolved "https://registry.yarnpkg.com/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118"
|
2068
|
+
integrity sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==
|
1988
2069
|
dependencies:
|
1989
2070
|
decompress-tar "^4.0.0"
|
1990
2071
|
decompress-tarbz2 "^4.0.0"
|
@@ -1995,11 +2076,6 @@ decompress@^4.0.0, decompress@^4.2.0:
|
|
1995
2076
|
pify "^2.3.0"
|
1996
2077
|
strip-dirs "^2.0.0"
|
1997
2078
|
|
1998
|
-
deep-extend@^0.6.0:
|
1999
|
-
version "0.6.0"
|
2000
|
-
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
2001
|
-
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
|
2002
|
-
|
2003
2079
|
deep-is@^0.1.3:
|
2004
2080
|
version "0.1.3"
|
2005
2081
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
@@ -2044,11 +2120,6 @@ delegate@^3.1.2:
|
|
2044
2120
|
resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
|
2045
2121
|
integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
|
2046
2122
|
|
2047
|
-
delegates@^1.0.0:
|
2048
|
-
version "1.0.0"
|
2049
|
-
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
2050
|
-
integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
|
2051
|
-
|
2052
2123
|
depd@~1.1.2:
|
2053
2124
|
version "1.1.2"
|
2054
2125
|
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
|
@@ -2059,11 +2130,6 @@ destroy@~1.0.4:
|
|
2059
2130
|
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
|
2060
2131
|
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
|
2061
2132
|
|
2062
|
-
detect-libc@^1.0.2:
|
2063
|
-
version "1.0.3"
|
2064
|
-
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
|
2065
|
-
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
|
2066
|
-
|
2067
2133
|
detect-port-alt@1.1.6:
|
2068
2134
|
version "1.1.6"
|
2069
2135
|
resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
|
@@ -2085,37 +2151,35 @@ dir-glob@2.0.0:
|
|
2085
2151
|
arrify "^1.0.1"
|
2086
2152
|
path-type "^3.0.0"
|
2087
2153
|
|
2088
|
-
docusaurus@^1.
|
2089
|
-
version "1.
|
2090
|
-
resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.
|
2091
|
-
integrity sha512-
|
2092
|
-
dependencies:
|
2093
|
-
"@babel/core" "^7.
|
2094
|
-
"@babel/plugin-proposal-class-properties" "^7.
|
2095
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
2096
|
-
"@babel/polyfill" "^7.
|
2097
|
-
"@babel/preset-env" "^7.
|
2098
|
-
"@babel/preset-react" "^7.
|
2099
|
-
"@babel/register" "^7.
|
2100
|
-
"@babel/traverse" "^7.
|
2101
|
-
"@babel/types" "^7.
|
2102
|
-
autoprefixer "^9.
|
2154
|
+
docusaurus@^1.14.4:
|
2155
|
+
version "1.14.4"
|
2156
|
+
resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.14.4.tgz#1ef3ebe8c2aaaf1dec6c2e0e177e83be78aeaca3"
|
2157
|
+
integrity sha512-KALmrlZBc0E+AB0ITR4POGKv8WcrcSSxvmgq7nC3TdpS+S2hrlXN/2tV3tVOZ8q8m+zhcMs7l9mAIhGFQyQwIw==
|
2158
|
+
dependencies:
|
2159
|
+
"@babel/core" "^7.7.4"
|
2160
|
+
"@babel/plugin-proposal-class-properties" "^7.7.4"
|
2161
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.7.4"
|
2162
|
+
"@babel/polyfill" "^7.7.0"
|
2163
|
+
"@babel/preset-env" "^7.7.4"
|
2164
|
+
"@babel/preset-react" "^7.7.4"
|
2165
|
+
"@babel/register" "^7.7.4"
|
2166
|
+
"@babel/traverse" "^7.7.4"
|
2167
|
+
"@babel/types" "^7.7.4"
|
2168
|
+
autoprefixer "^9.7.2"
|
2103
2169
|
babylon "^6.18.0"
|
2104
|
-
chalk "^
|
2105
|
-
chokidar "^3.0.2"
|
2170
|
+
chalk "^3.0.0"
|
2106
2171
|
classnames "^2.2.6"
|
2107
|
-
|
2108
|
-
commander "^2.20.0"
|
2109
|
-
cross-spawn "^6.0.5"
|
2172
|
+
commander "^4.0.1"
|
2110
2173
|
crowdin-cli "^0.3.0"
|
2111
2174
|
cssnano "^4.1.10"
|
2112
2175
|
escape-string-regexp "^2.0.0"
|
2113
2176
|
express "^4.17.1"
|
2114
|
-
feed "^
|
2177
|
+
feed "^4.0.0"
|
2115
2178
|
fs-extra "^8.1.0"
|
2116
2179
|
gaze "^1.1.3"
|
2117
|
-
|
2118
|
-
|
2180
|
+
github-slugger "^1.2.1"
|
2181
|
+
glob "^7.1.6"
|
2182
|
+
highlight.js "^9.16.2"
|
2119
2183
|
imagemin "^6.0.0"
|
2120
2184
|
imagemin-gifsicle "^6.0.1"
|
2121
2185
|
imagemin-jpegtran "^6.0.0"
|
@@ -2124,26 +2188,25 @@ docusaurus@^1.12.0:
|
|
2124
2188
|
lodash "^4.17.15"
|
2125
2189
|
markdown-toc "^1.2.0"
|
2126
2190
|
mkdirp "^0.5.1"
|
2127
|
-
portfinder "^1.0.
|
2128
|
-
postcss "^7.0.
|
2191
|
+
portfinder "^1.0.25"
|
2192
|
+
postcss "^7.0.23"
|
2129
2193
|
prismjs "^1.17.1"
|
2130
2194
|
react "^16.8.4"
|
2131
|
-
react-dev-utils "^9.0
|
2195
|
+
react-dev-utils "^9.1.0"
|
2132
2196
|
react-dom "^16.8.4"
|
2133
|
-
remarkable "^
|
2197
|
+
remarkable "^2.0.0"
|
2134
2198
|
request "^2.88.0"
|
2135
2199
|
shelljs "^0.8.3"
|
2136
2200
|
sitemap "^3.2.2"
|
2137
|
-
striptags "^3.1.1"
|
2138
2201
|
tcp-port-used "^1.0.1"
|
2139
2202
|
tiny-lr "^1.1.1"
|
2140
2203
|
tree-node-cli "^1.2.5"
|
2141
|
-
truncate-html "^1.0.
|
2204
|
+
truncate-html "^1.0.3"
|
2142
2205
|
|
2143
2206
|
dom-serializer@0:
|
2144
|
-
version "0.2.
|
2145
|
-
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.
|
2146
|
-
integrity sha512-
|
2207
|
+
version "0.2.2"
|
2208
|
+
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
|
2209
|
+
integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
|
2147
2210
|
dependencies:
|
2148
2211
|
domelementtype "^2.0.1"
|
2149
2212
|
entities "^2.0.0"
|
@@ -2189,12 +2252,12 @@ domutils@^1.5.1, domutils@^1.7.0:
|
|
2189
2252
|
dom-serializer "0"
|
2190
2253
|
domelementtype "1"
|
2191
2254
|
|
2192
|
-
dot-prop@^
|
2193
|
-
version "
|
2194
|
-
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-
|
2195
|
-
integrity sha512-
|
2255
|
+
dot-prop@^5.2.0:
|
2256
|
+
version "5.2.0"
|
2257
|
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
|
2258
|
+
integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
|
2196
2259
|
dependencies:
|
2197
|
-
is-obj "^
|
2260
|
+
is-obj "^2.0.0"
|
2198
2261
|
|
2199
2262
|
download@^6.2.2:
|
2200
2263
|
version "6.2.5"
|
@@ -2254,10 +2317,15 @@ ee-first@1.1.1:
|
|
2254
2317
|
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
2255
2318
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
2256
2319
|
|
2257
|
-
electron-to-chromium@^1.3.
|
2258
|
-
version "1.3.
|
2259
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2260
|
-
integrity sha512-
|
2320
|
+
electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.413:
|
2321
|
+
version "1.3.413"
|
2322
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.413.tgz#9c457a4165c7b42e59d66dff841063eb9bfe5614"
|
2323
|
+
integrity sha512-Jm1Rrd3siqYHO3jftZwDljL2LYQafj3Kki5r+udqE58d0i91SkjItVJ5RwlJn9yko8i7MOcoidVKjQlgSdd1hg==
|
2324
|
+
|
2325
|
+
"emoji-regex@>=6.0.0 <=6.1.1":
|
2326
|
+
version "6.1.1"
|
2327
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
|
2328
|
+
integrity sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=
|
2261
2329
|
|
2262
2330
|
emojis-list@^2.0.0:
|
2263
2331
|
version "2.1.0"
|
@@ -2270,9 +2338,9 @@ encodeurl@~1.0.2:
|
|
2270
2338
|
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
|
2271
2339
|
|
2272
2340
|
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
|
2273
|
-
version "1.4.
|
2274
|
-
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.
|
2275
|
-
integrity sha512
|
2341
|
+
version "1.4.4"
|
2342
|
+
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
|
2343
|
+
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
|
2276
2344
|
dependencies:
|
2277
2345
|
once "^1.4.0"
|
2278
2346
|
|
@@ -2294,32 +2362,33 @@ error-ex@^1.2.0, error-ex@^1.3.1:
|
|
2294
2362
|
is-arrayish "^0.2.1"
|
2295
2363
|
|
2296
2364
|
error@^7.0.0:
|
2297
|
-
version "7.2.
|
2298
|
-
resolved "https://registry.yarnpkg.com/error/-/error-7.2.
|
2299
|
-
integrity sha512-
|
2365
|
+
version "7.2.1"
|
2366
|
+
resolved "https://registry.yarnpkg.com/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894"
|
2367
|
+
integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==
|
2300
2368
|
dependencies:
|
2301
2369
|
string-template "~0.2.1"
|
2302
2370
|
|
2303
|
-
es-abstract@^1.
|
2304
|
-
version "1.
|
2305
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.
|
2306
|
-
integrity sha512-
|
2371
|
+
es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5:
|
2372
|
+
version "1.17.5"
|
2373
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9"
|
2374
|
+
integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==
|
2307
2375
|
dependencies:
|
2308
|
-
es-to-primitive "^1.2.
|
2376
|
+
es-to-primitive "^1.2.1"
|
2309
2377
|
function-bind "^1.1.1"
|
2310
2378
|
has "^1.0.3"
|
2311
|
-
has-symbols "^1.0.
|
2312
|
-
is-callable "^1.1.
|
2313
|
-
is-regex "^1.0.
|
2314
|
-
object-inspect "^1.
|
2379
|
+
has-symbols "^1.0.1"
|
2380
|
+
is-callable "^1.1.5"
|
2381
|
+
is-regex "^1.0.5"
|
2382
|
+
object-inspect "^1.7.0"
|
2315
2383
|
object-keys "^1.1.1"
|
2316
|
-
|
2317
|
-
string.prototype.
|
2384
|
+
object.assign "^4.1.0"
|
2385
|
+
string.prototype.trimleft "^2.1.1"
|
2386
|
+
string.prototype.trimright "^2.1.1"
|
2318
2387
|
|
2319
|
-
es-to-primitive@^1.2.
|
2320
|
-
version "1.2.
|
2321
|
-
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.
|
2322
|
-
integrity sha512-
|
2388
|
+
es-to-primitive@^1.2.1:
|
2389
|
+
version "1.2.1"
|
2390
|
+
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
2391
|
+
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
2323
2392
|
dependencies:
|
2324
2393
|
is-callable "^1.1.4"
|
2325
2394
|
is-date-object "^1.0.1"
|
@@ -2345,7 +2414,7 @@ esprima@^4.0.0:
|
|
2345
2414
|
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
2346
2415
|
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
2347
2416
|
|
2348
|
-
esutils@^2.0.
|
2417
|
+
esutils@^2.0.2:
|
2349
2418
|
version "2.0.3"
|
2350
2419
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
2351
2420
|
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
@@ -2530,10 +2599,10 @@ extsprintf@^1.2.0:
|
|
2530
2599
|
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
|
2531
2600
|
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
|
2532
2601
|
|
2533
|
-
fast-deep-equal@^
|
2534
|
-
version "
|
2535
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-
|
2536
|
-
integrity
|
2602
|
+
fast-deep-equal@^3.1.1:
|
2603
|
+
version "3.1.1"
|
2604
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
|
2605
|
+
integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
|
2537
2606
|
|
2538
2607
|
fast-glob@^2.0.2:
|
2539
2608
|
version "2.2.7"
|
@@ -2548,9 +2617,9 @@ fast-glob@^2.0.2:
|
|
2548
2617
|
micromatch "^3.1.10"
|
2549
2618
|
|
2550
2619
|
fast-json-stable-stringify@^2.0.0:
|
2551
|
-
version "2.
|
2552
|
-
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.
|
2553
|
-
integrity
|
2620
|
+
version "2.1.0"
|
2621
|
+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
2622
|
+
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
2554
2623
|
|
2555
2624
|
faye-websocket@~0.10.0:
|
2556
2625
|
version "0.10.0"
|
@@ -2573,12 +2642,12 @@ fd-slicer@~1.1.0:
|
|
2573
2642
|
dependencies:
|
2574
2643
|
pend "~1.2.0"
|
2575
2644
|
|
2576
|
-
feed@^
|
2577
|
-
version "
|
2578
|
-
resolved "https://registry.yarnpkg.com/feed/-/feed-
|
2579
|
-
integrity
|
2645
|
+
feed@^4.0.0:
|
2646
|
+
version "4.1.0"
|
2647
|
+
resolved "https://registry.yarnpkg.com/feed/-/feed-4.1.0.tgz#58f1c9cc2b44715d14ac59234e1bf20c5d757aa7"
|
2648
|
+
integrity sha512-dAXWXM8QMxZ1DRnAxDmy1MaWZFlh1Ku7TU3onbXgHrVJynsxkNGPUed1AxszVW8AXo43xExronVkIqK+ACsoBA==
|
2580
2649
|
dependencies:
|
2581
|
-
xml "^1.
|
2650
|
+
xml-js "^1.6.11"
|
2582
2651
|
|
2583
2652
|
figures@^1.3.5:
|
2584
2653
|
version "1.7.0"
|
@@ -2625,6 +2694,11 @@ file-type@^8.1.0:
|
|
2625
2694
|
resolved "https://registry.yarnpkg.com/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c"
|
2626
2695
|
integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==
|
2627
2696
|
|
2697
|
+
file-uri-to-path@1.0.0:
|
2698
|
+
version "1.0.0"
|
2699
|
+
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
2700
|
+
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
2701
|
+
|
2628
2702
|
filename-reserved-regex@^2.0.0:
|
2629
2703
|
version "2.0.0"
|
2630
2704
|
resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229"
|
@@ -2665,13 +2739,6 @@ fill-range@^4.0.0:
|
|
2665
2739
|
repeat-string "^1.6.1"
|
2666
2740
|
to-regex-range "^2.1.0"
|
2667
2741
|
|
2668
|
-
fill-range@^7.0.1:
|
2669
|
-
version "7.0.1"
|
2670
|
-
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
2671
|
-
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
2672
|
-
dependencies:
|
2673
|
-
to-regex-range "^5.0.1"
|
2674
|
-
|
2675
2742
|
finalhandler@~1.1.2:
|
2676
2743
|
version "1.1.2"
|
2677
2744
|
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
|
@@ -2717,11 +2784,10 @@ find-up@^2.1.0:
|
|
2717
2784
|
locate-path "^2.0.0"
|
2718
2785
|
|
2719
2786
|
find-versions@^3.0.0:
|
2720
|
-
version "3.
|
2721
|
-
resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.
|
2722
|
-
integrity sha512-
|
2787
|
+
version "3.2.0"
|
2788
|
+
resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
|
2789
|
+
integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
|
2723
2790
|
dependencies:
|
2724
|
-
array-uniq "^2.1.0"
|
2725
2791
|
semver-regex "^2.0.0"
|
2726
2792
|
|
2727
2793
|
for-in@^1.0.2:
|
@@ -2796,50 +2862,24 @@ fs-extra@^8.1.0:
|
|
2796
2862
|
jsonfile "^4.0.0"
|
2797
2863
|
universalify "^0.1.0"
|
2798
2864
|
|
2799
|
-
fs-minipass@^1.2.5:
|
2800
|
-
version "1.2.7"
|
2801
|
-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
|
2802
|
-
integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
|
2803
|
-
dependencies:
|
2804
|
-
minipass "^2.6.0"
|
2805
|
-
|
2806
2865
|
fs.realpath@^1.0.0:
|
2807
2866
|
version "1.0.0"
|
2808
2867
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
2809
2868
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2810
2869
|
|
2811
2870
|
fsevents@^1.2.7:
|
2812
|
-
version "1.2.
|
2813
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.
|
2814
|
-
integrity sha512-
|
2871
|
+
version "1.2.12"
|
2872
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c"
|
2873
|
+
integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==
|
2815
2874
|
dependencies:
|
2875
|
+
bindings "^1.5.0"
|
2816
2876
|
nan "^2.12.1"
|
2817
|
-
node-pre-gyp "^0.12.0"
|
2818
|
-
|
2819
|
-
fsevents@^2.0.6:
|
2820
|
-
version "2.0.7"
|
2821
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a"
|
2822
|
-
integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==
|
2823
2877
|
|
2824
2878
|
function-bind@^1.1.1:
|
2825
2879
|
version "1.1.1"
|
2826
2880
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
2827
2881
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
2828
2882
|
|
2829
|
-
gauge@~2.7.3:
|
2830
|
-
version "2.7.4"
|
2831
|
-
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
2832
|
-
integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
|
2833
|
-
dependencies:
|
2834
|
-
aproba "^1.0.3"
|
2835
|
-
console-control-strings "^1.0.0"
|
2836
|
-
has-unicode "^2.0.0"
|
2837
|
-
object-assign "^4.1.0"
|
2838
|
-
signal-exit "^3.0.0"
|
2839
|
-
string-width "^1.0.1"
|
2840
|
-
strip-ansi "^3.0.1"
|
2841
|
-
wide-align "^1.1.0"
|
2842
|
-
|
2843
2883
|
gaze@^1.1.3:
|
2844
2884
|
version "1.1.3"
|
2845
2885
|
resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a"
|
@@ -2847,6 +2887,11 @@ gaze@^1.1.3:
|
|
2847
2887
|
dependencies:
|
2848
2888
|
globule "^1.0.0"
|
2849
2889
|
|
2890
|
+
gensync@^1.0.0-beta.1:
|
2891
|
+
version "1.0.0-beta.1"
|
2892
|
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
|
2893
|
+
integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
|
2894
|
+
|
2850
2895
|
get-proxy@^2.0.0:
|
2851
2896
|
version "2.1.0"
|
2852
2897
|
resolved "https://registry.yarnpkg.com/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93"
|
@@ -2901,6 +2946,13 @@ gifsicle@^4.0.0:
|
|
2901
2946
|
execa "^1.0.0"
|
2902
2947
|
logalot "^2.0.0"
|
2903
2948
|
|
2949
|
+
github-slugger@^1.2.1:
|
2950
|
+
version "1.3.0"
|
2951
|
+
resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9"
|
2952
|
+
integrity sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==
|
2953
|
+
dependencies:
|
2954
|
+
emoji-regex ">=6.0.0 <=6.1.1"
|
2955
|
+
|
2904
2956
|
glob-parent@^3.1.0:
|
2905
2957
|
version "3.1.0"
|
2906
2958
|
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
|
@@ -2909,22 +2961,15 @@ glob-parent@^3.1.0:
|
|
2909
2961
|
is-glob "^3.1.0"
|
2910
2962
|
path-dirname "^1.0.0"
|
2911
2963
|
|
2912
|
-
glob-parent@^5.0.0:
|
2913
|
-
version "5.0.0"
|
2914
|
-
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954"
|
2915
|
-
integrity sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg==
|
2916
|
-
dependencies:
|
2917
|
-
is-glob "^4.0.1"
|
2918
|
-
|
2919
2964
|
glob-to-regexp@^0.3.0:
|
2920
2965
|
version "0.3.0"
|
2921
2966
|
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
|
2922
2967
|
integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
|
2923
2968
|
|
2924
|
-
glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1:
|
2925
|
-
version "7.1.
|
2926
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.
|
2927
|
-
integrity sha512-
|
2969
|
+
glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6, glob@~7.1.1:
|
2970
|
+
version "7.1.6"
|
2971
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
2972
|
+
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
2928
2973
|
dependencies:
|
2929
2974
|
fs.realpath "^1.0.0"
|
2930
2975
|
inflight "^1.0.4"
|
@@ -2968,12 +3013,12 @@ globby@8.0.2, globby@^8.0.1:
|
|
2968
3013
|
slash "^1.0.0"
|
2969
3014
|
|
2970
3015
|
globule@^1.0.0:
|
2971
|
-
version "1.
|
2972
|
-
resolved "https://registry.yarnpkg.com/globule/-/globule-1.
|
2973
|
-
integrity sha512-
|
3016
|
+
version "1.3.1"
|
3017
|
+
resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9"
|
3018
|
+
integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g==
|
2974
3019
|
dependencies:
|
2975
3020
|
glob "~7.1.1"
|
2976
|
-
lodash "~4.17.
|
3021
|
+
lodash "~4.17.12"
|
2977
3022
|
minimatch "~3.0.2"
|
2978
3023
|
|
2979
3024
|
good-listener@^1.2.2:
|
@@ -3027,9 +3072,9 @@ got@^8.3.1:
|
|
3027
3072
|
url-to-options "^1.0.1"
|
3028
3073
|
|
3029
3074
|
graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0:
|
3030
|
-
version "4.2.
|
3031
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.
|
3032
|
-
integrity sha512-
|
3075
|
+
version "4.2.3"
|
3076
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
|
3077
|
+
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
|
3033
3078
|
|
3034
3079
|
"graceful-readlink@>= 1.0.0":
|
3035
3080
|
version "1.0.1"
|
@@ -3069,7 +3114,7 @@ har-schema@^2.0.0:
|
|
3069
3114
|
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
3070
3115
|
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
|
3071
3116
|
|
3072
|
-
har-validator@~5.1.
|
3117
|
+
har-validator@~5.1.3:
|
3073
3118
|
version "5.1.3"
|
3074
3119
|
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
|
3075
3120
|
integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
|
@@ -3089,15 +3134,20 @@ has-flag@^3.0.0:
|
|
3089
3134
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
3090
3135
|
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
3091
3136
|
|
3137
|
+
has-flag@^4.0.0:
|
3138
|
+
version "4.0.0"
|
3139
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
3140
|
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
3141
|
+
|
3092
3142
|
has-symbol-support-x@^1.4.1:
|
3093
3143
|
version "1.4.2"
|
3094
3144
|
resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
|
3095
3145
|
integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==
|
3096
3146
|
|
3097
|
-
has-symbols@^1.0.0:
|
3098
|
-
version "1.0.
|
3099
|
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.
|
3100
|
-
integrity
|
3147
|
+
has-symbols@^1.0.0, has-symbols@^1.0.1:
|
3148
|
+
version "1.0.1"
|
3149
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
3150
|
+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
3101
3151
|
|
3102
3152
|
has-to-string-tag-x@^1.2.0:
|
3103
3153
|
version "1.4.1"
|
@@ -3106,11 +3156,6 @@ has-to-string-tag-x@^1.2.0:
|
|
3106
3156
|
dependencies:
|
3107
3157
|
has-symbol-support-x "^1.4.1"
|
3108
3158
|
|
3109
|
-
has-unicode@^2.0.0:
|
3110
|
-
version "2.0.1"
|
3111
|
-
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
3112
|
-
integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
|
3113
|
-
|
3114
3159
|
has-value@^0.3.1:
|
3115
3160
|
version "0.3.1"
|
3116
3161
|
resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
|
@@ -3142,7 +3187,7 @@ has-values@^1.0.0:
|
|
3142
3187
|
is-number "^3.0.0"
|
3143
3188
|
kind-of "^4.0.0"
|
3144
3189
|
|
3145
|
-
has@^1.0.0, has@^1.0.
|
3190
|
+
has@^1.0.0, has@^1.0.3:
|
3146
3191
|
version "1.0.3"
|
3147
3192
|
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
3148
3193
|
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
@@ -3154,15 +3199,15 @@ hex-color-regex@^1.1.0:
|
|
3154
3199
|
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
|
3155
3200
|
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
|
3156
3201
|
|
3157
|
-
highlight.js@^9.
|
3158
|
-
version "9.
|
3159
|
-
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.
|
3160
|
-
integrity sha512-
|
3202
|
+
highlight.js@^9.16.2:
|
3203
|
+
version "9.18.1"
|
3204
|
+
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c"
|
3205
|
+
integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg==
|
3161
3206
|
|
3162
3207
|
hosted-git-info@^2.1.4:
|
3163
|
-
version "2.8.
|
3164
|
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.
|
3165
|
-
integrity sha512-
|
3208
|
+
version "2.8.8"
|
3209
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
|
3210
|
+
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
|
3166
3211
|
|
3167
3212
|
hsl-regex@^1.0.0:
|
3168
3213
|
version "1.0.0"
|
@@ -3174,7 +3219,7 @@ hsla-regex@^1.0.0:
|
|
3174
3219
|
resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
|
3175
3220
|
integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
|
3176
3221
|
|
3177
|
-
html-comment-regex@^1.1.0:
|
3222
|
+
html-comment-regex@^1.1.0, html-comment-regex@^1.1.2:
|
3178
3223
|
version "1.1.2"
|
3179
3224
|
resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
|
3180
3225
|
integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
|
@@ -3232,7 +3277,7 @@ http-signature@~1.2.0:
|
|
3232
3277
|
jsprim "^1.2.2"
|
3233
3278
|
sshpk "^1.7.0"
|
3234
3279
|
|
3235
|
-
iconv-lite@0.4.24, iconv-lite@^0.4.24
|
3280
|
+
iconv-lite@0.4.24, iconv-lite@^0.4.24:
|
3236
3281
|
version "0.4.24"
|
3237
3282
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
3238
3283
|
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
|
@@ -3244,13 +3289,6 @@ ieee754@^1.1.4:
|
|
3244
3289
|
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
3245
3290
|
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
|
3246
3291
|
|
3247
|
-
ignore-walk@^3.0.1:
|
3248
|
-
version "3.0.2"
|
3249
|
-
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.2.tgz#99d83a246c196ea5c93ef9315ad7b0819c35069b"
|
3250
|
-
integrity sha512-EXyErtpHbn75ZTsOADsfx6J/FPo6/5cjev46PXrcTpd8z3BoRkXgYu9/JVqrI7tusjmwCZutGeRJeU0Wo1e4Cw==
|
3251
|
-
dependencies:
|
3252
|
-
minimatch "^3.0.4"
|
3253
|
-
|
3254
3292
|
ignore@^3.3.5:
|
3255
3293
|
version "3.3.10"
|
3256
3294
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
|
@@ -3284,12 +3322,12 @@ imagemin-optipng@^6.0.0:
|
|
3284
3322
|
optipng-bin "^5.0.0"
|
3285
3323
|
|
3286
3324
|
imagemin-svgo@^7.0.0:
|
3287
|
-
version "7.
|
3288
|
-
resolved "https://registry.yarnpkg.com/imagemin-svgo/-/imagemin-svgo-7.
|
3289
|
-
integrity sha512
|
3325
|
+
version "7.1.0"
|
3326
|
+
resolved "https://registry.yarnpkg.com/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz#528a42fd3d55eff5d4af8fd1113f25fb61ad6d9a"
|
3327
|
+
integrity sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg==
|
3290
3328
|
dependencies:
|
3291
|
-
is-svg "^
|
3292
|
-
svgo "^1.
|
3329
|
+
is-svg "^4.2.1"
|
3330
|
+
svgo "^1.3.2"
|
3293
3331
|
|
3294
3332
|
imagemin@^6.0.0:
|
3295
3333
|
version "6.1.0"
|
@@ -3351,7 +3389,7 @@ inherits@2.0.3:
|
|
3351
3389
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
3352
3390
|
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
3353
3391
|
|
3354
|
-
ini@^1.3.4, ini@^1.3.5
|
3392
|
+
ini@^1.3.4, ini@^1.3.5:
|
3355
3393
|
version "1.3.5"
|
3356
3394
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
3357
3395
|
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
|
@@ -3388,7 +3426,7 @@ into-stream@^3.1.0:
|
|
3388
3426
|
from2 "^2.1.1"
|
3389
3427
|
p-is-promise "^1.1.0"
|
3390
3428
|
|
3391
|
-
invariant@^2.2.2:
|
3429
|
+
invariant@^2.2.2, invariant@^2.2.4:
|
3392
3430
|
version "2.2.4"
|
3393
3431
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
3394
3432
|
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
@@ -3400,10 +3438,10 @@ ip-regex@^2.1.0:
|
|
3400
3438
|
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
3401
3439
|
integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
|
3402
3440
|
|
3403
|
-
ipaddr.js@1.9.
|
3404
|
-
version "1.9.
|
3405
|
-
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.
|
3406
|
-
integrity sha512-
|
3441
|
+
ipaddr.js@1.9.1:
|
3442
|
+
version "1.9.1"
|
3443
|
+
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
3444
|
+
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
|
3407
3445
|
|
3408
3446
|
is-absolute-url@^2.0.0:
|
3409
3447
|
version "2.1.0"
|
@@ -3441,22 +3479,15 @@ is-binary-path@^1.0.0:
|
|
3441
3479
|
dependencies:
|
3442
3480
|
binary-extensions "^1.0.0"
|
3443
3481
|
|
3444
|
-
is-binary-path@^2.1.0:
|
3445
|
-
version "2.1.0"
|
3446
|
-
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
3447
|
-
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
3448
|
-
dependencies:
|
3449
|
-
binary-extensions "^2.0.0"
|
3450
|
-
|
3451
3482
|
is-buffer@^1.1.5:
|
3452
3483
|
version "1.1.6"
|
3453
3484
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
3454
3485
|
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
3455
3486
|
|
3456
|
-
is-callable@^1.1.4:
|
3457
|
-
version "1.1.
|
3458
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.
|
3459
|
-
integrity sha512-
|
3487
|
+
is-callable@^1.1.4, is-callable@^1.1.5:
|
3488
|
+
version "1.1.5"
|
3489
|
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
|
3490
|
+
integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
|
3460
3491
|
|
3461
3492
|
is-color-stop@^1.0.0:
|
3462
3493
|
version "1.1.0"
|
@@ -3485,9 +3516,9 @@ is-data-descriptor@^1.0.0:
|
|
3485
3516
|
kind-of "^6.0.0"
|
3486
3517
|
|
3487
3518
|
is-date-object@^1.0.1:
|
3488
|
-
version "1.0.
|
3489
|
-
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.
|
3490
|
-
integrity
|
3519
|
+
version "1.0.2"
|
3520
|
+
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
|
3521
|
+
integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
|
3491
3522
|
|
3492
3523
|
is-descriptor@^0.1.0:
|
3493
3524
|
version "0.1.6"
|
@@ -3530,18 +3561,9 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
|
|
3530
3561
|
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
3531
3562
|
|
3532
3563
|
is-finite@^1.0.0:
|
3533
|
-
version "1.0
|
3534
|
-
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.
|
3535
|
-
integrity
|
3536
|
-
dependencies:
|
3537
|
-
number-is-nan "^1.0.0"
|
3538
|
-
|
3539
|
-
is-fullwidth-code-point@^1.0.0:
|
3540
|
-
version "1.0.0"
|
3541
|
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
|
3542
|
-
integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
|
3543
|
-
dependencies:
|
3544
|
-
number-is-nan "^1.0.0"
|
3564
|
+
version "1.1.0"
|
3565
|
+
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
|
3566
|
+
integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
|
3545
3567
|
|
3546
3568
|
is-fullwidth-code-point@^2.0.0:
|
3547
3569
|
version "2.0.0"
|
@@ -3562,7 +3584,7 @@ is-glob@^3.1.0:
|
|
3562
3584
|
dependencies:
|
3563
3585
|
is-extglob "^2.1.0"
|
3564
3586
|
|
3565
|
-
is-glob@^4.0.0
|
3587
|
+
is-glob@^4.0.0:
|
3566
3588
|
version "4.0.1"
|
3567
3589
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
3568
3590
|
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
|
@@ -3598,15 +3620,10 @@ is-number@^4.0.0:
|
|
3598
3620
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
|
3599
3621
|
integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==
|
3600
3622
|
|
3601
|
-
is-
|
3602
|
-
version "
|
3603
|
-
resolved "https://registry.yarnpkg.com/is-
|
3604
|
-
integrity sha512-
|
3605
|
-
|
3606
|
-
is-obj@^1.0.0:
|
3607
|
-
version "1.0.1"
|
3608
|
-
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
3609
|
-
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
3623
|
+
is-obj@^2.0.0:
|
3624
|
+
version "2.0.0"
|
3625
|
+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
|
3626
|
+
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
|
3610
3627
|
|
3611
3628
|
is-object@^1.0.1:
|
3612
3629
|
version "1.0.1"
|
@@ -3635,12 +3652,12 @@ is-promise@^2.1.0:
|
|
3635
3652
|
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
3636
3653
|
integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
|
3637
3654
|
|
3638
|
-
is-regex@^1.0.
|
3639
|
-
version "1.0.
|
3640
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.
|
3641
|
-
integrity
|
3655
|
+
is-regex@^1.0.5:
|
3656
|
+
version "1.0.5"
|
3657
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
|
3658
|
+
integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
|
3642
3659
|
dependencies:
|
3643
|
-
has "^1.0.
|
3660
|
+
has "^1.0.3"
|
3644
3661
|
|
3645
3662
|
is-resolvable@^1.0.0:
|
3646
3663
|
version "1.1.0"
|
@@ -3669,12 +3686,19 @@ is-svg@^3.0.0:
|
|
3669
3686
|
dependencies:
|
3670
3687
|
html-comment-regex "^1.1.0"
|
3671
3688
|
|
3689
|
+
is-svg@^4.2.1:
|
3690
|
+
version "4.2.1"
|
3691
|
+
resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-4.2.1.tgz#095b496e345fec9211c2a7d5d021003e040d6f81"
|
3692
|
+
integrity sha512-PHx3ANecKsKNl5y5+Jvt53Y4J7MfMpbNZkv384QNiswMKAWIbvcqbPz+sYbFKJI8Xv3be01GSFniPmoaP+Ai5A==
|
3693
|
+
dependencies:
|
3694
|
+
html-comment-regex "^1.1.2"
|
3695
|
+
|
3672
3696
|
is-symbol@^1.0.2:
|
3673
|
-
version "1.0.
|
3674
|
-
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.
|
3675
|
-
integrity sha512-
|
3697
|
+
version "1.0.3"
|
3698
|
+
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
|
3699
|
+
integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
|
3676
3700
|
dependencies:
|
3677
|
-
has-symbols "^1.0.
|
3701
|
+
has-symbols "^1.0.1"
|
3678
3702
|
|
3679
3703
|
is-typedarray@~1.0.0:
|
3680
3704
|
version "1.0.0"
|
@@ -3754,11 +3778,6 @@ jpegtran-bin@^4.0.0:
|
|
3754
3778
|
bin-wrapper "^4.0.0"
|
3755
3779
|
logalot "^2.0.0"
|
3756
3780
|
|
3757
|
-
js-levenshtein@^1.1.3:
|
3758
|
-
version "1.1.6"
|
3759
|
-
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
|
3760
|
-
integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
|
3761
|
-
|
3762
3781
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
3763
3782
|
version "4.0.0"
|
3764
3783
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
@@ -3829,12 +3848,12 @@ json5@^1.0.1:
|
|
3829
3848
|
dependencies:
|
3830
3849
|
minimist "^1.2.0"
|
3831
3850
|
|
3832
|
-
json5@^2.1.
|
3833
|
-
version "2.1.
|
3834
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.
|
3835
|
-
integrity sha512-
|
3851
|
+
json5@^2.1.2:
|
3852
|
+
version "2.1.3"
|
3853
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
|
3854
|
+
integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
|
3836
3855
|
dependencies:
|
3837
|
-
minimist "^1.2.
|
3856
|
+
minimist "^1.2.5"
|
3838
3857
|
|
3839
3858
|
jsonfile@^4.0.0:
|
3840
3859
|
version "4.0.0"
|
@@ -3843,11 +3862,6 @@ jsonfile@^4.0.0:
|
|
3843
3862
|
optionalDependencies:
|
3844
3863
|
graceful-fs "^4.1.6"
|
3845
3864
|
|
3846
|
-
jsonify@~0.0.0:
|
3847
|
-
version "0.0.0"
|
3848
|
-
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
|
3849
|
-
integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
|
3850
|
-
|
3851
3865
|
jsprim@^1.2.2:
|
3852
3866
|
version "1.4.1"
|
3853
3867
|
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
@@ -3885,9 +3899,9 @@ kind-of@^5.0.0:
|
|
3885
3899
|
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
|
3886
3900
|
|
3887
3901
|
kind-of@^6.0.0, kind-of@^6.0.2:
|
3888
|
-
version "6.0.
|
3889
|
-
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.
|
3890
|
-
integrity sha512-
|
3902
|
+
version "6.0.3"
|
3903
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
3904
|
+
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
3891
3905
|
|
3892
3906
|
lazy-cache@^2.0.2:
|
3893
3907
|
version "2.0.2"
|
@@ -3896,6 +3910,18 @@ lazy-cache@^2.0.2:
|
|
3896
3910
|
dependencies:
|
3897
3911
|
set-getter "^0.1.0"
|
3898
3912
|
|
3913
|
+
leven@^3.1.0:
|
3914
|
+
version "3.1.0"
|
3915
|
+
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
3916
|
+
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
3917
|
+
|
3918
|
+
levenary@^1.1.1:
|
3919
|
+
version "1.1.1"
|
3920
|
+
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
|
3921
|
+
integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
|
3922
|
+
dependencies:
|
3923
|
+
leven "^3.1.0"
|
3924
|
+
|
3899
3925
|
list-item@^1.1.1:
|
3900
3926
|
version "1.1.1"
|
3901
3927
|
resolved "https://registry.yarnpkg.com/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56"
|
@@ -4052,10 +4078,10 @@ lodash.uniq@^4.5.0:
|
|
4052
4078
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
4053
4079
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
4054
4080
|
|
4055
|
-
lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.15, lodash@~4.17.
|
4056
|
-
version "4.17.
|
4057
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
4058
|
-
integrity sha512-
|
4081
|
+
lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@~4.17.12:
|
4082
|
+
version "4.17.19"
|
4083
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
|
4084
|
+
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
|
4059
4085
|
|
4060
4086
|
logalot@^2.0.0:
|
4061
4087
|
version "2.1.0"
|
@@ -4120,7 +4146,7 @@ make-dir@^1.0.0, make-dir@^1.2.0:
|
|
4120
4146
|
dependencies:
|
4121
4147
|
pify "^3.0.0"
|
4122
4148
|
|
4123
|
-
make-dir@^2.0.0:
|
4149
|
+
make-dir@^2.0.0, make-dir@^2.1.0:
|
4124
4150
|
version "2.1.0"
|
4125
4151
|
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
4126
4152
|
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
|
@@ -4178,10 +4204,10 @@ mdn-data@2.0.4:
|
|
4178
4204
|
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
|
4179
4205
|
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
|
4180
4206
|
|
4181
|
-
mdn-data
|
4182
|
-
version "
|
4183
|
-
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-
|
4184
|
-
integrity sha512-
|
4207
|
+
mdn-data@2.0.6:
|
4208
|
+
version "2.0.6"
|
4209
|
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978"
|
4210
|
+
integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==
|
4185
4211
|
|
4186
4212
|
media-typer@0.3.0:
|
4187
4213
|
version "0.3.0"
|
@@ -4243,22 +4269,17 @@ micromatch@^3.1.10, micromatch@^3.1.4:
|
|
4243
4269
|
snapdragon "^0.8.1"
|
4244
4270
|
to-regex "^3.0.2"
|
4245
4271
|
|
4246
|
-
mime-db@1.
|
4247
|
-
version "1.
|
4248
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
4249
|
-
integrity sha512
|
4250
|
-
|
4251
|
-
mime-db@^1.28.0:
|
4252
|
-
version "1.41.0"
|
4253
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.41.0.tgz#9110408e1f6aa1b34aef51f2c9df3caddf46b6a0"
|
4254
|
-
integrity sha512-B5gxBI+2K431XW8C2rcc/lhppbuji67nf9v39eH8pkWoZDxnAL0PxdpH32KYRScniF8qDHBDlI+ipgg5WrCUYw==
|
4272
|
+
mime-db@1.43.0, mime-db@^1.28.0:
|
4273
|
+
version "1.43.0"
|
4274
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
|
4275
|
+
integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
|
4255
4276
|
|
4256
4277
|
mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
|
4257
|
-
version "2.1.
|
4258
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
4259
|
-
integrity sha512-
|
4278
|
+
version "2.1.26"
|
4279
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
|
4280
|
+
integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
|
4260
4281
|
dependencies:
|
4261
|
-
mime-db "1.
|
4282
|
+
mime-db "1.43.0"
|
4262
4283
|
|
4263
4284
|
mime@1.6.0:
|
4264
4285
|
version "1.6.0"
|
@@ -4282,30 +4303,10 @@ minimatch@3.0.4, minimatch@^3.0.4, minimatch@~3.0.2:
|
|
4282
4303
|
dependencies:
|
4283
4304
|
brace-expansion "^1.1.7"
|
4284
4305
|
|
4285
|
-
minimist
|
4286
|
-
version "
|
4287
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-
|
4288
|
-
integrity
|
4289
|
-
|
4290
|
-
minimist@^1.1.3, minimist@^1.2.0:
|
4291
|
-
version "1.2.0"
|
4292
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
4293
|
-
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
4294
|
-
|
4295
|
-
minipass@^2.2.1, minipass@^2.3.5, minipass@^2.6.0:
|
4296
|
-
version "2.6.2"
|
4297
|
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.6.2.tgz#c3075a22680b3b1479bae5915904cb1eba50f5c0"
|
4298
|
-
integrity sha512-38Jwdc8AttUDaQAIRX8Iaw3QoCDWjAwKMGeGDF9JUi9QCPMjH5qAQg/hdO8o1nC7Nmh1/CqzMg5FQPEKuKwznQ==
|
4299
|
-
dependencies:
|
4300
|
-
safe-buffer "^5.1.2"
|
4301
|
-
yallist "^3.0.0"
|
4302
|
-
|
4303
|
-
minizlib@^1.2.1:
|
4304
|
-
version "1.2.2"
|
4305
|
-
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.2.tgz#6f0ccc82fa53e1bf2ff145f220d2da9fa6e3a166"
|
4306
|
-
integrity sha512-hR3At21uSrsjjDTWrbu0IMLTpnkpv8IIMFDFaoz43Tmu4LkmAXfH44vNNzpTnf+OAQQCHrb91y/wc2J4x5XgSQ==
|
4307
|
-
dependencies:
|
4308
|
-
minipass "^2.2.1"
|
4306
|
+
minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
|
4307
|
+
version "1.2.5"
|
4308
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
4309
|
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
4309
4310
|
|
4310
4311
|
mixin-deep@^1.1.3, mixin-deep@^1.2.0:
|
4311
4312
|
version "1.3.2"
|
@@ -4315,12 +4316,12 @@ mixin-deep@^1.1.3, mixin-deep@^1.2.0:
|
|
4315
4316
|
for-in "^1.0.2"
|
4316
4317
|
is-extendable "^1.0.1"
|
4317
4318
|
|
4318
|
-
mkdirp
|
4319
|
-
version "0.5.
|
4320
|
-
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.
|
4321
|
-
integrity
|
4319
|
+
mkdirp@^0.5.1, mkdirp@~0.5.1:
|
4320
|
+
version "0.5.5"
|
4321
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
|
4322
|
+
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
|
4322
4323
|
dependencies:
|
4323
|
-
minimist "
|
4324
|
+
minimist "^1.2.5"
|
4324
4325
|
|
4325
4326
|
ms@2.0.0:
|
4326
4327
|
version "2.0.0"
|
@@ -4364,15 +4365,6 @@ nanomatch@^1.2.9:
|
|
4364
4365
|
snapdragon "^0.8.1"
|
4365
4366
|
to-regex "^3.0.1"
|
4366
4367
|
|
4367
|
-
needle@^2.2.1:
|
4368
|
-
version "2.4.0"
|
4369
|
-
resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
|
4370
|
-
integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
|
4371
|
-
dependencies:
|
4372
|
-
debug "^3.2.6"
|
4373
|
-
iconv-lite "^0.4.4"
|
4374
|
-
sax "^1.2.4"
|
4375
|
-
|
4376
4368
|
negotiator@0.6.2:
|
4377
4369
|
version "0.6.2"
|
4378
4370
|
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
|
@@ -4388,36 +4380,10 @@ node-modules-regexp@^1.0.0:
|
|
4388
4380
|
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
4389
4381
|
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
4390
4382
|
|
4391
|
-
node-
|
4392
|
-
version "
|
4393
|
-
resolved "https://registry.yarnpkg.com/node-
|
4394
|
-
integrity sha512-
|
4395
|
-
dependencies:
|
4396
|
-
detect-libc "^1.0.2"
|
4397
|
-
mkdirp "^0.5.1"
|
4398
|
-
needle "^2.2.1"
|
4399
|
-
nopt "^4.0.1"
|
4400
|
-
npm-packlist "^1.1.6"
|
4401
|
-
npmlog "^4.0.2"
|
4402
|
-
rc "^1.2.7"
|
4403
|
-
rimraf "^2.6.1"
|
4404
|
-
semver "^5.3.0"
|
4405
|
-
tar "^4"
|
4406
|
-
|
4407
|
-
node-releases@^1.1.25, node-releases@^1.1.29:
|
4408
|
-
version "1.1.32"
|
4409
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.32.tgz#485b35c1bf9b4d8baa105d782f8ca731e518276e"
|
4410
|
-
integrity sha512-VhVknkitq8dqtWoluagsGPn3dxTvN9fwgR59fV3D7sLBHe0JfDramsMI8n8mY//ccq/Kkrf8ZRHRpsyVZ3qw1A==
|
4411
|
-
dependencies:
|
4412
|
-
semver "^5.3.0"
|
4413
|
-
|
4414
|
-
nopt@^4.0.1:
|
4415
|
-
version "4.0.1"
|
4416
|
-
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
4417
|
-
integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
|
4418
|
-
dependencies:
|
4419
|
-
abbrev "1"
|
4420
|
-
osenv "^0.1.4"
|
4383
|
+
node-releases@^1.1.29, node-releases@^1.1.53:
|
4384
|
+
version "1.1.53"
|
4385
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
|
4386
|
+
integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
|
4421
4387
|
|
4422
4388
|
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
|
4423
4389
|
version "2.5.0"
|
@@ -4460,11 +4426,6 @@ normalize-url@^3.0.0:
|
|
4460
4426
|
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
|
4461
4427
|
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
|
4462
4428
|
|
4463
|
-
npm-bundled@^1.0.1:
|
4464
|
-
version "1.0.6"
|
4465
|
-
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
|
4466
|
-
integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
|
4467
|
-
|
4468
4429
|
npm-conf@^1.1.0:
|
4469
4430
|
version "1.1.3"
|
4470
4431
|
resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9"
|
@@ -4473,14 +4434,6 @@ npm-conf@^1.1.0:
|
|
4473
4434
|
config-chain "^1.1.11"
|
4474
4435
|
pify "^3.0.0"
|
4475
4436
|
|
4476
|
-
npm-packlist@^1.1.6:
|
4477
|
-
version "1.4.4"
|
4478
|
-
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44"
|
4479
|
-
integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==
|
4480
|
-
dependencies:
|
4481
|
-
ignore-walk "^3.0.1"
|
4482
|
-
npm-bundled "^1.0.1"
|
4483
|
-
|
4484
4437
|
npm-run-path@^2.0.0:
|
4485
4438
|
version "2.0.2"
|
4486
4439
|
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
@@ -4488,16 +4441,6 @@ npm-run-path@^2.0.0:
|
|
4488
4441
|
dependencies:
|
4489
4442
|
path-key "^2.0.0"
|
4490
4443
|
|
4491
|
-
npmlog@^4.0.2:
|
4492
|
-
version "4.1.2"
|
4493
|
-
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
4494
|
-
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
|
4495
|
-
dependencies:
|
4496
|
-
are-we-there-yet "~1.1.2"
|
4497
|
-
console-control-strings "~1.1.0"
|
4498
|
-
gauge "~2.7.3"
|
4499
|
-
set-blocking "~2.0.0"
|
4500
|
-
|
4501
4444
|
nth-check@^1.0.2, nth-check@~1.0.1:
|
4502
4445
|
version "1.0.2"
|
4503
4446
|
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
|
@@ -4510,11 +4453,6 @@ num2fraction@^1.2.2:
|
|
4510
4453
|
resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
|
4511
4454
|
integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
|
4512
4455
|
|
4513
|
-
number-is-nan@^1.0.0:
|
4514
|
-
version "1.0.1"
|
4515
|
-
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
4516
|
-
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
|
4517
|
-
|
4518
4456
|
oauth-sign@~0.9.0:
|
4519
4457
|
version "0.9.0"
|
4520
4458
|
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
|
@@ -4534,10 +4472,10 @@ object-copy@^0.1.0:
|
|
4534
4472
|
define-property "^0.2.5"
|
4535
4473
|
kind-of "^3.0.3"
|
4536
4474
|
|
4537
|
-
object-inspect@^1.
|
4538
|
-
version "1.
|
4539
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.
|
4540
|
-
integrity sha512-
|
4475
|
+
object-inspect@^1.7.0:
|
4476
|
+
version "1.7.0"
|
4477
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
|
4478
|
+
integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
|
4541
4479
|
|
4542
4480
|
object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
|
4543
4481
|
version "1.1.1"
|
@@ -4561,13 +4499,13 @@ object.assign@^4.1.0:
|
|
4561
4499
|
has-symbols "^1.0.0"
|
4562
4500
|
object-keys "^1.0.11"
|
4563
4501
|
|
4564
|
-
object.getownpropertydescriptors@^2.0
|
4565
|
-
version "2.0
|
4566
|
-
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.
|
4567
|
-
integrity
|
4502
|
+
object.getownpropertydescriptors@^2.1.0:
|
4503
|
+
version "2.1.0"
|
4504
|
+
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
|
4505
|
+
integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
|
4568
4506
|
dependencies:
|
4569
|
-
define-properties "^1.1.
|
4570
|
-
es-abstract "^1.
|
4507
|
+
define-properties "^1.1.3"
|
4508
|
+
es-abstract "^1.17.0-next.1"
|
4571
4509
|
|
4572
4510
|
object.pick@^1.2.0, object.pick@^1.3.0:
|
4573
4511
|
version "1.3.0"
|
@@ -4577,12 +4515,12 @@ object.pick@^1.2.0, object.pick@^1.3.0:
|
|
4577
4515
|
isobject "^3.0.1"
|
4578
4516
|
|
4579
4517
|
object.values@^1.1.0:
|
4580
|
-
version "1.1.
|
4581
|
-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.
|
4582
|
-
integrity sha512-
|
4518
|
+
version "1.1.1"
|
4519
|
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
|
4520
|
+
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
|
4583
4521
|
dependencies:
|
4584
4522
|
define-properties "^1.1.3"
|
4585
|
-
es-abstract "^1.
|
4523
|
+
es-abstract "^1.17.0-next.1"
|
4586
4524
|
function-bind "^1.1.1"
|
4587
4525
|
has "^1.0.3"
|
4588
4526
|
|
@@ -4637,24 +4575,11 @@ os-filter-obj@^2.0.0:
|
|
4637
4575
|
dependencies:
|
4638
4576
|
arch "^2.1.0"
|
4639
4577
|
|
4640
|
-
os-
|
4641
|
-
version "1.0.2"
|
4642
|
-
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
4643
|
-
integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
|
4644
|
-
|
4645
|
-
os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
|
4578
|
+
os-tmpdir@~1.0.2:
|
4646
4579
|
version "1.0.2"
|
4647
4580
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
4648
4581
|
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
|
4649
4582
|
|
4650
|
-
osenv@^0.1.4:
|
4651
|
-
version "0.1.5"
|
4652
|
-
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
|
4653
|
-
integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
|
4654
|
-
dependencies:
|
4655
|
-
os-homedir "^1.0.0"
|
4656
|
-
os-tmpdir "^1.0.0"
|
4657
|
-
|
4658
4583
|
p-cancelable@^0.3.0:
|
4659
4584
|
version "0.3.0"
|
4660
4585
|
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
|
@@ -4697,9 +4622,9 @@ p-limit@^1.1.0:
|
|
4697
4622
|
p-try "^1.0.0"
|
4698
4623
|
|
4699
4624
|
p-limit@^2.0.0:
|
4700
|
-
version "2.
|
4701
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.
|
4702
|
-
integrity sha512
|
4625
|
+
version "2.3.0"
|
4626
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
4627
|
+
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
4703
4628
|
dependencies:
|
4704
4629
|
p-try "^2.0.0"
|
4705
4630
|
|
@@ -4846,11 +4771,6 @@ performance-now@^2.1.0:
|
|
4846
4771
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
4847
4772
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
4848
4773
|
|
4849
|
-
picomatch@^2.0.4:
|
4850
|
-
version "2.0.7"
|
4851
|
-
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6"
|
4852
|
-
integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==
|
4853
|
-
|
4854
4774
|
pify@^2.0.0, pify@^2.2.0, pify@^2.3.0:
|
4855
4775
|
version "2.3.0"
|
4856
4776
|
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
@@ -4892,21 +4812,21 @@ pkg-dir@^3.0.0:
|
|
4892
4812
|
dependencies:
|
4893
4813
|
find-up "^3.0.0"
|
4894
4814
|
|
4895
|
-
pkg-up@2.0.0:
|
4815
|
+
pkg-up@2.0.0, pkg-up@^2.0.0:
|
4896
4816
|
version "2.0.0"
|
4897
4817
|
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
|
4898
4818
|
integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
|
4899
4819
|
dependencies:
|
4900
4820
|
find-up "^2.1.0"
|
4901
4821
|
|
4902
|
-
portfinder@^1.0.
|
4903
|
-
version "1.0.
|
4904
|
-
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.
|
4905
|
-
integrity sha512-
|
4822
|
+
portfinder@^1.0.25:
|
4823
|
+
version "1.0.25"
|
4824
|
+
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca"
|
4825
|
+
integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==
|
4906
4826
|
dependencies:
|
4907
|
-
async "^
|
4908
|
-
debug "^
|
4909
|
-
mkdirp "0.5.
|
4827
|
+
async "^2.6.2"
|
4828
|
+
debug "^3.1.1"
|
4829
|
+
mkdirp "^0.5.1"
|
4910
4830
|
|
4911
4831
|
posix-character-classes@^0.1.0:
|
4912
4832
|
version "0.1.1"
|
@@ -4914,14 +4834,13 @@ posix-character-classes@^0.1.0:
|
|
4914
4834
|
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
4915
4835
|
|
4916
4836
|
postcss-calc@^7.0.1:
|
4917
|
-
version "7.0.
|
4918
|
-
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.
|
4919
|
-
integrity sha512-
|
4837
|
+
version "7.0.2"
|
4838
|
+
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1"
|
4839
|
+
integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ==
|
4920
4840
|
dependencies:
|
4921
|
-
|
4922
|
-
postcss "^
|
4923
|
-
postcss-
|
4924
|
-
postcss-value-parser "^3.3.1"
|
4841
|
+
postcss "^7.0.27"
|
4842
|
+
postcss-selector-parser "^6.0.2"
|
4843
|
+
postcss-value-parser "^4.0.2"
|
4925
4844
|
|
4926
4845
|
postcss-colormin@^4.0.3:
|
4927
4846
|
version "4.0.3"
|
@@ -5143,20 +5062,20 @@ postcss-reduce-transforms@^4.0.2:
|
|
5143
5062
|
postcss-value-parser "^3.0.0"
|
5144
5063
|
|
5145
5064
|
postcss-selector-parser@^3.0.0:
|
5146
|
-
version "3.1.
|
5147
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.
|
5148
|
-
integrity
|
5065
|
+
version "3.1.2"
|
5066
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
|
5067
|
+
integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
|
5149
5068
|
dependencies:
|
5150
|
-
dot-prop "^
|
5069
|
+
dot-prop "^5.2.0"
|
5151
5070
|
indexes-of "^1.0.1"
|
5152
5071
|
uniq "^1.0.1"
|
5153
5072
|
|
5154
|
-
postcss-selector-parser@^
|
5155
|
-
version "
|
5156
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-
|
5157
|
-
integrity sha512-
|
5073
|
+
postcss-selector-parser@^6.0.2:
|
5074
|
+
version "6.0.2"
|
5075
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
5076
|
+
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
5158
5077
|
dependencies:
|
5159
|
-
cssesc "^
|
5078
|
+
cssesc "^3.0.0"
|
5160
5079
|
indexes-of "^1.0.1"
|
5161
5080
|
uniq "^1.0.1"
|
5162
5081
|
|
@@ -5179,20 +5098,20 @@ postcss-unique-selectors@^4.0.1:
|
|
5179
5098
|
postcss "^7.0.0"
|
5180
5099
|
uniqs "^2.0.0"
|
5181
5100
|
|
5182
|
-
postcss-value-parser@^3.0.0
|
5101
|
+
postcss-value-parser@^3.0.0:
|
5183
5102
|
version "3.3.1"
|
5184
5103
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
|
5185
5104
|
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
|
5186
5105
|
|
5187
|
-
postcss-value-parser@^4.0.0:
|
5188
|
-
version "4.0.
|
5189
|
-
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.
|
5190
|
-
integrity sha512-
|
5106
|
+
postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3:
|
5107
|
+
version "4.0.3"
|
5108
|
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d"
|
5109
|
+
integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==
|
5191
5110
|
|
5192
|
-
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.
|
5193
|
-
version "7.0.
|
5194
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
5195
|
-
integrity sha512
|
5111
|
+
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27:
|
5112
|
+
version "7.0.27"
|
5113
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
|
5114
|
+
integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
|
5196
5115
|
dependencies:
|
5197
5116
|
chalk "^2.4.2"
|
5198
5117
|
source-map "^0.6.1"
|
@@ -5209,13 +5128,13 @@ prepend-http@^2.0.0:
|
|
5209
5128
|
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
|
5210
5129
|
|
5211
5130
|
prismjs@^1.17.1:
|
5212
|
-
version "1.
|
5213
|
-
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.
|
5214
|
-
integrity sha512-
|
5131
|
+
version "1.21.0"
|
5132
|
+
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3"
|
5133
|
+
integrity sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw==
|
5215
5134
|
optionalDependencies:
|
5216
5135
|
clipboard "^2.0.0"
|
5217
5136
|
|
5218
|
-
private@^0.1.
|
5137
|
+
private@^0.1.8:
|
5219
5138
|
version "0.1.8"
|
5220
5139
|
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
5221
5140
|
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
@@ -5240,22 +5159,22 @@ proto-list@~1.2.1:
|
|
5240
5159
|
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
|
5241
5160
|
|
5242
5161
|
proxy-addr@~2.0.5:
|
5243
|
-
version "2.0.
|
5244
|
-
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.
|
5245
|
-
integrity sha512-
|
5162
|
+
version "2.0.6"
|
5163
|
+
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
|
5164
|
+
integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
|
5246
5165
|
dependencies:
|
5247
5166
|
forwarded "~0.1.2"
|
5248
|
-
ipaddr.js "1.9.
|
5167
|
+
ipaddr.js "1.9.1"
|
5249
5168
|
|
5250
5169
|
pseudomap@^1.0.2:
|
5251
5170
|
version "1.0.2"
|
5252
5171
|
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
5253
5172
|
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
5254
5173
|
|
5255
|
-
psl@^1.1.
|
5256
|
-
version "1.
|
5257
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.
|
5258
|
-
integrity sha512-
|
5174
|
+
psl@^1.1.28:
|
5175
|
+
version "1.8.0"
|
5176
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
5177
|
+
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
|
5259
5178
|
|
5260
5179
|
pump@^3.0.0:
|
5261
5180
|
version "3.0.0"
|
@@ -5265,12 +5184,7 @@ pump@^3.0.0:
|
|
5265
5184
|
end-of-stream "^1.1.0"
|
5266
5185
|
once "^1.3.1"
|
5267
5186
|
|
5268
|
-
punycode@^1.
|
5269
|
-
version "1.4.1"
|
5270
|
-
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
5271
|
-
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
|
5272
|
-
|
5273
|
-
punycode@^2.1.0:
|
5187
|
+
punycode@^2.1.0, punycode@^2.1.1:
|
5274
5188
|
version "2.1.1"
|
5275
5189
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
5276
5190
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
@@ -5286,9 +5200,9 @@ qs@6.7.0:
|
|
5286
5200
|
integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
|
5287
5201
|
|
5288
5202
|
qs@^6.4.0:
|
5289
|
-
version "6.
|
5290
|
-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.
|
5291
|
-
integrity sha512-
|
5203
|
+
version "6.9.3"
|
5204
|
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e"
|
5205
|
+
integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==
|
5292
5206
|
|
5293
5207
|
qs@~6.5.2:
|
5294
5208
|
version "6.5.2"
|
@@ -5341,24 +5255,14 @@ raw-body@~1.1.0:
|
|
5341
5255
|
bytes "1"
|
5342
5256
|
string_decoder "0.10"
|
5343
5257
|
|
5344
|
-
|
5345
|
-
version "1.
|
5346
|
-
resolved "https://registry.yarnpkg.com/
|
5347
|
-
integrity sha512-
|
5348
|
-
dependencies:
|
5349
|
-
deep-extend "^0.6.0"
|
5350
|
-
ini "~1.3.0"
|
5351
|
-
minimist "^1.2.0"
|
5352
|
-
strip-json-comments "~2.0.1"
|
5353
|
-
|
5354
|
-
react-dev-utils@^9.0.1:
|
5355
|
-
version "9.0.3"
|
5356
|
-
resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.0.3.tgz#7607455587abb84599451460eb37cef0b684131a"
|
5357
|
-
integrity sha512-OyInhcwsvycQ3Zr2pQN+HV4gtRXrky5mJXIy4HnqrWa+mI624xfYfqGuC9dYbxp4Qq3YZzP8GSGQjv0AgNU15w==
|
5258
|
+
react-dev-utils@^9.1.0:
|
5259
|
+
version "9.1.0"
|
5260
|
+
resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81"
|
5261
|
+
integrity sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==
|
5358
5262
|
dependencies:
|
5359
5263
|
"@babel/code-frame" "7.5.5"
|
5360
|
-
address "1.1.
|
5361
|
-
browserslist "4.
|
5264
|
+
address "1.1.2"
|
5265
|
+
browserslist "4.7.0"
|
5362
5266
|
chalk "2.4.2"
|
5363
5267
|
cross-spawn "6.0.5"
|
5364
5268
|
detect-port-alt "1.1.6"
|
@@ -5375,37 +5279,37 @@ react-dev-utils@^9.0.1:
|
|
5375
5279
|
loader-utils "1.2.3"
|
5376
5280
|
open "^6.3.0"
|
5377
5281
|
pkg-up "2.0.0"
|
5378
|
-
react-error-overlay "^6.0.
|
5282
|
+
react-error-overlay "^6.0.3"
|
5379
5283
|
recursive-readdir "2.2.2"
|
5380
|
-
shell-quote "1.
|
5381
|
-
sockjs-client "1.
|
5284
|
+
shell-quote "1.7.2"
|
5285
|
+
sockjs-client "1.4.0"
|
5382
5286
|
strip-ansi "5.2.0"
|
5383
5287
|
text-table "0.2.0"
|
5384
5288
|
|
5385
5289
|
react-dom@^16.8.4:
|
5386
|
-
version "16.
|
5387
|
-
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.
|
5388
|
-
integrity sha512-
|
5290
|
+
version "16.13.1"
|
5291
|
+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
|
5292
|
+
integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==
|
5389
5293
|
dependencies:
|
5390
5294
|
loose-envify "^1.1.0"
|
5391
5295
|
object-assign "^4.1.1"
|
5392
5296
|
prop-types "^15.6.2"
|
5393
|
-
scheduler "^0.
|
5297
|
+
scheduler "^0.19.1"
|
5394
5298
|
|
5395
|
-
react-error-overlay@^6.0.
|
5396
|
-
version "6.0.
|
5397
|
-
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.
|
5398
|
-
integrity sha512-
|
5299
|
+
react-error-overlay@^6.0.3:
|
5300
|
+
version "6.0.7"
|
5301
|
+
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108"
|
5302
|
+
integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==
|
5399
5303
|
|
5400
5304
|
react-is@^16.8.1:
|
5401
|
-
version "16.
|
5402
|
-
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.
|
5403
|
-
integrity sha512-
|
5305
|
+
version "16.13.1"
|
5306
|
+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
5307
|
+
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
5404
5308
|
|
5405
5309
|
react@^16.8.4:
|
5406
|
-
version "16.
|
5407
|
-
resolved "https://registry.yarnpkg.com/react/-/react-16.
|
5408
|
-
integrity sha512
|
5310
|
+
version "16.13.1"
|
5311
|
+
resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
|
5312
|
+
integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==
|
5409
5313
|
dependencies:
|
5410
5314
|
loose-envify "^1.1.0"
|
5411
5315
|
object-assign "^4.1.1"
|
@@ -5428,10 +5332,10 @@ read-pkg@^1.0.0:
|
|
5428
5332
|
normalize-package-data "^2.3.2"
|
5429
5333
|
path-type "^1.0.0"
|
5430
5334
|
|
5431
|
-
readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.
|
5432
|
-
version "2.3.
|
5433
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.
|
5434
|
-
integrity sha512-
|
5335
|
+
readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6:
|
5336
|
+
version "2.3.7"
|
5337
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
|
5338
|
+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
|
5435
5339
|
dependencies:
|
5436
5340
|
core-util-is "~1.0.0"
|
5437
5341
|
inherits "~2.0.3"
|
@@ -5442,9 +5346,9 @@ readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable
|
|
5442
5346
|
util-deprecate "~1.0.1"
|
5443
5347
|
|
5444
5348
|
readable-stream@^3.1.1:
|
5445
|
-
version "3.
|
5446
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.
|
5447
|
-
integrity sha512-
|
5349
|
+
version "3.6.0"
|
5350
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
|
5351
|
+
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
|
5448
5352
|
dependencies:
|
5449
5353
|
inherits "^2.0.3"
|
5450
5354
|
string_decoder "^1.1.1"
|
@@ -5459,13 +5363,6 @@ readdirp@^2.2.1:
|
|
5459
5363
|
micromatch "^3.1.10"
|
5460
5364
|
readable-stream "^2.0.2"
|
5461
5365
|
|
5462
|
-
readdirp@^3.1.1:
|
5463
|
-
version "3.1.2"
|
5464
|
-
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.1.2.tgz#fa85d2d14d4289920e4671dead96431add2ee78a"
|
5465
|
-
integrity sha512-8rhl0xs2cxfVsqzreYCvs8EwBfn/DhVdqtoLmw19uI3SC5avYX9teCurlErfpPXGmYtMHReGaP2RsLnFvz/lnw==
|
5466
|
-
dependencies:
|
5467
|
-
picomatch "^2.0.4"
|
5468
|
-
|
5469
5366
|
rechoir@^0.6.2:
|
5470
5367
|
version "0.6.2"
|
5471
5368
|
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
@@ -5488,10 +5385,10 @@ redent@^1.0.0:
|
|
5488
5385
|
indent-string "^2.1.0"
|
5489
5386
|
strip-indent "^1.0.1"
|
5490
5387
|
|
5491
|
-
regenerate-unicode-properties@^8.
|
5492
|
-
version "8.
|
5493
|
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.
|
5494
|
-
integrity sha512-
|
5388
|
+
regenerate-unicode-properties@^8.2.0:
|
5389
|
+
version "8.2.0"
|
5390
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
|
5391
|
+
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
|
5495
5392
|
dependencies:
|
5496
5393
|
regenerate "^1.4.0"
|
5497
5394
|
|
@@ -5500,17 +5397,18 @@ regenerate@^1.4.0:
|
|
5500
5397
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
5501
5398
|
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
|
5502
5399
|
|
5503
|
-
regenerator-runtime@^0.13.
|
5504
|
-
version "0.13.
|
5505
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.
|
5506
|
-
integrity sha512-
|
5400
|
+
regenerator-runtime@^0.13.4:
|
5401
|
+
version "0.13.5"
|
5402
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
|
5403
|
+
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
|
5507
5404
|
|
5508
|
-
regenerator-transform@^0.14.
|
5509
|
-
version "0.14.
|
5510
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.
|
5511
|
-
integrity sha512-
|
5405
|
+
regenerator-transform@^0.14.2:
|
5406
|
+
version "0.14.4"
|
5407
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7"
|
5408
|
+
integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==
|
5512
5409
|
dependencies:
|
5513
|
-
|
5410
|
+
"@babel/runtime" "^7.8.4"
|
5411
|
+
private "^0.1.8"
|
5514
5412
|
|
5515
5413
|
regex-not@^1.0.0, regex-not@^1.0.2:
|
5516
5414
|
version "1.0.2"
|
@@ -5520,36 +5418,31 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
5520
5418
|
extend-shallow "^3.0.2"
|
5521
5419
|
safe-regex "^1.1.0"
|
5522
5420
|
|
5523
|
-
|
5524
|
-
version "
|
5525
|
-
resolved "https://registry.yarnpkg.com/
|
5526
|
-
integrity sha512-
|
5527
|
-
|
5528
|
-
regexpu-core@^4.5.4:
|
5529
|
-
version "4.6.0"
|
5530
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
|
5531
|
-
integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
|
5421
|
+
regexpu-core@^4.7.0:
|
5422
|
+
version "4.7.0"
|
5423
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
|
5424
|
+
integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==
|
5532
5425
|
dependencies:
|
5533
5426
|
regenerate "^1.4.0"
|
5534
|
-
regenerate-unicode-properties "^8.
|
5535
|
-
regjsgen "^0.5.
|
5536
|
-
regjsparser "^0.6.
|
5427
|
+
regenerate-unicode-properties "^8.2.0"
|
5428
|
+
regjsgen "^0.5.1"
|
5429
|
+
regjsparser "^0.6.4"
|
5537
5430
|
unicode-match-property-ecmascript "^1.0.4"
|
5538
|
-
unicode-match-property-value-ecmascript "^1.
|
5431
|
+
unicode-match-property-value-ecmascript "^1.2.0"
|
5539
5432
|
|
5540
|
-
regjsgen@^0.5.
|
5541
|
-
version "0.5.
|
5542
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.
|
5543
|
-
integrity sha512-
|
5433
|
+
regjsgen@^0.5.1:
|
5434
|
+
version "0.5.1"
|
5435
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
|
5436
|
+
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
|
5544
5437
|
|
5545
|
-
regjsparser@^0.6.
|
5546
|
-
version "0.6.
|
5547
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.
|
5548
|
-
integrity sha512-
|
5438
|
+
regjsparser@^0.6.4:
|
5439
|
+
version "0.6.4"
|
5440
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
|
5441
|
+
integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
|
5549
5442
|
dependencies:
|
5550
5443
|
jsesc "~0.5.0"
|
5551
5444
|
|
5552
|
-
remarkable@^1.7.1
|
5445
|
+
remarkable@^1.7.1:
|
5553
5446
|
version "1.7.4"
|
5554
5447
|
resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.4.tgz#19073cb960398c87a7d6546eaa5e50d2022fcd00"
|
5555
5448
|
integrity sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==
|
@@ -5557,6 +5450,14 @@ remarkable@^1.7.1, remarkable@^1.7.4:
|
|
5557
5450
|
argparse "^1.0.10"
|
5558
5451
|
autolinker "~0.28.0"
|
5559
5452
|
|
5453
|
+
remarkable@^2.0.0:
|
5454
|
+
version "2.0.0"
|
5455
|
+
resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-2.0.0.tgz#795f965bede8300362ce51a716edc322d9e7a4ca"
|
5456
|
+
integrity sha512-3gvKFAgL4xmmVRKAMNm6UzDo/rO2gPVkZrWagp6AXEA4JvCcMcRx9aapYbb7AJAmLLvi/u06+EhzqoS7ha9qOg==
|
5457
|
+
dependencies:
|
5458
|
+
argparse "^1.0.10"
|
5459
|
+
autolinker "^3.11.0"
|
5460
|
+
|
5560
5461
|
remove-trailing-separator@^1.0.1:
|
5561
5462
|
version "1.1.0"
|
5562
5463
|
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
|
@@ -5585,9 +5486,9 @@ replace-ext@^1.0.0:
|
|
5585
5486
|
integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
|
5586
5487
|
|
5587
5488
|
request@^2.53.0, request@^2.88.0:
|
5588
|
-
version "2.88.
|
5589
|
-
resolved "https://registry.yarnpkg.com/request/-/request-2.88.
|
5590
|
-
integrity sha512-
|
5489
|
+
version "2.88.2"
|
5490
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
|
5491
|
+
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
|
5591
5492
|
dependencies:
|
5592
5493
|
aws-sign2 "~0.7.0"
|
5593
5494
|
aws4 "^1.8.0"
|
@@ -5596,7 +5497,7 @@ request@^2.53.0, request@^2.88.0:
|
|
5596
5497
|
extend "~3.0.2"
|
5597
5498
|
forever-agent "~0.6.1"
|
5598
5499
|
form-data "~2.3.2"
|
5599
|
-
har-validator "~5.1.
|
5500
|
+
har-validator "~5.1.3"
|
5600
5501
|
http-signature "~1.2.0"
|
5601
5502
|
is-typedarray "~1.0.0"
|
5602
5503
|
isstream "~0.1.2"
|
@@ -5606,7 +5507,7 @@ request@^2.53.0, request@^2.88.0:
|
|
5606
5507
|
performance-now "^2.1.0"
|
5607
5508
|
qs "~6.5.2"
|
5608
5509
|
safe-buffer "^5.1.2"
|
5609
|
-
tough-cookie "~2.
|
5510
|
+
tough-cookie "~2.5.0"
|
5610
5511
|
tunnel-agent "^0.6.0"
|
5611
5512
|
uuid "^3.3.2"
|
5612
5513
|
|
@@ -5626,9 +5527,9 @@ resolve-url@^0.2.1:
|
|
5626
5527
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
5627
5528
|
|
5628
5529
|
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2:
|
5629
|
-
version "1.
|
5630
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
5631
|
-
integrity sha512-
|
5530
|
+
version "1.16.1"
|
5531
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.16.1.tgz#49fac5d8bacf1fd53f200fa51247ae736175832c"
|
5532
|
+
integrity sha512-rmAglCSqWWMrrBv/XM6sW0NuRFiKViw/W4d9EbC4pt+49H8JwHy+mcGmALTEg504AUDcLTvb1T2q3E9AnmY+ig==
|
5632
5533
|
dependencies:
|
5633
5534
|
path-parse "^1.0.6"
|
5634
5535
|
|
@@ -5662,7 +5563,7 @@ rgba-regex@^1.0.0:
|
|
5662
5563
|
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
|
5663
5564
|
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
|
5664
5565
|
|
5665
|
-
rimraf@^2.5.4
|
5566
|
+
rimraf@^2.5.4:
|
5666
5567
|
version "2.7.1"
|
5667
5568
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
|
5668
5569
|
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
|
@@ -5670,16 +5571,16 @@ rimraf@^2.5.4, rimraf@^2.6.1:
|
|
5670
5571
|
glob "^7.1.3"
|
5671
5572
|
|
5672
5573
|
run-async@^2.2.0:
|
5673
|
-
version "2.
|
5674
|
-
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.
|
5675
|
-
integrity
|
5574
|
+
version "2.4.0"
|
5575
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8"
|
5576
|
+
integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==
|
5676
5577
|
dependencies:
|
5677
5578
|
is-promise "^2.1.0"
|
5678
5579
|
|
5679
5580
|
rxjs@^6.4.0:
|
5680
|
-
version "6.5.
|
5681
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.
|
5682
|
-
integrity sha512-
|
5581
|
+
version "6.5.5"
|
5582
|
+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec"
|
5583
|
+
integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==
|
5683
5584
|
dependencies:
|
5684
5585
|
tslib "^1.9.0"
|
5685
5586
|
|
@@ -5715,10 +5616,10 @@ sax@^1.2.4, sax@~1.2.4:
|
|
5715
5616
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
5716
5617
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
5717
5618
|
|
5718
|
-
scheduler@^0.
|
5719
|
-
version "0.
|
5720
|
-
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.
|
5721
|
-
integrity sha512-
|
5619
|
+
scheduler@^0.19.1:
|
5620
|
+
version "0.19.1"
|
5621
|
+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
|
5622
|
+
integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
|
5722
5623
|
dependencies:
|
5723
5624
|
loose-envify "^1.1.0"
|
5724
5625
|
object-assign "^4.1.1"
|
@@ -5752,10 +5653,10 @@ semver-truncate@^1.1.2:
|
|
5752
5653
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
5753
5654
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
5754
5655
|
|
5755
|
-
semver
|
5756
|
-
version "
|
5757
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-
|
5758
|
-
integrity sha512
|
5656
|
+
semver@7.0.0:
|
5657
|
+
version "7.0.0"
|
5658
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
5659
|
+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
5759
5660
|
|
5760
5661
|
send@0.17.1:
|
5761
5662
|
version "0.17.1"
|
@@ -5786,11 +5687,6 @@ serve-static@1.14.1:
|
|
5786
5687
|
parseurl "~1.3.3"
|
5787
5688
|
send "0.17.1"
|
5788
5689
|
|
5789
|
-
set-blocking@~2.0.0:
|
5790
|
-
version "2.0.0"
|
5791
|
-
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
5792
|
-
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
|
5793
|
-
|
5794
5690
|
set-getter@^0.1.0:
|
5795
5691
|
version "0.1.0"
|
5796
5692
|
resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376"
|
@@ -5825,15 +5721,10 @@ shebang-regex@^1.0.0:
|
|
5825
5721
|
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
5826
5722
|
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
5827
5723
|
|
5828
|
-
shell-quote@1.
|
5829
|
-
version "1.
|
5830
|
-
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.
|
5831
|
-
integrity
|
5832
|
-
dependencies:
|
5833
|
-
array-filter "~0.0.0"
|
5834
|
-
array-map "~0.0.0"
|
5835
|
-
array-reduce "~0.0.0"
|
5836
|
-
jsonify "~0.0.0"
|
5724
|
+
shell-quote@1.7.2:
|
5725
|
+
version "1.7.2"
|
5726
|
+
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
|
5727
|
+
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
|
5837
5728
|
|
5838
5729
|
shelljs@^0.8.3:
|
5839
5730
|
version "0.8.3"
|
@@ -5845,9 +5736,9 @@ shelljs@^0.8.3:
|
|
5845
5736
|
rechoir "^0.6.2"
|
5846
5737
|
|
5847
5738
|
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
5848
|
-
version "3.0.
|
5849
|
-
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.
|
5850
|
-
integrity
|
5739
|
+
version "3.0.3"
|
5740
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
5741
|
+
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
5851
5742
|
|
5852
5743
|
simple-swizzle@^0.2.2:
|
5853
5744
|
version "0.2.2"
|
@@ -5901,10 +5792,10 @@ snapdragon@^0.8.1:
|
|
5901
5792
|
source-map-resolve "^0.5.0"
|
5902
5793
|
use "^3.1.0"
|
5903
5794
|
|
5904
|
-
sockjs-client@1.
|
5905
|
-
version "1.
|
5906
|
-
resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.
|
5907
|
-
integrity sha512-
|
5795
|
+
sockjs-client@1.4.0:
|
5796
|
+
version "1.4.0"
|
5797
|
+
resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"
|
5798
|
+
integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==
|
5908
5799
|
dependencies:
|
5909
5800
|
debug "^3.2.5"
|
5910
5801
|
eventsource "^1.0.7"
|
@@ -5935,20 +5826,20 @@ sort-keys@^2.0.0:
|
|
5935
5826
|
is-plain-obj "^1.0.0"
|
5936
5827
|
|
5937
5828
|
source-map-resolve@^0.5.0:
|
5938
|
-
version "0.5.
|
5939
|
-
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.
|
5940
|
-
integrity sha512-
|
5829
|
+
version "0.5.3"
|
5830
|
+
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
|
5831
|
+
integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
|
5941
5832
|
dependencies:
|
5942
|
-
atob "^2.1.
|
5833
|
+
atob "^2.1.2"
|
5943
5834
|
decode-uri-component "^0.2.0"
|
5944
5835
|
resolve-url "^0.2.1"
|
5945
5836
|
source-map-url "^0.4.0"
|
5946
5837
|
urix "^0.1.0"
|
5947
5838
|
|
5948
|
-
source-map-support@^0.5.
|
5949
|
-
version "0.5.
|
5950
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
5951
|
-
integrity sha512-
|
5839
|
+
source-map-support@^0.5.16:
|
5840
|
+
version "0.5.17"
|
5841
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.17.tgz#29fe1b3c98b9dbd5064ada89052ee8ff070cb46c"
|
5842
|
+
integrity sha512-bwdKOBZ5L0gFRh4KOxNap/J/MpvX9Yxsq9lFDx65s3o7F/NiHy7JRaGIS8MwW6tZPAq9UXE207Il0cfcb5yu/Q==
|
5952
5843
|
dependencies:
|
5953
5844
|
buffer-from "^1.0.0"
|
5954
5845
|
source-map "^0.6.0"
|
@@ -5958,7 +5849,7 @@ source-map-url@^0.4.0:
|
|
5958
5849
|
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
|
5959
5850
|
integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
|
5960
5851
|
|
5961
|
-
source-map@^0.5.0, source-map@^0.5.
|
5852
|
+
source-map@^0.5.0, source-map@^0.5.6:
|
5962
5853
|
version "0.5.7"
|
5963
5854
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
5964
5855
|
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
@@ -5977,9 +5868,9 @@ spdx-correct@^3.0.0:
|
|
5977
5868
|
spdx-license-ids "^3.0.0"
|
5978
5869
|
|
5979
5870
|
spdx-exceptions@^2.1.0:
|
5980
|
-
version "2.
|
5981
|
-
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.
|
5982
|
-
integrity sha512
|
5871
|
+
version "2.3.0"
|
5872
|
+
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
|
5873
|
+
integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
|
5983
5874
|
|
5984
5875
|
spdx-expression-parse@^3.0.0:
|
5985
5876
|
version "3.0.0"
|
@@ -6058,16 +5949,7 @@ string-template@~0.2.1:
|
|
6058
5949
|
resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
|
6059
5950
|
integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=
|
6060
5951
|
|
6061
|
-
string-width@^1.0
|
6062
|
-
version "1.0.2"
|
6063
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
6064
|
-
integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
|
6065
|
-
dependencies:
|
6066
|
-
code-point-at "^1.0.0"
|
6067
|
-
is-fullwidth-code-point "^1.0.0"
|
6068
|
-
strip-ansi "^3.0.0"
|
6069
|
-
|
6070
|
-
"string-width@^1.0.2 || 2", string-width@^2.1.0:
|
5952
|
+
string-width@^2.1.0:
|
6071
5953
|
version "2.1.1"
|
6072
5954
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
6073
5955
|
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
|
@@ -6075,21 +5957,39 @@ string-width@^1.0.1:
|
|
6075
5957
|
is-fullwidth-code-point "^2.0.0"
|
6076
5958
|
strip-ansi "^4.0.0"
|
6077
5959
|
|
6078
|
-
string.prototype.
|
6079
|
-
version "
|
6080
|
-
resolved "https://registry.yarnpkg.com/string.prototype.
|
6081
|
-
integrity sha512-
|
5960
|
+
string.prototype.trimend@^1.0.0:
|
5961
|
+
version "1.0.1"
|
5962
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
|
5963
|
+
integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
|
6082
5964
|
dependencies:
|
6083
5965
|
define-properties "^1.1.3"
|
6084
|
-
|
5966
|
+
es-abstract "^1.17.5"
|
6085
5967
|
|
6086
|
-
string.prototype.
|
6087
|
-
version "2.1.
|
6088
|
-
resolved "https://registry.yarnpkg.com/string.prototype.
|
6089
|
-
integrity sha512-
|
5968
|
+
string.prototype.trimleft@^2.1.1:
|
5969
|
+
version "2.1.2"
|
5970
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc"
|
5971
|
+
integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==
|
6090
5972
|
dependencies:
|
6091
5973
|
define-properties "^1.1.3"
|
6092
|
-
|
5974
|
+
es-abstract "^1.17.5"
|
5975
|
+
string.prototype.trimstart "^1.0.0"
|
5976
|
+
|
5977
|
+
string.prototype.trimright@^2.1.1:
|
5978
|
+
version "2.1.2"
|
5979
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3"
|
5980
|
+
integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==
|
5981
|
+
dependencies:
|
5982
|
+
define-properties "^1.1.3"
|
5983
|
+
es-abstract "^1.17.5"
|
5984
|
+
string.prototype.trimend "^1.0.0"
|
5985
|
+
|
5986
|
+
string.prototype.trimstart@^1.0.0:
|
5987
|
+
version "1.0.1"
|
5988
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"
|
5989
|
+
integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==
|
5990
|
+
dependencies:
|
5991
|
+
define-properties "^1.1.3"
|
5992
|
+
es-abstract "^1.17.5"
|
6093
5993
|
|
6094
5994
|
string_decoder@0.10:
|
6095
5995
|
version "0.10.31"
|
@@ -6117,7 +6017,7 @@ strip-ansi@5.2.0, strip-ansi@^5.1.0:
|
|
6117
6017
|
dependencies:
|
6118
6018
|
ansi-regex "^4.1.0"
|
6119
6019
|
|
6120
|
-
strip-ansi@^3.0.0
|
6020
|
+
strip-ansi@^3.0.0:
|
6121
6021
|
version "3.0.1"
|
6122
6022
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
6123
6023
|
integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
|
@@ -6162,11 +6062,6 @@ strip-indent@^1.0.1:
|
|
6162
6062
|
dependencies:
|
6163
6063
|
get-stdin "^4.0.1"
|
6164
6064
|
|
6165
|
-
strip-json-comments@~2.0.1:
|
6166
|
-
version "2.0.1"
|
6167
|
-
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
6168
|
-
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
6169
|
-
|
6170
6065
|
strip-outer@^1.0.0:
|
6171
6066
|
version "1.0.1"
|
6172
6067
|
resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631"
|
@@ -6174,11 +6069,6 @@ strip-outer@^1.0.0:
|
|
6174
6069
|
dependencies:
|
6175
6070
|
escape-string-regexp "^1.0.2"
|
6176
6071
|
|
6177
|
-
striptags@^3.1.1:
|
6178
|
-
version "3.1.1"
|
6179
|
-
resolved "https://registry.yarnpkg.com/striptags/-/striptags-3.1.1.tgz#c8c3e7fdd6fb4bb3a32a3b752e5b5e3e38093ebd"
|
6180
|
-
integrity sha1-yMPn/db7S7OjKjt1LltePjgJPr0=
|
6181
|
-
|
6182
6072
|
stylehacks@^4.0.0:
|
6183
6073
|
version "4.0.3"
|
6184
6074
|
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
|
@@ -6207,17 +6097,24 @@ supports-color@^6.1.0:
|
|
6207
6097
|
dependencies:
|
6208
6098
|
has-flag "^3.0.0"
|
6209
6099
|
|
6210
|
-
|
6211
|
-
version "1.
|
6212
|
-
resolved "https://registry.yarnpkg.com/
|
6213
|
-
integrity sha512-
|
6100
|
+
supports-color@^7.1.0:
|
6101
|
+
version "7.1.0"
|
6102
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
|
6103
|
+
integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
|
6104
|
+
dependencies:
|
6105
|
+
has-flag "^4.0.0"
|
6106
|
+
|
6107
|
+
svgo@^1.0.0, svgo@^1.3.2:
|
6108
|
+
version "1.3.2"
|
6109
|
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
6110
|
+
integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
|
6214
6111
|
dependencies:
|
6215
6112
|
chalk "^2.4.1"
|
6216
6113
|
coa "^2.0.2"
|
6217
6114
|
css-select "^2.0.0"
|
6218
6115
|
css-select-base-adapter "^0.1.1"
|
6219
|
-
css-tree "1.0.0-alpha.
|
6220
|
-
csso "^
|
6116
|
+
css-tree "1.0.0-alpha.37"
|
6117
|
+
csso "^4.0.2"
|
6221
6118
|
js-yaml "^3.13.1"
|
6222
6119
|
mkdirp "~0.5.1"
|
6223
6120
|
object.values "^1.1.0"
|
@@ -6244,19 +6141,6 @@ tar-stream@^1.5.2:
|
|
6244
6141
|
to-buffer "^1.1.1"
|
6245
6142
|
xtend "^4.0.0"
|
6246
6143
|
|
6247
|
-
tar@^4:
|
6248
|
-
version "4.4.10"
|
6249
|
-
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1"
|
6250
|
-
integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==
|
6251
|
-
dependencies:
|
6252
|
-
chownr "^1.1.1"
|
6253
|
-
fs-minipass "^1.2.5"
|
6254
|
-
minipass "^2.3.5"
|
6255
|
-
minizlib "^1.2.1"
|
6256
|
-
mkdirp "^0.5.0"
|
6257
|
-
safe-buffer "^5.1.2"
|
6258
|
-
yallist "^3.0.3"
|
6259
|
-
|
6260
6144
|
tcp-port-used@^1.0.1:
|
6261
6145
|
version "1.0.1"
|
6262
6146
|
resolved "https://registry.yarnpkg.com/tcp-port-used/-/tcp-port-used-1.0.1.tgz#46061078e2d38c73979a2c2c12b5a674e6689d70"
|
@@ -6355,13 +6239,6 @@ to-regex-range@^2.1.0:
|
|
6355
6239
|
is-number "^3.0.0"
|
6356
6240
|
repeat-string "^1.6.1"
|
6357
6241
|
|
6358
|
-
to-regex-range@^5.0.1:
|
6359
|
-
version "5.0.1"
|
6360
|
-
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
6361
|
-
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
6362
|
-
dependencies:
|
6363
|
-
is-number "^7.0.0"
|
6364
|
-
|
6365
6242
|
to-regex@^3.0.1, to-regex@^3.0.2:
|
6366
6243
|
version "3.0.2"
|
6367
6244
|
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
|
@@ -6382,13 +6259,13 @@ toml@^2.3.2:
|
|
6382
6259
|
resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.6.tgz#25b0866483a9722474895559088b436fd11f861b"
|
6383
6260
|
integrity sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==
|
6384
6261
|
|
6385
|
-
tough-cookie@~2.
|
6386
|
-
version "2.
|
6387
|
-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.
|
6388
|
-
integrity sha512-
|
6262
|
+
tough-cookie@~2.5.0:
|
6263
|
+
version "2.5.0"
|
6264
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
6265
|
+
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
6389
6266
|
dependencies:
|
6390
|
-
psl "^1.1.
|
6391
|
-
punycode "^1.
|
6267
|
+
psl "^1.1.28"
|
6268
|
+
punycode "^2.1.1"
|
6392
6269
|
|
6393
6270
|
tr46@^1.0.1:
|
6394
6271
|
version "1.0.1"
|
@@ -6398,11 +6275,11 @@ tr46@^1.0.1:
|
|
6398
6275
|
punycode "^2.1.0"
|
6399
6276
|
|
6400
6277
|
tree-node-cli@^1.2.5:
|
6401
|
-
version "1.
|
6402
|
-
resolved "https://registry.yarnpkg.com/tree-node-cli/-/tree-node-cli-1.
|
6403
|
-
integrity sha512-
|
6278
|
+
version "1.3.0"
|
6279
|
+
resolved "https://registry.yarnpkg.com/tree-node-cli/-/tree-node-cli-1.3.0.tgz#f7c03e4d14c7b7c42412d3d2a605940102f192cd"
|
6280
|
+
integrity sha512-7B5IvFiDQMnBjmxHQ4YMdIqklofqla1mINa/ddlxUHC4seEJHdig19C49NONVHmAom/O9dByGvN0PLReCCqqqQ==
|
6404
6281
|
dependencies:
|
6405
|
-
commander "^
|
6282
|
+
commander "^5.0.0"
|
6406
6283
|
|
6407
6284
|
trim-newlines@^1.0.0:
|
6408
6285
|
version "1.0.0"
|
@@ -6416,12 +6293,7 @@ trim-repeated@^1.0.0:
|
|
6416
6293
|
dependencies:
|
6417
6294
|
escape-string-regexp "^1.0.2"
|
6418
6295
|
|
6419
|
-
|
6420
|
-
version "1.0.1"
|
6421
|
-
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
6422
|
-
integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
|
6423
|
-
|
6424
|
-
truncate-html@^1.0.2:
|
6296
|
+
truncate-html@^1.0.3:
|
6425
6297
|
version "1.0.3"
|
6426
6298
|
resolved "https://registry.yarnpkg.com/truncate-html/-/truncate-html-1.0.3.tgz#0166dfc7890626130c2e4174c6b73d4d63993e5f"
|
6427
6299
|
integrity sha512-1o1prdRv+iehXcGwn29YgXU17DotHkr+OK3ijVEG7FGMwHNG9RyobXwimw6djDvbIc24rhmz3tjNNvNESjkNkQ==
|
@@ -6429,10 +6301,10 @@ truncate-html@^1.0.2:
|
|
6429
6301
|
"@types/cheerio" "^0.22.8"
|
6430
6302
|
cheerio "0.22.0"
|
6431
6303
|
|
6432
|
-
tslib@^1.9.0:
|
6433
|
-
version "1.
|
6434
|
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.
|
6435
|
-
integrity sha512-
|
6304
|
+
tslib@^1.9.0, tslib@^1.9.3:
|
6305
|
+
version "1.11.1"
|
6306
|
+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
|
6307
|
+
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
|
6436
6308
|
|
6437
6309
|
tunnel-agent@^0.6.0:
|
6438
6310
|
version "0.6.0"
|
@@ -6460,9 +6332,9 @@ typedarray@^0.0.6:
|
|
6460
6332
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
6461
6333
|
|
6462
6334
|
unbzip2-stream@^1.0.9:
|
6463
|
-
version "1.
|
6464
|
-
resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.
|
6465
|
-
integrity sha512-
|
6335
|
+
version "1.4.1"
|
6336
|
+
resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.1.tgz#151b104af853df3efdaa135d8b1eca850a44b426"
|
6337
|
+
integrity sha512-sgDYfSDPMsA4Hr2/w7vOlrJBlwzmyakk1+hW8ObLvxSp0LA36LcL2XItGvOT3OSblohSdevMuT8FQjLsqyy4sA==
|
6466
6338
|
dependencies:
|
6467
6339
|
buffer "^5.2.1"
|
6468
6340
|
through "^2.3.8"
|
@@ -6480,15 +6352,15 @@ unicode-match-property-ecmascript@^1.0.4:
|
|
6480
6352
|
unicode-canonical-property-names-ecmascript "^1.0.4"
|
6481
6353
|
unicode-property-aliases-ecmascript "^1.0.4"
|
6482
6354
|
|
6483
|
-
unicode-match-property-value-ecmascript@^1.
|
6484
|
-
version "1.
|
6485
|
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.
|
6486
|
-
integrity sha512-
|
6355
|
+
unicode-match-property-value-ecmascript@^1.2.0:
|
6356
|
+
version "1.2.0"
|
6357
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
|
6358
|
+
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
|
6487
6359
|
|
6488
6360
|
unicode-property-aliases-ecmascript@^1.0.4:
|
6489
|
-
version "1.0
|
6490
|
-
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.
|
6491
|
-
integrity sha512-
|
6361
|
+
version "1.1.0"
|
6362
|
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
|
6363
|
+
integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
|
6492
6364
|
|
6493
6365
|
union-value@^1.0.0:
|
6494
6366
|
version "1.0.1"
|
@@ -6588,12 +6460,14 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1:
|
|
6588
6460
|
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
6589
6461
|
|
6590
6462
|
util.promisify@~1.0.0:
|
6591
|
-
version "1.0.
|
6592
|
-
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.
|
6593
|
-
integrity sha512-
|
6463
|
+
version "1.0.1"
|
6464
|
+
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
|
6465
|
+
integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
|
6594
6466
|
dependencies:
|
6595
|
-
define-properties "^1.1.
|
6596
|
-
|
6467
|
+
define-properties "^1.1.3"
|
6468
|
+
es-abstract "^1.17.2"
|
6469
|
+
has-symbols "^1.0.1"
|
6470
|
+
object.getownpropertydescriptors "^2.1.0"
|
6597
6471
|
|
6598
6472
|
utils-merge@1.0.1:
|
6599
6473
|
version "1.0.1"
|
@@ -6601,9 +6475,9 @@ utils-merge@1.0.1:
|
|
6601
6475
|
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
|
6602
6476
|
|
6603
6477
|
uuid@^3.0.1, uuid@^3.3.2:
|
6604
|
-
version "3.
|
6605
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.
|
6606
|
-
integrity sha512-
|
6478
|
+
version "3.4.0"
|
6479
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
6480
|
+
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
6607
6481
|
|
6608
6482
|
validate-npm-package-license@^3.0.1:
|
6609
6483
|
version "3.0.4"
|
@@ -6619,9 +6493,9 @@ vary@~1.1.2:
|
|
6619
6493
|
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
|
6620
6494
|
|
6621
6495
|
vendors@^1.0.0:
|
6622
|
-
version "1.0.
|
6623
|
-
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.
|
6624
|
-
integrity sha512
|
6496
|
+
version "1.0.4"
|
6497
|
+
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
|
6498
|
+
integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
|
6625
6499
|
|
6626
6500
|
verror@1.10.0:
|
6627
6501
|
version "1.10.0"
|
@@ -6647,14 +6521,14 @@ websocket-driver@>=0.5.1:
|
|
6647
6521
|
websocket-extensions ">=0.1.1"
|
6648
6522
|
|
6649
6523
|
websocket-extensions@>=0.1.1:
|
6650
|
-
version "0.1.
|
6651
|
-
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.
|
6652
|
-
integrity sha512-
|
6524
|
+
version "0.1.4"
|
6525
|
+
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
|
6526
|
+
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
|
6653
6527
|
|
6654
6528
|
whatwg-url@^7.0.0:
|
6655
|
-
version "7.
|
6656
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.
|
6657
|
-
integrity sha512-
|
6529
|
+
version "7.1.0"
|
6530
|
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
|
6531
|
+
integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
|
6658
6532
|
dependencies:
|
6659
6533
|
lodash.sortby "^4.7.0"
|
6660
6534
|
tr46 "^1.0.1"
|
@@ -6667,13 +6541,6 @@ which@^1.2.9, which@^1.3.1:
|
|
6667
6541
|
dependencies:
|
6668
6542
|
isexe "^2.0.0"
|
6669
6543
|
|
6670
|
-
wide-align@^1.1.0:
|
6671
|
-
version "1.1.3"
|
6672
|
-
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
|
6673
|
-
integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
|
6674
|
-
dependencies:
|
6675
|
-
string-width "^1.0.2 || 2"
|
6676
|
-
|
6677
6544
|
wordwrap@0.0.2:
|
6678
6545
|
version "0.0.2"
|
6679
6546
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
|
@@ -6691,10 +6558,12 @@ wrappy@1:
|
|
6691
6558
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
6692
6559
|
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
6693
6560
|
|
6694
|
-
xml@^1.
|
6695
|
-
version "1.
|
6696
|
-
resolved "https://registry.yarnpkg.com/xml/-/xml-1.
|
6697
|
-
integrity
|
6561
|
+
xml-js@^1.6.11:
|
6562
|
+
version "1.6.11"
|
6563
|
+
resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9"
|
6564
|
+
integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==
|
6565
|
+
dependencies:
|
6566
|
+
sax "^1.2.4"
|
6698
6567
|
|
6699
6568
|
xmlbuilder@^13.0.0:
|
6700
6569
|
version "13.0.2"
|
@@ -6711,11 +6580,6 @@ yallist@^2.1.2:
|
|
6711
6580
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
6712
6581
|
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
|
6713
6582
|
|
6714
|
-
yallist@^3.0.0, yallist@^3.0.3:
|
6715
|
-
version "3.0.3"
|
6716
|
-
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
|
6717
|
-
integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==
|
6718
|
-
|
6719
6583
|
yamljs@^0.2.1:
|
6720
6584
|
version "0.2.10"
|
6721
6585
|
resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.2.10.tgz#481cc7c25ca73af59f591f0c96e3ce56c757a40f"
|