Commit f866e4653589467059b469d5beb01d934ab8b2f2
1 parent
23568b31
chore: add test server
Showing
16 changed files
with
1735 additions
and
1616 deletions
build/vite/plugin/mock.ts
package.json
... | ... | @@ -101,7 +101,7 @@ |
101 | 101 | "prettier": "^2.2.1", |
102 | 102 | "pretty-quick": "^3.1.0", |
103 | 103 | "rimraf": "^3.0.2", |
104 | - "rollup-plugin-visualizer": "^4.2.1", | |
104 | + "rollup-plugin-visualizer": "4.2.1", | |
105 | 105 | "stylelint": "^13.12.0", |
106 | 106 | "stylelint-config-prettier": "^8.0.2", |
107 | 107 | "stylelint-config-standard": "^21.0.0", |
... | ... | @@ -112,20 +112,19 @@ |
112 | 112 | "vite-plugin-compression": "^0.2.3", |
113 | 113 | "vite-plugin-html": "^2.0.3", |
114 | 114 | "vite-plugin-imagemin": "^0.2.9", |
115 | - "vite-plugin-mock": "^2.2.4", | |
115 | + "vite-plugin-mock": "^2.3.0", | |
116 | 116 | "vite-plugin-purge-icons": "^0.7.0", |
117 | 117 | "vite-plugin-pwa": "^0.5.6", |
118 | 118 | "vite-plugin-style-import": "^0.8.1", |
119 | 119 | "vite-plugin-svg-icons": "^0.3.5", |
120 | 120 | "vite-plugin-theme": "^0.5.0", |
121 | - "vite-plugin-windicss": "0.9.2", | |
121 | + "vite-plugin-windicss": "0.8.3", | |
122 | 122 | "vue-eslint-parser": "^7.6.0", |
123 | 123 | "yargs": "^16.2.0" |
124 | 124 | }, |
125 | 125 | "resolutions": { |
126 | 126 | "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it", |
127 | 127 | "bin-wrapper": "npm:bin-wrapper-china", |
128 | - "rollup": "2.41.5", | |
129 | 128 | "vite": "2.0.5" |
130 | 129 | }, |
131 | 130 | "repository": { | ... | ... |
src/components/SimpleMenu/src/components/menu.less
src/store/modules/permission.ts
... | ... | @@ -116,7 +116,9 @@ class Permission extends VuexModule { |
116 | 116 | |
117 | 117 | // !Simulate to obtain permission codes from the background, |
118 | 118 | // this function may only need to be executed once, and the actual project can be put at the right time by itself |
119 | - this.changePermissionCode('1'); | |
119 | + try { | |
120 | + this.changePermissionCode('1'); | |
121 | + } catch (error) {} | |
120 | 122 | if (!paramId) { |
121 | 123 | throw new Error('paramId is undefined!'); |
122 | 124 | } | ... | ... |
test/server/api/app.js
0 → 100644
1 | +const Koa = require('koa'); | |
2 | +const router = require('koa-router')(); | |
3 | +const cors = require('koa2-cors'); | |
4 | +const bodyParser = require('koa-bodyparser'); | |
5 | +const app = new Koa(); | |
6 | + | |
7 | +app.use(cors()); | |
8 | +app.use(bodyParser()); | |
9 | + | |
10 | +router.get('/getTest', (ctx) => { | |
11 | + ctx.body = { | |
12 | + name: 'test', | |
13 | + }; | |
14 | +}); | |
15 | + | |
16 | +router.post('/login', (ctx) => { | |
17 | + ctx.body = { | |
18 | + code: 0, | |
19 | + success: true, | |
20 | + result: { | |
21 | + userId: '1', | |
22 | + username: 'vben', | |
23 | + realName: 'Vben Admin', | |
24 | + desc: 'manager', | |
25 | + password: '123456', | |
26 | + token: 'fakeToken1', | |
27 | + roles: [ | |
28 | + { | |
29 | + roleName: 'Super Admin', | |
30 | + value: 'super', | |
31 | + }, | |
32 | + ], | |
33 | + }, | |
34 | + }; | |
35 | +}); | |
36 | + | |
37 | +router.get('/getUserInfoById', (ctx) => { | |
38 | + ctx.body = { | |
39 | + code: 0, | |
40 | + success: true, | |
41 | + result: { | |
42 | + userId: '1', | |
43 | + username: 'vben', | |
44 | + realName: 'Vben Admin', | |
45 | + desc: 'manager', | |
46 | + password: '123456', | |
47 | + token: 'fakeToken1', | |
48 | + roles: [ | |
49 | + { | |
50 | + roleName: 'Super Admin', | |
51 | + value: 'super', | |
52 | + }, | |
53 | + ], | |
54 | + }, | |
55 | + }; | |
56 | +}); | |
57 | + | |
58 | +app.use(router.routes()).use(router.allowedMethods()); | |
59 | + | |
60 | +app.listen(3002, () => { | |
61 | + console.log('server is listen in 3002'); | |
62 | +}); | ... | ... |
test/server/api/package.json
0 → 100644
1 | +{ | |
2 | + "name": "upload-server", | |
3 | + "version": "1.0.0", | |
4 | + "main": "app.js", | |
5 | + "license": "MIT", | |
6 | + "scripts": { | |
7 | + "start": "node app.js" | |
8 | + }, | |
9 | + "dependencies": { | |
10 | + "fs-extra": "^9.1.0", | |
11 | + "koa": "^2.13.1", | |
12 | + "koa-body": "^4.2.0", | |
13 | + "koa-bodyparser": "^4.3.0", | |
14 | + "koa-router": "^10.0.0", | |
15 | + "koa-static": "^5.0.0", | |
16 | + "koa2-cors": "^2.0.6" | |
17 | + } | |
18 | +} | ... | ... |
test/server/api/yarn.lock
0 → 100644
1 | +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | |
2 | +# yarn lockfile v1 | |
3 | + | |
4 | + | |
5 | +"@types/formidable@^1.0.31": | |
6 | + version "1.0.32" | |
7 | + resolved "https://registry.npmjs.org/@types/formidable/-/formidable-1.0.32.tgz#d9a7eefbaa995a4486ec4e3960e9552e68b3f33c" | |
8 | + integrity sha512-jOAB5+GFW+C+2xdvUcpd/CnYg2rD5xCyagJLBJU+9PB4a/DKmsAqS9yZI3j/Q9zwvM7ztPHaAIH1ijzp4cezdQ== | |
9 | + dependencies: | |
10 | + "@types/node" "*" | |
11 | + | |
12 | +"@types/node@*": | |
13 | + version "14.14.35" | |
14 | + resolved "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" | |
15 | + integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== | |
16 | + | |
17 | +accepts@^1.3.5: | |
18 | + version "1.3.7" | |
19 | + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" | |
20 | + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== | |
21 | + dependencies: | |
22 | + mime-types "~2.1.24" | |
23 | + negotiator "0.6.2" | |
24 | + | |
25 | +any-promise@^1.1.0: | |
26 | + version "1.3.0" | |
27 | + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" | |
28 | + integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= | |
29 | + | |
30 | +at-least-node@^1.0.0: | |
31 | + version "1.0.0" | |
32 | + resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" | |
33 | + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== | |
34 | + | |
35 | +bytes@3.1.0: | |
36 | + version "3.1.0" | |
37 | + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | |
38 | + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== | |
39 | + | |
40 | +cache-content-type@^1.0.0: | |
41 | + version "1.0.1" | |
42 | + resolved "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c" | |
43 | + integrity sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA== | |
44 | + dependencies: | |
45 | + mime-types "^2.1.18" | |
46 | + ylru "^1.2.0" | |
47 | + | |
48 | +call-bind@^1.0.0: | |
49 | + version "1.0.2" | |
50 | + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" | |
51 | + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== | |
52 | + dependencies: | |
53 | + function-bind "^1.1.1" | |
54 | + get-intrinsic "^1.0.2" | |
55 | + | |
56 | +co-body@^5.1.1: | |
57 | + version "5.2.0" | |
58 | + resolved "https://registry.npmjs.org/co-body/-/co-body-5.2.0.tgz#5a0a658c46029131e0e3a306f67647302f71c124" | |
59 | + integrity sha512-sX/LQ7LqUhgyaxzbe7IqwPeTr2yfpfUIQ/dgpKo6ZI4y4lpQA0YxAomWIY+7I7rHWcG02PG+OuPREzMW/5tszQ== | |
60 | + dependencies: | |
61 | + inflation "^2.0.0" | |
62 | + qs "^6.4.0" | |
63 | + raw-body "^2.2.0" | |
64 | + type-is "^1.6.14" | |
65 | + | |
66 | +co-body@^6.0.0: | |
67 | + version "6.1.0" | |
68 | + resolved "https://registry.npmjs.org/co-body/-/co-body-6.1.0.tgz#d87a8efc3564f9bfe3aced8ef5cd04c7a8766547" | |
69 | + integrity sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ== | |
70 | + dependencies: | |
71 | + inflation "^2.0.0" | |
72 | + qs "^6.5.2" | |
73 | + raw-body "^2.3.3" | |
74 | + type-is "^1.6.16" | |
75 | + | |
76 | +co@^4.6.0: | |
77 | + version "4.6.0" | |
78 | + resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" | |
79 | + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= | |
80 | + | |
81 | +content-disposition@~0.5.2: | |
82 | + version "0.5.3" | |
83 | + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" | |
84 | + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== | |
85 | + dependencies: | |
86 | + safe-buffer "5.1.2" | |
87 | + | |
88 | +content-type@^1.0.4: | |
89 | + version "1.0.4" | |
90 | + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" | |
91 | + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== | |
92 | + | |
93 | +cookies@~0.8.0: | |
94 | + version "0.8.0" | |
95 | + resolved "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz#1293ce4b391740a8406e3c9870e828c4b54f3f90" | |
96 | + integrity sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow== | |
97 | + dependencies: | |
98 | + depd "~2.0.0" | |
99 | + keygrip "~1.1.0" | |
100 | + | |
101 | +copy-to@^2.0.1: | |
102 | + version "2.0.1" | |
103 | + resolved "https://registry.npmjs.org/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5" | |
104 | + integrity sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU= | |
105 | + | |
106 | +debug@^3.1.0: | |
107 | + version "3.2.7" | |
108 | + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" | |
109 | + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== | |
110 | + dependencies: | |
111 | + ms "^2.1.1" | |
112 | + | |
113 | +debug@^4.1.1: | |
114 | + version "4.3.1" | |
115 | + resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" | |
116 | + integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== | |
117 | + dependencies: | |
118 | + ms "2.1.2" | |
119 | + | |
120 | +debug@~3.1.0: | |
121 | + version "3.1.0" | |
122 | + resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" | |
123 | + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== | |
124 | + dependencies: | |
125 | + ms "2.0.0" | |
126 | + | |
127 | +deep-equal@~1.0.1: | |
128 | + version "1.0.1" | |
129 | + resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" | |
130 | + integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= | |
131 | + | |
132 | +delegates@^1.0.0: | |
133 | + version "1.0.0" | |
134 | + resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" | |
135 | + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= | |
136 | + | |
137 | +depd@^2.0.0, depd@~2.0.0: | |
138 | + version "2.0.0" | |
139 | + resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" | |
140 | + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== | |
141 | + | |
142 | +depd@~1.1.2: | |
143 | + version "1.1.2" | |
144 | + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" | |
145 | + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= | |
146 | + | |
147 | +destroy@^1.0.4: | |
148 | + version "1.0.4" | |
149 | + resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | |
150 | + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= | |
151 | + | |
152 | +ee-first@1.1.1: | |
153 | + version "1.1.1" | |
154 | + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" | |
155 | + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= | |
156 | + | |
157 | +encodeurl@^1.0.2: | |
158 | + version "1.0.2" | |
159 | + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" | |
160 | + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= | |
161 | + | |
162 | +escape-html@^1.0.3: | |
163 | + version "1.0.3" | |
164 | + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" | |
165 | + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= | |
166 | + | |
167 | +formidable@^1.1.1: | |
168 | + version "1.2.2" | |
169 | + resolved "https://registry.npmjs.org/formidable/-/formidable-1.2.2.tgz#bf69aea2972982675f00865342b982986f6b8dd9" | |
170 | + integrity sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q== | |
171 | + | |
172 | +fresh@~0.5.2: | |
173 | + version "0.5.2" | |
174 | + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" | |
175 | + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= | |
176 | + | |
177 | +fs-extra@^9.1.0: | |
178 | + version "9.1.0" | |
179 | + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" | |
180 | + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== | |
181 | + dependencies: | |
182 | + at-least-node "^1.0.0" | |
183 | + graceful-fs "^4.2.0" | |
184 | + jsonfile "^6.0.1" | |
185 | + universalify "^2.0.0" | |
186 | + | |
187 | +function-bind@^1.1.1: | |
188 | + version "1.1.1" | |
189 | + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" | |
190 | + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== | |
191 | + | |
192 | +get-intrinsic@^1.0.2: | |
193 | + version "1.1.1" | |
194 | + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" | |
195 | + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== | |
196 | + dependencies: | |
197 | + function-bind "^1.1.1" | |
198 | + has "^1.0.3" | |
199 | + has-symbols "^1.0.1" | |
200 | + | |
201 | +graceful-fs@^4.1.6, graceful-fs@^4.2.0: | |
202 | + version "4.2.6" | |
203 | + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" | |
204 | + integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== | |
205 | + | |
206 | +has-symbols@^1.0.1: | |
207 | + version "1.0.2" | |
208 | + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" | |
209 | + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== | |
210 | + | |
211 | +has@^1.0.3: | |
212 | + version "1.0.3" | |
213 | + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" | |
214 | + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== | |
215 | + dependencies: | |
216 | + function-bind "^1.1.1" | |
217 | + | |
218 | +http-assert@^1.3.0: | |
219 | + version "1.4.1" | |
220 | + resolved "https://registry.npmjs.org/http-assert/-/http-assert-1.4.1.tgz#c5f725d677aa7e873ef736199b89686cceb37878" | |
221 | + integrity sha512-rdw7q6GTlibqVVbXr0CKelfV5iY8G2HqEUkhSk297BMbSpSL8crXC+9rjKoMcZZEsksX30le6f/4ul4E28gegw== | |
222 | + dependencies: | |
223 | + deep-equal "~1.0.1" | |
224 | + http-errors "~1.7.2" | |
225 | + | |
226 | +http-errors@1.7.3, http-errors@~1.7.2: | |
227 | + version "1.7.3" | |
228 | + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" | |
229 | + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== | |
230 | + dependencies: | |
231 | + depd "~1.1.2" | |
232 | + inherits "2.0.4" | |
233 | + setprototypeof "1.1.1" | |
234 | + statuses ">= 1.5.0 < 2" | |
235 | + toidentifier "1.0.0" | |
236 | + | |
237 | +http-errors@^1.6.3, http-errors@^1.7.3: | |
238 | + version "1.8.0" | |
239 | + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz#75d1bbe497e1044f51e4ee9e704a62f28d336507" | |
240 | + integrity sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A== | |
241 | + dependencies: | |
242 | + depd "~1.1.2" | |
243 | + inherits "2.0.4" | |
244 | + setprototypeof "1.2.0" | |
245 | + statuses ">= 1.5.0 < 2" | |
246 | + toidentifier "1.0.0" | |
247 | + | |
248 | +http-errors@~1.6.2: | |
249 | + version "1.6.3" | |
250 | + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" | |
251 | + integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= | |
252 | + dependencies: | |
253 | + depd "~1.1.2" | |
254 | + inherits "2.0.3" | |
255 | + setprototypeof "1.1.0" | |
256 | + statuses ">= 1.4.0 < 2" | |
257 | + | |
258 | +iconv-lite@0.4.24: | |
259 | + version "0.4.24" | |
260 | + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | |
261 | + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | |
262 | + dependencies: | |
263 | + safer-buffer ">= 2.1.2 < 3" | |
264 | + | |
265 | +inflation@^2.0.0: | |
266 | + version "2.0.0" | |
267 | + resolved "https://registry.npmjs.org/inflation/-/inflation-2.0.0.tgz#8b417e47c28f925a45133d914ca1fd389107f30f" | |
268 | + integrity sha1-i0F+R8KPklpFEz2RTKH9OJEH8w8= | |
269 | + | |
270 | +inherits@2.0.3: | |
271 | + version "2.0.3" | |
272 | + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | |
273 | + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | |
274 | + | |
275 | +inherits@2.0.4: | |
276 | + version "2.0.4" | |
277 | + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" | |
278 | + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== | |
279 | + | |
280 | +is-generator-function@^1.0.7: | |
281 | + version "1.0.8" | |
282 | + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz#dfb5c2b120e02b0a8d9d2c6806cd5621aa922f7b" | |
283 | + integrity sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ== | |
284 | + | |
285 | +jsonfile@^6.0.1: | |
286 | + version "6.1.0" | |
287 | + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" | |
288 | + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== | |
289 | + dependencies: | |
290 | + universalify "^2.0.0" | |
291 | + optionalDependencies: | |
292 | + graceful-fs "^4.1.6" | |
293 | + | |
294 | +keygrip@~1.1.0: | |
295 | + version "1.1.0" | |
296 | + resolved "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" | |
297 | + integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ== | |
298 | + dependencies: | |
299 | + tsscmp "1.0.6" | |
300 | + | |
301 | +koa-body@^4.2.0: | |
302 | + version "4.2.0" | |
303 | + resolved "https://registry.npmjs.org/koa-body/-/koa-body-4.2.0.tgz#37229208b820761aca5822d14c5fc55cee31b26f" | |
304 | + integrity sha512-wdGu7b9amk4Fnk/ytH8GuWwfs4fsB5iNkY8kZPpgQVb04QZSv85T0M8reb+cJmvLE8cjPYvBzRikD3s6qz8OoA== | |
305 | + dependencies: | |
306 | + "@types/formidable" "^1.0.31" | |
307 | + co-body "^5.1.1" | |
308 | + formidable "^1.1.1" | |
309 | + | |
310 | +koa-bodyparser@^4.3.0: | |
311 | + version "4.3.0" | |
312 | + resolved "https://registry.npmjs.org/koa-bodyparser/-/koa-bodyparser-4.3.0.tgz#274c778555ff48fa221ee7f36a9fbdbace22759a" | |
313 | + integrity sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw== | |
314 | + dependencies: | |
315 | + co-body "^6.0.0" | |
316 | + copy-to "^2.0.1" | |
317 | + | |
318 | +koa-compose@^3.0.0: | |
319 | + version "3.2.1" | |
320 | + resolved "https://registry.npmjs.org/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" | |
321 | + integrity sha1-qFzLQLfZhtjlo0Wzoazo6rz1Tec= | |
322 | + dependencies: | |
323 | + any-promise "^1.1.0" | |
324 | + | |
325 | +koa-compose@^4.1.0: | |
326 | + version "4.1.0" | |
327 | + resolved "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877" | |
328 | + integrity sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw== | |
329 | + | |
330 | +koa-convert@^1.2.0: | |
331 | + version "1.2.0" | |
332 | + resolved "https://registry.npmjs.org/koa-convert/-/koa-convert-1.2.0.tgz#da40875df49de0539098d1700b50820cebcd21d0" | |
333 | + integrity sha1-2kCHXfSd4FOQmNFwC1CCDOvNIdA= | |
334 | + dependencies: | |
335 | + co "^4.6.0" | |
336 | + koa-compose "^3.0.0" | |
337 | + | |
338 | +koa-router@^10.0.0: | |
339 | + version "10.0.0" | |
340 | + resolved "https://registry.npmjs.org/koa-router/-/koa-router-10.0.0.tgz#7bc76a031085731e61fc92c1683687b2f44de6a4" | |
341 | + integrity sha512-gAE5J1gBQTvfR8rMMtMUkE26+1MbO3DGpGmvfmM2pR9Z7w2VIb2Ecqeal98yVO7+4ltffby7gWOzpCmdNOQe0w== | |
342 | + dependencies: | |
343 | + debug "^4.1.1" | |
344 | + http-errors "^1.7.3" | |
345 | + koa-compose "^4.1.0" | |
346 | + methods "^1.1.2" | |
347 | + path-to-regexp "^6.1.0" | |
348 | + | |
349 | +koa-send@^5.0.0: | |
350 | + version "5.0.1" | |
351 | + resolved "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz#39dceebfafb395d0d60beaffba3a70b4f543fe79" | |
352 | + integrity sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ== | |
353 | + dependencies: | |
354 | + debug "^4.1.1" | |
355 | + http-errors "^1.7.3" | |
356 | + resolve-path "^1.4.0" | |
357 | + | |
358 | +koa-static@^5.0.0: | |
359 | + version "5.0.0" | |
360 | + resolved "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz#5e92fc96b537ad5219f425319c95b64772776943" | |
361 | + integrity sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ== | |
362 | + dependencies: | |
363 | + debug "^3.1.0" | |
364 | + koa-send "^5.0.0" | |
365 | + | |
366 | +koa2-cors@^2.0.6: | |
367 | + version "2.0.6" | |
368 | + resolved "https://registry.npmjs.org/koa2-cors/-/koa2-cors-2.0.6.tgz#9ad23df3a0b9bb84530b46f5944f3fb576086554" | |
369 | + integrity sha512-JRCcSM4lamM+8kvKGDKlesYk2ASrmSTczDtGUnIadqMgnHU4Ct5Gw7Bxt3w3m6d6dy3WN0PU4oMP43HbddDEWg== | |
370 | + | |
371 | +koa@^2.13.1: | |
372 | + version "2.13.1" | |
373 | + resolved "https://registry.npmjs.org/koa/-/koa-2.13.1.tgz#6275172875b27bcfe1d454356a5b6b9f5a9b1051" | |
374 | + integrity sha512-Lb2Dloc72auj5vK4X4qqL7B5jyDPQaZucc9sR/71byg7ryoD1NCaCm63CShk9ID9quQvDEi1bGR/iGjCG7As3w== | |
375 | + dependencies: | |
376 | + accepts "^1.3.5" | |
377 | + cache-content-type "^1.0.0" | |
378 | + content-disposition "~0.5.2" | |
379 | + content-type "^1.0.4" | |
380 | + cookies "~0.8.0" | |
381 | + debug "~3.1.0" | |
382 | + delegates "^1.0.0" | |
383 | + depd "^2.0.0" | |
384 | + destroy "^1.0.4" | |
385 | + encodeurl "^1.0.2" | |
386 | + escape-html "^1.0.3" | |
387 | + fresh "~0.5.2" | |
388 | + http-assert "^1.3.0" | |
389 | + http-errors "^1.6.3" | |
390 | + is-generator-function "^1.0.7" | |
391 | + koa-compose "^4.1.0" | |
392 | + koa-convert "^1.2.0" | |
393 | + on-finished "^2.3.0" | |
394 | + only "~0.0.2" | |
395 | + parseurl "^1.3.2" | |
396 | + statuses "^1.5.0" | |
397 | + type-is "^1.6.16" | |
398 | + vary "^1.1.2" | |
399 | + | |
400 | +media-typer@0.3.0: | |
401 | + version "0.3.0" | |
402 | + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" | |
403 | + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= | |
404 | + | |
405 | +methods@^1.1.2: | |
406 | + version "1.1.2" | |
407 | + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" | |
408 | + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= | |
409 | + | |
410 | +mime-db@1.46.0: | |
411 | + version "1.46.0" | |
412 | + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee" | |
413 | + integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ== | |
414 | + | |
415 | +mime-types@^2.1.18, mime-types@~2.1.24: | |
416 | + version "2.1.29" | |
417 | + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2" | |
418 | + integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ== | |
419 | + dependencies: | |
420 | + mime-db "1.46.0" | |
421 | + | |
422 | +ms@2.0.0: | |
423 | + version "2.0.0" | |
424 | + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" | |
425 | + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= | |
426 | + | |
427 | +ms@2.1.2: | |
428 | + version "2.1.2" | |
429 | + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" | |
430 | + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== | |
431 | + | |
432 | +ms@^2.1.1: | |
433 | + version "2.1.3" | |
434 | + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" | |
435 | + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== | |
436 | + | |
437 | +negotiator@0.6.2: | |
438 | + version "0.6.2" | |
439 | + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | |
440 | + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== | |
441 | + | |
442 | +object-inspect@^1.9.0: | |
443 | + version "1.9.0" | |
444 | + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" | |
445 | + integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== | |
446 | + | |
447 | +on-finished@^2.3.0: | |
448 | + version "2.3.0" | |
449 | + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" | |
450 | + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= | |
451 | + dependencies: | |
452 | + ee-first "1.1.1" | |
453 | + | |
454 | +only@~0.0.2: | |
455 | + version "0.0.2" | |
456 | + resolved "https://registry.npmjs.org/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" | |
457 | + integrity sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q= | |
458 | + | |
459 | +parseurl@^1.3.2: | |
460 | + version "1.3.3" | |
461 | + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" | |
462 | + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== | |
463 | + | |
464 | +path-is-absolute@1.0.1: | |
465 | + version "1.0.1" | |
466 | + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | |
467 | + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= | |
468 | + | |
469 | +path-to-regexp@^6.1.0: | |
470 | + version "6.2.0" | |
471 | + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz#f7b3803336104c346889adece614669230645f38" | |
472 | + integrity sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg== | |
473 | + | |
474 | +qs@^6.4.0, qs@^6.5.2: | |
475 | + version "6.10.0" | |
476 | + resolved "https://registry.npmjs.org/qs/-/qs-6.10.0.tgz#8b6519121ab291c316a3e4d49cecf6d13d8c7fe5" | |
477 | + integrity sha512-yjACOWijC6L/kmPZZAsVBNY2zfHSIbpdpL977quseu56/8BZ2LoF5axK2bGhbzhVKt7V9xgWTtpyLbxwIoER0Q== | |
478 | + dependencies: | |
479 | + side-channel "^1.0.4" | |
480 | + | |
481 | +raw-body@^2.2.0, raw-body@^2.3.3: | |
482 | + version "2.4.1" | |
483 | + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" | |
484 | + integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== | |
485 | + dependencies: | |
486 | + bytes "3.1.0" | |
487 | + http-errors "1.7.3" | |
488 | + iconv-lite "0.4.24" | |
489 | + unpipe "1.0.0" | |
490 | + | |
491 | +resolve-path@^1.4.0: | |
492 | + version "1.4.0" | |
493 | + resolved "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7" | |
494 | + integrity sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc= | |
495 | + dependencies: | |
496 | + http-errors "~1.6.2" | |
497 | + path-is-absolute "1.0.1" | |
498 | + | |
499 | +safe-buffer@5.1.2: | |
500 | + version "5.1.2" | |
501 | + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | |
502 | + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | |
503 | + | |
504 | +"safer-buffer@>= 2.1.2 < 3": | |
505 | + version "2.1.2" | |
506 | + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | |
507 | + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | |
508 | + | |
509 | +setprototypeof@1.1.0: | |
510 | + version "1.1.0" | |
511 | + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" | |
512 | + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== | |
513 | + | |
514 | +setprototypeof@1.1.1: | |
515 | + version "1.1.1" | |
516 | + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" | |
517 | + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== | |
518 | + | |
519 | +setprototypeof@1.2.0: | |
520 | + version "1.2.0" | |
521 | + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" | |
522 | + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== | |
523 | + | |
524 | +side-channel@^1.0.4: | |
525 | + version "1.0.4" | |
526 | + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" | |
527 | + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== | |
528 | + dependencies: | |
529 | + call-bind "^1.0.0" | |
530 | + get-intrinsic "^1.0.2" | |
531 | + object-inspect "^1.9.0" | |
532 | + | |
533 | +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@^1.5.0: | |
534 | + version "1.5.0" | |
535 | + resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" | |
536 | + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= | |
537 | + | |
538 | +toidentifier@1.0.0: | |
539 | + version "1.0.0" | |
540 | + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" | |
541 | + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== | |
542 | + | |
543 | +tsscmp@1.0.6: | |
544 | + version "1.0.6" | |
545 | + resolved "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" | |
546 | + integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== | |
547 | + | |
548 | +type-is@^1.6.14, type-is@^1.6.16: | |
549 | + version "1.6.18" | |
550 | + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" | |
551 | + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== | |
552 | + dependencies: | |
553 | + media-typer "0.3.0" | |
554 | + mime-types "~2.1.24" | |
555 | + | |
556 | +universalify@^2.0.0: | |
557 | + version "2.0.0" | |
558 | + resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" | |
559 | + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== | |
560 | + | |
561 | +unpipe@1.0.0: | |
562 | + version "1.0.0" | |
563 | + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | |
564 | + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= | |
565 | + | |
566 | +vary@^1.1.2: | |
567 | + version "1.1.2" | |
568 | + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" | |
569 | + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= | |
570 | + | |
571 | +ylru@^1.2.0: | |
572 | + version "1.2.1" | |
573 | + resolved "https://registry.npmjs.org/ylru/-/ylru-1.2.1.tgz#f576b63341547989c1de7ba288760923b27fe84f" | |
574 | + integrity sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ== | ... | ... |
test/upload-server/README.md renamed to test/server/upload/README.md
test/upload-server/app.js renamed to test/server/upload/app.js
test/upload-server/package.json renamed to test/server/upload/package.json
test/upload-server/yarn.lock renamed to test/server/upload/yarn.lock
test/websocket-server/README.md renamed to test/server/websocket/README.md
test/websocket-server/app.js renamed to test/server/websocket/app.js
test/websocket-server/package.json renamed to test/server/websocket/package.json
test/websocket-server/yarn.lock renamed to test/server/websocket/yarn.lock
yarn.lock
... | ... | @@ -13,9 +13,9 @@ |
13 | 13 | vue "^3.0.0" |
14 | 14 | |
15 | 15 | "@ant-design/colors@^5.0.0": |
16 | - version "5.0.1" | |
17 | - resolved "https://registry.npmjs.org/@ant-design/colors/-/colors-5.0.1.tgz#09670f2f44a7473d7bc01be901c48ec10f12c7a4" | |
18 | - integrity sha512-x1TUaRILaqy3zgFNo+kIqOa3eTYPt81H1/3E4dCjDP4Qvk/xaPEizLDFdRUcIx0cWwyu2LklwfyLHWpbYK8v6A== | |
16 | + version "5.1.1" | |
17 | + resolved "https://registry.npmjs.org/@ant-design/colors/-/colors-5.1.1.tgz#800b2186b1e27e66432e67d03ed96af3e21d8940" | |
18 | + integrity sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ== | |
19 | 19 | dependencies: |
20 | 20 | "@ctrl/tinycolor" "^3.3.1" |
21 | 21 | |
... | ... | @@ -25,61 +25,35 @@ |
25 | 25 | integrity sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ== |
26 | 26 | |
27 | 27 | "@ant-design/icons-vue@^6.0.0": |
28 | - version "6.0.0" | |
29 | - resolved "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-6.0.0.tgz#e00ed23d5369323ee599ab4f4eb8aaa4f85f7877" | |
30 | - integrity sha512-pQglbNH1b/KzpqM6C/U29xNt46c8f+OMAThyCGhDBGVNzzzPjI4v0U7Qyipc0SfPlYt7oPIXIuhMGhFQGGnbbg== | |
28 | + version "6.0.1" | |
29 | + resolved "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-6.0.1.tgz#9d804c3c74d2cfaf97cb18e582d3b9400934f5fd" | |
30 | + integrity sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q== | |
31 | 31 | dependencies: |
32 | 32 | "@ant-design/colors" "^5.0.0" |
33 | 33 | "@ant-design/icons-svg" "^4.0.0" |
34 | 34 | "@types/lodash" "^4.14.165" |
35 | 35 | lodash "^4.17.15" |
36 | 36 | |
37 | -"@babel/code-frame@7.12.11", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11": | |
37 | +"@babel/code-frame@7.12.11": | |
38 | 38 | version "7.12.11" |
39 | 39 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" |
40 | 40 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== |
41 | 41 | dependencies: |
42 | 42 | "@babel/highlight" "^7.10.4" |
43 | 43 | |
44 | -"@babel/code-frame@^7.12.13": | |
44 | +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13": | |
45 | 45 | version "7.12.13" |
46 | 46 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" |
47 | 47 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== |
48 | 48 | dependencies: |
49 | 49 | "@babel/highlight" "^7.12.13" |
50 | 50 | |
51 | -"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7": | |
52 | - version "7.12.7" | |
53 | - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41" | |
54 | - integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== | |
55 | - | |
56 | -"@babel/compat-data@^7.13.8": | |
57 | - version "7.13.8" | |
58 | - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz#5b783b9808f15cef71547f1b691f34f8ff6003a6" | |
59 | - integrity sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog== | |
60 | - | |
61 | -"@babel/core@>=7.9.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10": | |
62 | - version "7.12.10" | |
63 | - resolved "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz#b79a2e1b9f70ed3d84bbfb6d8c4ef825f606bccd" | |
64 | - integrity sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w== | |
65 | - dependencies: | |
66 | - "@babel/code-frame" "^7.10.4" | |
67 | - "@babel/generator" "^7.12.10" | |
68 | - "@babel/helper-module-transforms" "^7.12.1" | |
69 | - "@babel/helpers" "^7.12.5" | |
70 | - "@babel/parser" "^7.12.10" | |
71 | - "@babel/template" "^7.12.7" | |
72 | - "@babel/traverse" "^7.12.10" | |
73 | - "@babel/types" "^7.12.10" | |
74 | - convert-source-map "^1.7.0" | |
75 | - debug "^4.1.0" | |
76 | - gensync "^1.0.0-beta.1" | |
77 | - json5 "^2.1.2" | |
78 | - lodash "^4.17.19" | |
79 | - semver "^5.4.1" | |
80 | - source-map "^0.5.0" | |
51 | +"@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8": | |
52 | + version "7.13.11" | |
53 | + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.11.tgz#9c8fe523c206979c9a81b1e12fe50c1254f1aa35" | |
54 | + integrity sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg== | |
81 | 55 | |
82 | -"@babel/core@^7.1.0", "@babel/core@^7.7.5": | |
56 | +"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10", "@babel/core@^7.7.5": | |
83 | 57 | version "7.13.10" |
84 | 58 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559" |
85 | 59 | integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== |
... | ... | @@ -101,15 +75,6 @@ |
101 | 75 | semver "^6.3.0" |
102 | 76 | source-map "^0.5.0" |
103 | 77 | |
104 | -"@babel/generator@^7.12.10", "@babel/generator@^7.12.11": | |
105 | - version "7.12.11" | |
106 | - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af" | |
107 | - integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== | |
108 | - dependencies: | |
109 | - "@babel/types" "^7.12.11" | |
110 | - jsesc "^2.5.1" | |
111 | - source-map "^0.5.0" | |
112 | - | |
113 | 78 | "@babel/generator@^7.13.0", "@babel/generator@^7.13.9": |
114 | 79 | version "7.13.9" |
115 | 80 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" |
... | ... | @@ -119,32 +84,22 @@ |
119 | 84 | jsesc "^2.5.1" |
120 | 85 | source-map "^0.5.0" |
121 | 86 | |
122 | -"@babel/helper-annotate-as-pure@^7.10.4": | |
123 | - version "7.12.10" | |
124 | - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz#54ab9b000e60a93644ce17b3f37d313aaf1d115d" | |
125 | - integrity sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ== | |
126 | - dependencies: | |
127 | - "@babel/types" "^7.12.10" | |
128 | - | |
129 | -"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": | |
130 | - version "7.10.4" | |
131 | - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" | |
132 | - integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== | |
87 | +"@babel/helper-annotate-as-pure@^7.12.13": | |
88 | + version "7.12.13" | |
89 | + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" | |
90 | + integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw== | |
133 | 91 | dependencies: |
134 | - "@babel/helper-explode-assignable-expression" "^7.10.4" | |
135 | - "@babel/types" "^7.10.4" | |
92 | + "@babel/types" "^7.12.13" | |
136 | 93 | |
137 | -"@babel/helper-compilation-targets@^7.12.5": | |
138 | - version "7.12.5" | |
139 | - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831" | |
140 | - integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== | |
94 | +"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": | |
95 | + version "7.12.13" | |
96 | + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" | |
97 | + integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== | |
141 | 98 | dependencies: |
142 | - "@babel/compat-data" "^7.12.5" | |
143 | - "@babel/helper-validator-option" "^7.12.1" | |
144 | - browserslist "^4.14.5" | |
145 | - semver "^5.5.0" | |
99 | + "@babel/helper-explode-assignable-expression" "^7.12.13" | |
100 | + "@babel/types" "^7.12.13" | |
146 | 101 | |
147 | -"@babel/helper-compilation-targets@^7.13.10": | |
102 | +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.8": | |
148 | 103 | version "7.13.10" |
149 | 104 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz#1310a1678cb8427c07a753750da4f8ce442bdd0c" |
150 | 105 | integrity sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA== |
... | ... | @@ -154,49 +109,45 @@ |
154 | 109 | browserslist "^4.14.5" |
155 | 110 | semver "^6.3.0" |
156 | 111 | |
157 | -"@babel/helper-create-class-features-plugin@^7.12.1": | |
158 | - version "7.12.1" | |
159 | - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" | |
160 | - integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== | |
112 | +"@babel/helper-create-class-features-plugin@^7.13.0": | |
113 | + version "7.13.11" | |
114 | + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6" | |
115 | + integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw== | |
161 | 116 | dependencies: |
162 | - "@babel/helper-function-name" "^7.10.4" | |
163 | - "@babel/helper-member-expression-to-functions" "^7.12.1" | |
164 | - "@babel/helper-optimise-call-expression" "^7.10.4" | |
165 | - "@babel/helper-replace-supers" "^7.12.1" | |
166 | - "@babel/helper-split-export-declaration" "^7.10.4" | |
117 | + "@babel/helper-function-name" "^7.12.13" | |
118 | + "@babel/helper-member-expression-to-functions" "^7.13.0" | |
119 | + "@babel/helper-optimise-call-expression" "^7.12.13" | |
120 | + "@babel/helper-replace-supers" "^7.13.0" | |
121 | + "@babel/helper-split-export-declaration" "^7.12.13" | |
167 | 122 | |
168 | -"@babel/helper-create-regexp-features-plugin@^7.12.1": | |
169 | - version "7.12.7" | |
170 | - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f" | |
171 | - integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== | |
123 | +"@babel/helper-create-regexp-features-plugin@^7.12.13": | |
124 | + version "7.12.17" | |
125 | + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7" | |
126 | + integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg== | |
172 | 127 | dependencies: |
173 | - "@babel/helper-annotate-as-pure" "^7.10.4" | |
128 | + "@babel/helper-annotate-as-pure" "^7.12.13" | |
174 | 129 | regexpu-core "^4.7.1" |
175 | 130 | |
176 | -"@babel/helper-define-map@^7.10.4": | |
177 | - version "7.10.5" | |
178 | - resolved "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" | |
179 | - integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== | |
131 | +"@babel/helper-define-polyfill-provider@^0.1.5": | |
132 | + version "0.1.5" | |
133 | + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e" | |
134 | + integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg== | |
180 | 135 | dependencies: |
181 | - "@babel/helper-function-name" "^7.10.4" | |
182 | - "@babel/types" "^7.10.5" | |
183 | - lodash "^4.17.19" | |
184 | - | |
185 | -"@babel/helper-explode-assignable-expression@^7.10.4": | |
186 | - version "7.12.1" | |
187 | - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633" | |
188 | - integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== | |
189 | - dependencies: | |
190 | - "@babel/types" "^7.12.1" | |
136 | + "@babel/helper-compilation-targets" "^7.13.0" | |
137 | + "@babel/helper-module-imports" "^7.12.13" | |
138 | + "@babel/helper-plugin-utils" "^7.13.0" | |
139 | + "@babel/traverse" "^7.13.0" | |
140 | + debug "^4.1.1" | |
141 | + lodash.debounce "^4.0.8" | |
142 | + resolve "^1.14.2" | |
143 | + semver "^6.1.2" | |
191 | 144 | |
192 | -"@babel/helper-function-name@^7.10.4", "@babel/helper-function-name@^7.12.11": | |
193 | - version "7.12.11" | |
194 | - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42" | |
195 | - integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== | |
145 | +"@babel/helper-explode-assignable-expression@^7.12.13": | |
146 | + version "7.13.0" | |
147 | + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" | |
148 | + integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== | |
196 | 149 | dependencies: |
197 | - "@babel/helper-get-function-arity" "^7.12.10" | |
198 | - "@babel/template" "^7.12.7" | |
199 | - "@babel/types" "^7.12.11" | |
150 | + "@babel/types" "^7.13.0" | |
200 | 151 | |
201 | 152 | "@babel/helper-function-name@^7.12.13": |
202 | 153 | version "7.12.13" |
... | ... | @@ -207,13 +158,6 @@ |
207 | 158 | "@babel/template" "^7.12.13" |
208 | 159 | "@babel/types" "^7.12.13" |
209 | 160 | |
210 | -"@babel/helper-get-function-arity@^7.12.10": | |
211 | - version "7.12.10" | |
212 | - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf" | |
213 | - integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== | |
214 | - dependencies: | |
215 | - "@babel/types" "^7.12.10" | |
216 | - | |
217 | 161 | "@babel/helper-get-function-arity@^7.12.13": |
218 | 162 | version "7.12.13" |
219 | 163 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" |
... | ... | @@ -221,19 +165,13 @@ |
221 | 165 | dependencies: |
222 | 166 | "@babel/types" "^7.12.13" |
223 | 167 | |
224 | -"@babel/helper-hoist-variables@^7.10.4": | |
225 | - version "7.10.4" | |
226 | - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" | |
227 | - integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== | |
228 | - dependencies: | |
229 | - "@babel/types" "^7.10.4" | |
230 | - | |
231 | -"@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7": | |
232 | - version "7.12.7" | |
233 | - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" | |
234 | - integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== | |
168 | +"@babel/helper-hoist-variables@^7.13.0": | |
169 | + version "7.13.0" | |
170 | + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" | |
171 | + integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g== | |
235 | 172 | dependencies: |
236 | - "@babel/types" "^7.12.7" | |
173 | + "@babel/traverse" "^7.13.0" | |
174 | + "@babel/types" "^7.13.0" | |
237 | 175 | |
238 | 176 | "@babel/helper-member-expression-to-functions@^7.13.0": |
239 | 177 | version "7.13.0" |
... | ... | @@ -242,35 +180,13 @@ |
242 | 180 | dependencies: |
243 | 181 | "@babel/types" "^7.13.0" |
244 | 182 | |
245 | -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5": | |
246 | - version "7.12.5" | |
247 | - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" | |
248 | - integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== | |
249 | - dependencies: | |
250 | - "@babel/types" "^7.12.5" | |
251 | - | |
252 | -"@babel/helper-module-imports@^7.12.13": | |
183 | +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13": | |
253 | 184 | version "7.12.13" |
254 | 185 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0" |
255 | 186 | integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g== |
256 | 187 | dependencies: |
257 | 188 | "@babel/types" "^7.12.13" |
258 | 189 | |
259 | -"@babel/helper-module-transforms@^7.12.1": | |
260 | - version "7.12.1" | |
261 | - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" | |
262 | - integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== | |
263 | - dependencies: | |
264 | - "@babel/helper-module-imports" "^7.12.1" | |
265 | - "@babel/helper-replace-supers" "^7.12.1" | |
266 | - "@babel/helper-simple-access" "^7.12.1" | |
267 | - "@babel/helper-split-export-declaration" "^7.11.0" | |
268 | - "@babel/helper-validator-identifier" "^7.10.4" | |
269 | - "@babel/template" "^7.10.4" | |
270 | - "@babel/traverse" "^7.12.1" | |
271 | - "@babel/types" "^7.12.1" | |
272 | - lodash "^4.17.19" | |
273 | - | |
274 | 190 | "@babel/helper-module-transforms@^7.13.0": |
275 | 191 | version "7.13.0" |
276 | 192 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz#42eb4bd8eea68bab46751212c357bfed8b40f6f1" |
... | ... | @@ -286,13 +202,6 @@ |
286 | 202 | "@babel/types" "^7.13.0" |
287 | 203 | lodash "^4.17.19" |
288 | 204 | |
289 | -"@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10": | |
290 | - version "7.12.10" | |
291 | - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d" | |
292 | - integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== | |
293 | - dependencies: | |
294 | - "@babel/types" "^7.12.10" | |
295 | - | |
296 | 205 | "@babel/helper-optimise-call-expression@^7.12.13": |
297 | 206 | version "7.12.13" |
298 | 207 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" |
... | ... | @@ -300,36 +209,21 @@ |
300 | 209 | dependencies: |
301 | 210 | "@babel/types" "^7.12.13" |
302 | 211 | |
303 | -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": | |
304 | - version "7.10.4" | |
305 | - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" | |
306 | - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== | |
307 | - | |
308 | -"@babel/helper-plugin-utils@^7.12.13": | |
212 | +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": | |
309 | 213 | version "7.13.0" |
310 | 214 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" |
311 | 215 | integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== |
312 | 216 | |
313 | -"@babel/helper-remap-async-to-generator@^7.12.1": | |
314 | - version "7.12.1" | |
315 | - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" | |
316 | - integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== | |
317 | - dependencies: | |
318 | - "@babel/helper-annotate-as-pure" "^7.10.4" | |
319 | - "@babel/helper-wrap-function" "^7.10.4" | |
320 | - "@babel/types" "^7.12.1" | |
321 | - | |
322 | -"@babel/helper-replace-supers@^7.12.1": | |
323 | - version "7.12.11" | |
324 | - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d" | |
325 | - integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== | |
217 | +"@babel/helper-remap-async-to-generator@^7.13.0": | |
218 | + version "7.13.0" | |
219 | + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" | |
220 | + integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== | |
326 | 221 | dependencies: |
327 | - "@babel/helper-member-expression-to-functions" "^7.12.7" | |
328 | - "@babel/helper-optimise-call-expression" "^7.12.10" | |
329 | - "@babel/traverse" "^7.12.10" | |
330 | - "@babel/types" "^7.12.11" | |
222 | + "@babel/helper-annotate-as-pure" "^7.12.13" | |
223 | + "@babel/helper-wrap-function" "^7.13.0" | |
224 | + "@babel/types" "^7.13.0" | |
331 | 225 | |
332 | -"@babel/helper-replace-supers@^7.13.0": | |
226 | +"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0": | |
333 | 227 | version "7.13.0" |
334 | 228 | resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz#6034b7b51943094cb41627848cb219cb02be1d24" |
335 | 229 | integrity sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw== |
... | ... | @@ -339,13 +233,6 @@ |
339 | 233 | "@babel/traverse" "^7.13.0" |
340 | 234 | "@babel/types" "^7.13.0" |
341 | 235 | |
342 | -"@babel/helper-simple-access@^7.12.1": | |
343 | - version "7.12.1" | |
344 | - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" | |
345 | - integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== | |
346 | - dependencies: | |
347 | - "@babel/types" "^7.12.1" | |
348 | - | |
349 | 236 | "@babel/helper-simple-access@^7.12.13": |
350 | 237 | version "7.12.13" |
351 | 238 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4" |
... | ... | @@ -360,13 +247,6 @@ |
360 | 247 | dependencies: |
361 | 248 | "@babel/types" "^7.12.1" |
362 | 249 | |
363 | -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11": | |
364 | - version "7.12.11" | |
365 | - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a" | |
366 | - integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== | |
367 | - dependencies: | |
368 | - "@babel/types" "^7.12.11" | |
369 | - | |
370 | 250 | "@babel/helper-split-export-declaration@^7.12.13": |
371 | 251 | version "7.12.13" |
372 | 252 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05" |
... | ... | @@ -374,39 +254,25 @@ |
374 | 254 | dependencies: |
375 | 255 | "@babel/types" "^7.12.13" |
376 | 256 | |
377 | -"@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": | |
257 | +"@babel/helper-validator-identifier@^7.12.11": | |
378 | 258 | version "7.12.11" |
379 | 259 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" |
380 | 260 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== |
381 | 261 | |
382 | -"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11": | |
383 | - version "7.12.11" | |
384 | - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f" | |
385 | - integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== | |
386 | - | |
387 | 262 | "@babel/helper-validator-option@^7.12.17": |
388 | 263 | version "7.12.17" |
389 | 264 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" |
390 | 265 | integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== |
391 | 266 | |
392 | -"@babel/helper-wrap-function@^7.10.4": | |
393 | - version "7.12.3" | |
394 | - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9" | |
395 | - integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== | |
396 | - dependencies: | |
397 | - "@babel/helper-function-name" "^7.10.4" | |
398 | - "@babel/template" "^7.10.4" | |
399 | - "@babel/traverse" "^7.10.4" | |
400 | - "@babel/types" "^7.10.4" | |
401 | - | |
402 | -"@babel/helpers@^7.12.5": | |
403 | - version "7.12.5" | |
404 | - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e" | |
405 | - integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== | |
267 | +"@babel/helper-wrap-function@^7.13.0": | |
268 | + version "7.13.0" | |
269 | + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" | |
270 | + integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== | |
406 | 271 | dependencies: |
407 | - "@babel/template" "^7.10.4" | |
408 | - "@babel/traverse" "^7.12.5" | |
409 | - "@babel/types" "^7.12.5" | |
272 | + "@babel/helper-function-name" "^7.12.13" | |
273 | + "@babel/template" "^7.12.13" | |
274 | + "@babel/traverse" "^7.13.0" | |
275 | + "@babel/types" "^7.13.0" | |
410 | 276 | |
411 | 277 | "@babel/helpers@^7.13.10": |
412 | 278 | version "7.13.10" |
... | ... | @@ -417,16 +283,7 @@ |
417 | 283 | "@babel/traverse" "^7.13.0" |
418 | 284 | "@babel/types" "^7.13.0" |
419 | 285 | |
420 | -"@babel/highlight@^7.10.4": | |
421 | - version "7.10.4" | |
422 | - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" | |
423 | - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== | |
424 | - dependencies: | |
425 | - "@babel/helper-validator-identifier" "^7.10.4" | |
426 | - chalk "^2.0.0" | |
427 | - js-tokens "^4.0.0" | |
428 | - | |
429 | -"@babel/highlight@^7.12.13": | |
286 | +"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": | |
430 | 287 | version "7.13.10" |
431 | 288 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" |
432 | 289 | integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== |
... | ... | @@ -435,124 +292,121 @@ |
435 | 292 | chalk "^2.0.0" |
436 | 293 | js-tokens "^4.0.0" |
437 | 294 | |
438 | -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": | |
439 | - version "7.13.10" | |
440 | - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.10.tgz#8f8f9bf7b3afa3eabd061f7a5bcdf4fec3c48409" | |
441 | - integrity sha512-0s7Mlrw9uTWkYua7xWr99Wpk2bnGa0ANleKfksYAES8LpWH4gW1OUr42vqKNf0us5UQNfru2wPqMqRITzq/SIQ== | |
442 | - | |
443 | -"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7": | |
444 | - version "7.12.11" | |
445 | - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" | |
446 | - integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== | |
295 | +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": | |
296 | + version "7.13.11" | |
297 | + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz#f93ebfc99d21c1772afbbaa153f47e7ce2f50b88" | |
298 | + integrity sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q== | |
447 | 299 | |
448 | -"@babel/plugin-proposal-async-generator-functions@^7.12.1": | |
449 | - version "7.12.12" | |
450 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz#04b8f24fd4532008ab4e79f788468fd5a8476566" | |
451 | - integrity sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== | |
300 | +"@babel/plugin-proposal-async-generator-functions@^7.13.8": | |
301 | + version "7.13.8" | |
302 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" | |
303 | + integrity sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA== | |
452 | 304 | dependencies: |
453 | - "@babel/helper-plugin-utils" "^7.10.4" | |
454 | - "@babel/helper-remap-async-to-generator" "^7.12.1" | |
455 | - "@babel/plugin-syntax-async-generators" "^7.8.0" | |
305 | + "@babel/helper-plugin-utils" "^7.13.0" | |
306 | + "@babel/helper-remap-async-to-generator" "^7.13.0" | |
307 | + "@babel/plugin-syntax-async-generators" "^7.8.4" | |
456 | 308 | |
457 | -"@babel/plugin-proposal-class-properties@^7.12.1": | |
458 | - version "7.12.1" | |
459 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de" | |
460 | - integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== | |
309 | +"@babel/plugin-proposal-class-properties@^7.13.0": | |
310 | + version "7.13.0" | |
311 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" | |
312 | + integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== | |
461 | 313 | dependencies: |
462 | - "@babel/helper-create-class-features-plugin" "^7.12.1" | |
463 | - "@babel/helper-plugin-utils" "^7.10.4" | |
314 | + "@babel/helper-create-class-features-plugin" "^7.13.0" | |
315 | + "@babel/helper-plugin-utils" "^7.13.0" | |
464 | 316 | |
465 | -"@babel/plugin-proposal-dynamic-import@^7.12.1": | |
466 | - version "7.12.1" | |
467 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc" | |
468 | - integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== | |
317 | +"@babel/plugin-proposal-dynamic-import@^7.13.8": | |
318 | + version "7.13.8" | |
319 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" | |
320 | + integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== | |
469 | 321 | dependencies: |
470 | - "@babel/helper-plugin-utils" "^7.10.4" | |
471 | - "@babel/plugin-syntax-dynamic-import" "^7.8.0" | |
322 | + "@babel/helper-plugin-utils" "^7.13.0" | |
323 | + "@babel/plugin-syntax-dynamic-import" "^7.8.3" | |
472 | 324 | |
473 | -"@babel/plugin-proposal-export-namespace-from@^7.12.1": | |
474 | - version "7.12.1" | |
475 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4" | |
476 | - integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== | |
325 | +"@babel/plugin-proposal-export-namespace-from@^7.12.13": | |
326 | + version "7.12.13" | |
327 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d" | |
328 | + integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw== | |
477 | 329 | dependencies: |
478 | - "@babel/helper-plugin-utils" "^7.10.4" | |
330 | + "@babel/helper-plugin-utils" "^7.12.13" | |
479 | 331 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" |
480 | 332 | |
481 | -"@babel/plugin-proposal-json-strings@^7.12.1": | |
482 | - version "7.12.1" | |
483 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c" | |
484 | - integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== | |
333 | +"@babel/plugin-proposal-json-strings@^7.13.8": | |
334 | + version "7.13.8" | |
335 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" | |
336 | + integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== | |
485 | 337 | dependencies: |
486 | - "@babel/helper-plugin-utils" "^7.10.4" | |
487 | - "@babel/plugin-syntax-json-strings" "^7.8.0" | |
338 | + "@babel/helper-plugin-utils" "^7.13.0" | |
339 | + "@babel/plugin-syntax-json-strings" "^7.8.3" | |
488 | 340 | |
489 | -"@babel/plugin-proposal-logical-assignment-operators@^7.12.1": | |
490 | - version "7.12.1" | |
491 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751" | |
492 | - integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== | |
341 | +"@babel/plugin-proposal-logical-assignment-operators@^7.13.8": | |
342 | + version "7.13.8" | |
343 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" | |
344 | + integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== | |
493 | 345 | dependencies: |
494 | - "@babel/helper-plugin-utils" "^7.10.4" | |
346 | + "@babel/helper-plugin-utils" "^7.13.0" | |
495 | 347 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" |
496 | 348 | |
497 | -"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": | |
498 | - version "7.12.1" | |
499 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c" | |
500 | - integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== | |
349 | +"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": | |
350 | + version "7.13.8" | |
351 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" | |
352 | + integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== | |
501 | 353 | dependencies: |
502 | - "@babel/helper-plugin-utils" "^7.10.4" | |
503 | - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | |
354 | + "@babel/helper-plugin-utils" "^7.13.0" | |
355 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" | |
504 | 356 | |
505 | -"@babel/plugin-proposal-numeric-separator@^7.12.7": | |
506 | - version "7.12.7" | |
507 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b" | |
508 | - integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== | |
357 | +"@babel/plugin-proposal-numeric-separator@^7.12.13": | |
358 | + version "7.12.13" | |
359 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db" | |
360 | + integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w== | |
509 | 361 | dependencies: |
510 | - "@babel/helper-plugin-utils" "^7.10.4" | |
362 | + "@babel/helper-plugin-utils" "^7.12.13" | |
511 | 363 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
512 | 364 | |
513 | -"@babel/plugin-proposal-object-rest-spread@^7.12.1": | |
514 | - version "7.12.1" | |
515 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" | |
516 | - integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== | |
365 | +"@babel/plugin-proposal-object-rest-spread@^7.13.8": | |
366 | + version "7.13.8" | |
367 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" | |
368 | + integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== | |
517 | 369 | dependencies: |
518 | - "@babel/helper-plugin-utils" "^7.10.4" | |
519 | - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | |
520 | - "@babel/plugin-transform-parameters" "^7.12.1" | |
370 | + "@babel/compat-data" "^7.13.8" | |
371 | + "@babel/helper-compilation-targets" "^7.13.8" | |
372 | + "@babel/helper-plugin-utils" "^7.13.0" | |
373 | + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" | |
374 | + "@babel/plugin-transform-parameters" "^7.13.0" | |
521 | 375 | |
522 | -"@babel/plugin-proposal-optional-catch-binding@^7.12.1": | |
523 | - version "7.12.1" | |
524 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942" | |
525 | - integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== | |
376 | +"@babel/plugin-proposal-optional-catch-binding@^7.13.8": | |
377 | + version "7.13.8" | |
378 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" | |
379 | + integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== | |
526 | 380 | dependencies: |
527 | - "@babel/helper-plugin-utils" "^7.10.4" | |
528 | - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | |
381 | + "@babel/helper-plugin-utils" "^7.13.0" | |
382 | + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" | |
529 | 383 | |
530 | -"@babel/plugin-proposal-optional-chaining@^7.12.7": | |
531 | - version "7.12.7" | |
532 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c" | |
533 | - integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== | |
384 | +"@babel/plugin-proposal-optional-chaining@^7.13.8": | |
385 | + version "7.13.8" | |
386 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz#e39df93efe7e7e621841babc197982e140e90756" | |
387 | + integrity sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== | |
534 | 388 | dependencies: |
535 | - "@babel/helper-plugin-utils" "^7.10.4" | |
389 | + "@babel/helper-plugin-utils" "^7.13.0" | |
536 | 390 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" |
537 | - "@babel/plugin-syntax-optional-chaining" "^7.8.0" | |
391 | + "@babel/plugin-syntax-optional-chaining" "^7.8.3" | |
538 | 392 | |
539 | -"@babel/plugin-proposal-private-methods@^7.12.1": | |
540 | - version "7.12.1" | |
541 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389" | |
542 | - integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== | |
393 | +"@babel/plugin-proposal-private-methods@^7.13.0": | |
394 | + version "7.13.0" | |
395 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787" | |
396 | + integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q== | |
543 | 397 | dependencies: |
544 | - "@babel/helper-create-class-features-plugin" "^7.12.1" | |
545 | - "@babel/helper-plugin-utils" "^7.10.4" | |
398 | + "@babel/helper-create-class-features-plugin" "^7.13.0" | |
399 | + "@babel/helper-plugin-utils" "^7.13.0" | |
546 | 400 | |
547 | -"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": | |
548 | - version "7.12.1" | |
549 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072" | |
550 | - integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== | |
401 | +"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": | |
402 | + version "7.12.13" | |
403 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba" | |
404 | + integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg== | |
551 | 405 | dependencies: |
552 | - "@babel/helper-create-regexp-features-plugin" "^7.12.1" | |
553 | - "@babel/helper-plugin-utils" "^7.10.4" | |
406 | + "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
407 | + "@babel/helper-plugin-utils" "^7.12.13" | |
554 | 408 | |
555 | -"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": | |
409 | +"@babel/plugin-syntax-async-generators@^7.8.4": | |
556 | 410 | version "7.8.4" |
557 | 411 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" |
558 | 412 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== |
... | ... | @@ -566,21 +420,14 @@ |
566 | 420 | dependencies: |
567 | 421 | "@babel/helper-plugin-utils" "^7.8.0" |
568 | 422 | |
569 | -"@babel/plugin-syntax-class-properties@^7.12.1": | |
570 | - version "7.12.1" | |
571 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978" | |
572 | - integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== | |
573 | - dependencies: | |
574 | - "@babel/helper-plugin-utils" "^7.10.4" | |
575 | - | |
576 | -"@babel/plugin-syntax-class-properties@^7.8.3": | |
423 | +"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": | |
577 | 424 | version "7.12.13" |
578 | 425 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" |
579 | 426 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== |
580 | 427 | dependencies: |
581 | 428 | "@babel/helper-plugin-utils" "^7.12.13" |
582 | 429 | |
583 | -"@babel/plugin-syntax-dynamic-import@^7.8.0": | |
430 | +"@babel/plugin-syntax-dynamic-import@^7.8.3": | |
584 | 431 | version "7.8.3" |
585 | 432 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" |
586 | 433 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== |
... | ... | @@ -601,7 +448,7 @@ |
601 | 448 | dependencies: |
602 | 449 | "@babel/helper-plugin-utils" "^7.10.4" |
603 | 450 | |
604 | -"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": | |
451 | +"@babel/plugin-syntax-json-strings@^7.8.3": | |
605 | 452 | version "7.8.3" |
606 | 453 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" |
607 | 454 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== |
... | ... | @@ -609,11 +456,11 @@ |
609 | 456 | "@babel/helper-plugin-utils" "^7.8.0" |
610 | 457 | |
611 | 458 | "@babel/plugin-syntax-jsx@^7.0.0": |
612 | - version "7.12.1" | |
613 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" | |
614 | - integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== | |
459 | + version "7.12.13" | |
460 | + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15" | |
461 | + integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g== | |
615 | 462 | dependencies: |
616 | - "@babel/helper-plugin-utils" "^7.10.4" | |
463 | + "@babel/helper-plugin-utils" "^7.12.13" | |
617 | 464 | |
618 | 465 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": |
619 | 466 | version "7.10.4" |
... | ... | @@ -622,7 +469,7 @@ |
622 | 469 | dependencies: |
623 | 470 | "@babel/helper-plugin-utils" "^7.10.4" |
624 | 471 | |
625 | -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": | |
472 | +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": | |
626 | 473 | version "7.8.3" |
627 | 474 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" |
628 | 475 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== |
... | ... | @@ -636,379 +483,373 @@ |
636 | 483 | dependencies: |
637 | 484 | "@babel/helper-plugin-utils" "^7.10.4" |
638 | 485 | |
639 | -"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": | |
486 | +"@babel/plugin-syntax-object-rest-spread@^7.8.3": | |
640 | 487 | version "7.8.3" |
641 | 488 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" |
642 | 489 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== |
643 | 490 | dependencies: |
644 | 491 | "@babel/helper-plugin-utils" "^7.8.0" |
645 | 492 | |
646 | -"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": | |
493 | +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": | |
647 | 494 | version "7.8.3" |
648 | 495 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" |
649 | 496 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== |
650 | 497 | dependencies: |
651 | 498 | "@babel/helper-plugin-utils" "^7.8.0" |
652 | 499 | |
653 | -"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": | |
500 | +"@babel/plugin-syntax-optional-chaining@^7.8.3": | |
654 | 501 | version "7.8.3" |
655 | 502 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" |
656 | 503 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== |
657 | 504 | dependencies: |
658 | 505 | "@babel/helper-plugin-utils" "^7.8.0" |
659 | 506 | |
660 | -"@babel/plugin-syntax-top-level-await@^7.12.1": | |
661 | - version "7.12.1" | |
662 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" | |
663 | - integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== | |
664 | - dependencies: | |
665 | - "@babel/helper-plugin-utils" "^7.10.4" | |
666 | - | |
667 | -"@babel/plugin-syntax-top-level-await@^7.8.3": | |
507 | +"@babel/plugin-syntax-top-level-await@^7.12.13", "@babel/plugin-syntax-top-level-await@^7.8.3": | |
668 | 508 | version "7.12.13" |
669 | 509 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178" |
670 | 510 | integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ== |
671 | 511 | dependencies: |
672 | 512 | "@babel/helper-plugin-utils" "^7.12.13" |
673 | 513 | |
674 | -"@babel/plugin-syntax-typescript@^7.12.1": | |
675 | - version "7.12.1" | |
676 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz#460ba9d77077653803c3dd2e673f76d66b4029e5" | |
677 | - integrity sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA== | |
514 | +"@babel/plugin-syntax-typescript@^7.12.13": | |
515 | + version "7.12.13" | |
516 | + resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474" | |
517 | + integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w== | |
678 | 518 | dependencies: |
679 | - "@babel/helper-plugin-utils" "^7.10.4" | |
519 | + "@babel/helper-plugin-utils" "^7.12.13" | |
680 | 520 | |
681 | -"@babel/plugin-transform-arrow-functions@^7.12.1": | |
682 | - version "7.12.1" | |
683 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3" | |
684 | - integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== | |
521 | +"@babel/plugin-transform-arrow-functions@^7.13.0": | |
522 | + version "7.13.0" | |
523 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" | |
524 | + integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== | |
685 | 525 | dependencies: |
686 | - "@babel/helper-plugin-utils" "^7.10.4" | |
526 | + "@babel/helper-plugin-utils" "^7.13.0" | |
687 | 527 | |
688 | -"@babel/plugin-transform-async-to-generator@^7.12.1": | |
689 | - version "7.12.1" | |
690 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1" | |
691 | - integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== | |
528 | +"@babel/plugin-transform-async-to-generator@^7.13.0": | |
529 | + version "7.13.0" | |
530 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f" | |
531 | + integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== | |
692 | 532 | dependencies: |
693 | - "@babel/helper-module-imports" "^7.12.1" | |
694 | - "@babel/helper-plugin-utils" "^7.10.4" | |
695 | - "@babel/helper-remap-async-to-generator" "^7.12.1" | |
533 | + "@babel/helper-module-imports" "^7.12.13" | |
534 | + "@babel/helper-plugin-utils" "^7.13.0" | |
535 | + "@babel/helper-remap-async-to-generator" "^7.13.0" | |
696 | 536 | |
697 | -"@babel/plugin-transform-block-scoped-functions@^7.12.1": | |
698 | - version "7.12.1" | |
699 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9" | |
700 | - integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== | |
537 | +"@babel/plugin-transform-block-scoped-functions@^7.12.13": | |
538 | + version "7.12.13" | |
539 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4" | |
540 | + integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg== | |
701 | 541 | dependencies: |
702 | - "@babel/helper-plugin-utils" "^7.10.4" | |
542 | + "@babel/helper-plugin-utils" "^7.12.13" | |
703 | 543 | |
704 | -"@babel/plugin-transform-block-scoping@^7.12.11": | |
705 | - version "7.12.12" | |
706 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca" | |
707 | - integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== | |
544 | +"@babel/plugin-transform-block-scoping@^7.12.13": | |
545 | + version "7.12.13" | |
546 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61" | |
547 | + integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ== | |
708 | 548 | dependencies: |
709 | - "@babel/helper-plugin-utils" "^7.10.4" | |
549 | + "@babel/helper-plugin-utils" "^7.12.13" | |
710 | 550 | |
711 | -"@babel/plugin-transform-classes@^7.12.1": | |
712 | - version "7.12.1" | |
713 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6" | |
714 | - integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== | |
551 | +"@babel/plugin-transform-classes@^7.13.0": | |
552 | + version "7.13.0" | |
553 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" | |
554 | + integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== | |
715 | 555 | dependencies: |
716 | - "@babel/helper-annotate-as-pure" "^7.10.4" | |
717 | - "@babel/helper-define-map" "^7.10.4" | |
718 | - "@babel/helper-function-name" "^7.10.4" | |
719 | - "@babel/helper-optimise-call-expression" "^7.10.4" | |
720 | - "@babel/helper-plugin-utils" "^7.10.4" | |
721 | - "@babel/helper-replace-supers" "^7.12.1" | |
722 | - "@babel/helper-split-export-declaration" "^7.10.4" | |
556 | + "@babel/helper-annotate-as-pure" "^7.12.13" | |
557 | + "@babel/helper-function-name" "^7.12.13" | |
558 | + "@babel/helper-optimise-call-expression" "^7.12.13" | |
559 | + "@babel/helper-plugin-utils" "^7.13.0" | |
560 | + "@babel/helper-replace-supers" "^7.13.0" | |
561 | + "@babel/helper-split-export-declaration" "^7.12.13" | |
723 | 562 | globals "^11.1.0" |
724 | 563 | |
725 | -"@babel/plugin-transform-computed-properties@^7.12.1": | |
726 | - version "7.12.1" | |
727 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852" | |
728 | - integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== | |
564 | +"@babel/plugin-transform-computed-properties@^7.13.0": | |
565 | + version "7.13.0" | |
566 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed" | |
567 | + integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== | |
729 | 568 | dependencies: |
730 | - "@babel/helper-plugin-utils" "^7.10.4" | |
569 | + "@babel/helper-plugin-utils" "^7.13.0" | |
731 | 570 | |
732 | -"@babel/plugin-transform-destructuring@^7.12.1": | |
733 | - version "7.12.1" | |
734 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847" | |
735 | - integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== | |
571 | +"@babel/plugin-transform-destructuring@^7.13.0": | |
572 | + version "7.13.0" | |
573 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" | |
574 | + integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== | |
736 | 575 | dependencies: |
737 | - "@babel/helper-plugin-utils" "^7.10.4" | |
576 | + "@babel/helper-plugin-utils" "^7.13.0" | |
738 | 577 | |
739 | -"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4": | |
740 | - version "7.12.1" | |
741 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975" | |
742 | - integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== | |
578 | +"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": | |
579 | + version "7.12.13" | |
580 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad" | |
581 | + integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== | |
743 | 582 | dependencies: |
744 | - "@babel/helper-create-regexp-features-plugin" "^7.12.1" | |
745 | - "@babel/helper-plugin-utils" "^7.10.4" | |
583 | + "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
584 | + "@babel/helper-plugin-utils" "^7.12.13" | |
746 | 585 | |
747 | -"@babel/plugin-transform-duplicate-keys@^7.12.1": | |
748 | - version "7.12.1" | |
749 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228" | |
750 | - integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== | |
586 | +"@babel/plugin-transform-duplicate-keys@^7.12.13": | |
587 | + version "7.12.13" | |
588 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de" | |
589 | + integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ== | |
751 | 590 | dependencies: |
752 | - "@babel/helper-plugin-utils" "^7.10.4" | |
591 | + "@babel/helper-plugin-utils" "^7.12.13" | |
753 | 592 | |
754 | -"@babel/plugin-transform-exponentiation-operator@^7.12.1": | |
755 | - version "7.12.1" | |
756 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0" | |
757 | - integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== | |
593 | +"@babel/plugin-transform-exponentiation-operator@^7.12.13": | |
594 | + version "7.12.13" | |
595 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1" | |
596 | + integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== | |
758 | 597 | dependencies: |
759 | - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" | |
760 | - "@babel/helper-plugin-utils" "^7.10.4" | |
598 | + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" | |
599 | + "@babel/helper-plugin-utils" "^7.12.13" | |
761 | 600 | |
762 | -"@babel/plugin-transform-for-of@^7.12.1": | |
763 | - version "7.12.1" | |
764 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa" | |
765 | - integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== | |
601 | +"@babel/plugin-transform-for-of@^7.13.0": | |
602 | + version "7.13.0" | |
603 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" | |
604 | + integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== | |
766 | 605 | dependencies: |
767 | - "@babel/helper-plugin-utils" "^7.10.4" | |
606 | + "@babel/helper-plugin-utils" "^7.13.0" | |
768 | 607 | |
769 | -"@babel/plugin-transform-function-name@^7.12.1": | |
770 | - version "7.12.1" | |
771 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667" | |
772 | - integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== | |
608 | +"@babel/plugin-transform-function-name@^7.12.13": | |
609 | + version "7.12.13" | |
610 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051" | |
611 | + integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== | |
773 | 612 | dependencies: |
774 | - "@babel/helper-function-name" "^7.10.4" | |
775 | - "@babel/helper-plugin-utils" "^7.10.4" | |
613 | + "@babel/helper-function-name" "^7.12.13" | |
614 | + "@babel/helper-plugin-utils" "^7.12.13" | |
776 | 615 | |
777 | -"@babel/plugin-transform-literals@^7.12.1": | |
778 | - version "7.12.1" | |
779 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57" | |
780 | - integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== | |
616 | +"@babel/plugin-transform-literals@^7.12.13": | |
617 | + version "7.12.13" | |
618 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9" | |
619 | + integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== | |
781 | 620 | dependencies: |
782 | - "@babel/helper-plugin-utils" "^7.10.4" | |
621 | + "@babel/helper-plugin-utils" "^7.12.13" | |
783 | 622 | |
784 | -"@babel/plugin-transform-member-expression-literals@^7.12.1": | |
785 | - version "7.12.1" | |
786 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad" | |
787 | - integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== | |
623 | +"@babel/plugin-transform-member-expression-literals@^7.12.13": | |
624 | + version "7.12.13" | |
625 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40" | |
626 | + integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg== | |
788 | 627 | dependencies: |
789 | - "@babel/helper-plugin-utils" "^7.10.4" | |
628 | + "@babel/helper-plugin-utils" "^7.12.13" | |
790 | 629 | |
791 | -"@babel/plugin-transform-modules-amd@^7.12.1": | |
792 | - version "7.12.1" | |
793 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9" | |
794 | - integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== | |
630 | +"@babel/plugin-transform-modules-amd@^7.13.0": | |
631 | + version "7.13.0" | |
632 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3" | |
633 | + integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ== | |
795 | 634 | dependencies: |
796 | - "@babel/helper-module-transforms" "^7.12.1" | |
797 | - "@babel/helper-plugin-utils" "^7.10.4" | |
635 | + "@babel/helper-module-transforms" "^7.13.0" | |
636 | + "@babel/helper-plugin-utils" "^7.13.0" | |
798 | 637 | babel-plugin-dynamic-import-node "^2.3.3" |
799 | 638 | |
800 | -"@babel/plugin-transform-modules-commonjs@^7.12.1": | |
801 | - version "7.12.1" | |
802 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648" | |
803 | - integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== | |
639 | +"@babel/plugin-transform-modules-commonjs@^7.13.8": | |
640 | + version "7.13.8" | |
641 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" | |
642 | + integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== | |
804 | 643 | dependencies: |
805 | - "@babel/helper-module-transforms" "^7.12.1" | |
806 | - "@babel/helper-plugin-utils" "^7.10.4" | |
807 | - "@babel/helper-simple-access" "^7.12.1" | |
644 | + "@babel/helper-module-transforms" "^7.13.0" | |
645 | + "@babel/helper-plugin-utils" "^7.13.0" | |
646 | + "@babel/helper-simple-access" "^7.12.13" | |
808 | 647 | babel-plugin-dynamic-import-node "^2.3.3" |
809 | 648 | |
810 | -"@babel/plugin-transform-modules-systemjs@^7.12.1": | |
811 | - version "7.12.1" | |
812 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086" | |
813 | - integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== | |
649 | +"@babel/plugin-transform-modules-systemjs@^7.13.8": | |
650 | + version "7.13.8" | |
651 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3" | |
652 | + integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A== | |
814 | 653 | dependencies: |
815 | - "@babel/helper-hoist-variables" "^7.10.4" | |
816 | - "@babel/helper-module-transforms" "^7.12.1" | |
817 | - "@babel/helper-plugin-utils" "^7.10.4" | |
818 | - "@babel/helper-validator-identifier" "^7.10.4" | |
654 | + "@babel/helper-hoist-variables" "^7.13.0" | |
655 | + "@babel/helper-module-transforms" "^7.13.0" | |
656 | + "@babel/helper-plugin-utils" "^7.13.0" | |
657 | + "@babel/helper-validator-identifier" "^7.12.11" | |
819 | 658 | babel-plugin-dynamic-import-node "^2.3.3" |
820 | 659 | |
821 | -"@babel/plugin-transform-modules-umd@^7.12.1": | |
822 | - version "7.12.1" | |
823 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902" | |
824 | - integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== | |
660 | +"@babel/plugin-transform-modules-umd@^7.13.0": | |
661 | + version "7.13.0" | |
662 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b" | |
663 | + integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw== | |
825 | 664 | dependencies: |
826 | - "@babel/helper-module-transforms" "^7.12.1" | |
827 | - "@babel/helper-plugin-utils" "^7.10.4" | |
665 | + "@babel/helper-module-transforms" "^7.13.0" | |
666 | + "@babel/helper-plugin-utils" "^7.13.0" | |
828 | 667 | |
829 | -"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": | |
830 | - version "7.12.1" | |
831 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753" | |
832 | - integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== | |
668 | +"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": | |
669 | + version "7.12.13" | |
670 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9" | |
671 | + integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA== | |
833 | 672 | dependencies: |
834 | - "@babel/helper-create-regexp-features-plugin" "^7.12.1" | |
673 | + "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
835 | 674 | |
836 | -"@babel/plugin-transform-new-target@^7.12.1": | |
837 | - version "7.12.1" | |
838 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0" | |
839 | - integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== | |
675 | +"@babel/plugin-transform-new-target@^7.12.13": | |
676 | + version "7.12.13" | |
677 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c" | |
678 | + integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ== | |
840 | 679 | dependencies: |
841 | - "@babel/helper-plugin-utils" "^7.10.4" | |
680 | + "@babel/helper-plugin-utils" "^7.12.13" | |
842 | 681 | |
843 | -"@babel/plugin-transform-object-super@^7.12.1": | |
844 | - version "7.12.1" | |
845 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e" | |
846 | - integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== | |
682 | +"@babel/plugin-transform-object-super@^7.12.13": | |
683 | + version "7.12.13" | |
684 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7" | |
685 | + integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ== | |
847 | 686 | dependencies: |
848 | - "@babel/helper-plugin-utils" "^7.10.4" | |
849 | - "@babel/helper-replace-supers" "^7.12.1" | |
687 | + "@babel/helper-plugin-utils" "^7.12.13" | |
688 | + "@babel/helper-replace-supers" "^7.12.13" | |
850 | 689 | |
851 | -"@babel/plugin-transform-parameters@^7.12.1": | |
852 | - version "7.12.1" | |
853 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" | |
854 | - integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== | |
690 | +"@babel/plugin-transform-parameters@^7.13.0": | |
691 | + version "7.13.0" | |
692 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" | |
693 | + integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== | |
855 | 694 | dependencies: |
856 | - "@babel/helper-plugin-utils" "^7.10.4" | |
695 | + "@babel/helper-plugin-utils" "^7.13.0" | |
857 | 696 | |
858 | -"@babel/plugin-transform-property-literals@^7.12.1": | |
859 | - version "7.12.1" | |
860 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd" | |
861 | - integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== | |
697 | +"@babel/plugin-transform-property-literals@^7.12.13": | |
698 | + version "7.12.13" | |
699 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81" | |
700 | + integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A== | |
862 | 701 | dependencies: |
863 | - "@babel/helper-plugin-utils" "^7.10.4" | |
702 | + "@babel/helper-plugin-utils" "^7.12.13" | |
864 | 703 | |
865 | -"@babel/plugin-transform-regenerator@^7.12.1": | |
866 | - version "7.12.1" | |
867 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753" | |
868 | - integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== | |
704 | +"@babel/plugin-transform-regenerator@^7.12.13": | |
705 | + version "7.12.13" | |
706 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5" | |
707 | + integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA== | |
869 | 708 | dependencies: |
870 | 709 | regenerator-transform "^0.14.2" |
871 | 710 | |
872 | -"@babel/plugin-transform-reserved-words@^7.12.1": | |
873 | - version "7.12.1" | |
874 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8" | |
875 | - integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== | |
711 | +"@babel/plugin-transform-reserved-words@^7.12.13": | |
712 | + version "7.12.13" | |
713 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695" | |
714 | + integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg== | |
876 | 715 | dependencies: |
877 | - "@babel/helper-plugin-utils" "^7.10.4" | |
716 | + "@babel/helper-plugin-utils" "^7.12.13" | |
878 | 717 | |
879 | -"@babel/plugin-transform-shorthand-properties@^7.12.1": | |
880 | - version "7.12.1" | |
881 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3" | |
882 | - integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== | |
718 | +"@babel/plugin-transform-shorthand-properties@^7.12.13": | |
719 | + version "7.12.13" | |
720 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" | |
721 | + integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== | |
883 | 722 | dependencies: |
884 | - "@babel/helper-plugin-utils" "^7.10.4" | |
723 | + "@babel/helper-plugin-utils" "^7.12.13" | |
885 | 724 | |
886 | -"@babel/plugin-transform-spread@^7.12.1": | |
887 | - version "7.12.1" | |
888 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e" | |
889 | - integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== | |
725 | +"@babel/plugin-transform-spread@^7.13.0": | |
726 | + version "7.13.0" | |
727 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd" | |
728 | + integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== | |
890 | 729 | dependencies: |
891 | - "@babel/helper-plugin-utils" "^7.10.4" | |
730 | + "@babel/helper-plugin-utils" "^7.13.0" | |
892 | 731 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" |
893 | 732 | |
894 | -"@babel/plugin-transform-sticky-regex@^7.12.7": | |
895 | - version "7.12.7" | |
896 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad" | |
897 | - integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== | |
733 | +"@babel/plugin-transform-sticky-regex@^7.12.13": | |
734 | + version "7.12.13" | |
735 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f" | |
736 | + integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== | |
898 | 737 | dependencies: |
899 | - "@babel/helper-plugin-utils" "^7.10.4" | |
738 | + "@babel/helper-plugin-utils" "^7.12.13" | |
900 | 739 | |
901 | -"@babel/plugin-transform-template-literals@^7.12.1": | |
902 | - version "7.12.1" | |
903 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843" | |
904 | - integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== | |
740 | +"@babel/plugin-transform-template-literals@^7.13.0": | |
741 | + version "7.13.0" | |
742 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" | |
743 | + integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== | |
905 | 744 | dependencies: |
906 | - "@babel/helper-plugin-utils" "^7.10.4" | |
745 | + "@babel/helper-plugin-utils" "^7.13.0" | |
907 | 746 | |
908 | -"@babel/plugin-transform-typeof-symbol@^7.12.10": | |
909 | - version "7.12.10" | |
910 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b" | |
911 | - integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA== | |
747 | +"@babel/plugin-transform-typeof-symbol@^7.12.13": | |
748 | + version "7.12.13" | |
749 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f" | |
750 | + integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ== | |
912 | 751 | dependencies: |
913 | - "@babel/helper-plugin-utils" "^7.10.4" | |
752 | + "@babel/helper-plugin-utils" "^7.12.13" | |
914 | 753 | |
915 | 754 | "@babel/plugin-transform-typescript@^7.12.1": |
916 | - version "7.12.1" | |
917 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz#d92cc0af504d510e26a754a7dbc2e5c8cd9c7ab4" | |
918 | - integrity sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw== | |
755 | + version "7.13.0" | |
756 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz#4a498e1f3600342d2a9e61f60131018f55774853" | |
757 | + integrity sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ== | |
919 | 758 | dependencies: |
920 | - "@babel/helper-create-class-features-plugin" "^7.12.1" | |
921 | - "@babel/helper-plugin-utils" "^7.10.4" | |
922 | - "@babel/plugin-syntax-typescript" "^7.12.1" | |
759 | + "@babel/helper-create-class-features-plugin" "^7.13.0" | |
760 | + "@babel/helper-plugin-utils" "^7.13.0" | |
761 | + "@babel/plugin-syntax-typescript" "^7.12.13" | |
923 | 762 | |
924 | -"@babel/plugin-transform-unicode-escapes@^7.12.1": | |
925 | - version "7.12.1" | |
926 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709" | |
927 | - integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== | |
763 | +"@babel/plugin-transform-unicode-escapes@^7.12.13": | |
764 | + version "7.12.13" | |
765 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74" | |
766 | + integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw== | |
928 | 767 | dependencies: |
929 | - "@babel/helper-plugin-utils" "^7.10.4" | |
768 | + "@babel/helper-plugin-utils" "^7.12.13" | |
930 | 769 | |
931 | -"@babel/plugin-transform-unicode-regex@^7.12.1": | |
932 | - version "7.12.1" | |
933 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb" | |
934 | - integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== | |
770 | +"@babel/plugin-transform-unicode-regex@^7.12.13": | |
771 | + version "7.12.13" | |
772 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac" | |
773 | + integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== | |
935 | 774 | dependencies: |
936 | - "@babel/helper-create-regexp-features-plugin" "^7.12.1" | |
937 | - "@babel/helper-plugin-utils" "^7.10.4" | |
775 | + "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
776 | + "@babel/helper-plugin-utils" "^7.12.13" | |
938 | 777 | |
939 | 778 | "@babel/preset-env@^7.11.0": |
940 | - version "7.12.11" | |
941 | - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9" | |
942 | - integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== | |
779 | + version "7.13.10" | |
780 | + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz#b5cde31d5fe77ab2a6ab3d453b59041a1b3a5252" | |
781 | + integrity sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ== | |
943 | 782 | dependencies: |
944 | - "@babel/compat-data" "^7.12.7" | |
945 | - "@babel/helper-compilation-targets" "^7.12.5" | |
946 | - "@babel/helper-module-imports" "^7.12.5" | |
947 | - "@babel/helper-plugin-utils" "^7.10.4" | |
948 | - "@babel/helper-validator-option" "^7.12.11" | |
949 | - "@babel/plugin-proposal-async-generator-functions" "^7.12.1" | |
950 | - "@babel/plugin-proposal-class-properties" "^7.12.1" | |
951 | - "@babel/plugin-proposal-dynamic-import" "^7.12.1" | |
952 | - "@babel/plugin-proposal-export-namespace-from" "^7.12.1" | |
953 | - "@babel/plugin-proposal-json-strings" "^7.12.1" | |
954 | - "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" | |
955 | - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" | |
956 | - "@babel/plugin-proposal-numeric-separator" "^7.12.7" | |
957 | - "@babel/plugin-proposal-object-rest-spread" "^7.12.1" | |
958 | - "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" | |
959 | - "@babel/plugin-proposal-optional-chaining" "^7.12.7" | |
960 | - "@babel/plugin-proposal-private-methods" "^7.12.1" | |
961 | - "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" | |
962 | - "@babel/plugin-syntax-async-generators" "^7.8.0" | |
963 | - "@babel/plugin-syntax-class-properties" "^7.12.1" | |
964 | - "@babel/plugin-syntax-dynamic-import" "^7.8.0" | |
783 | + "@babel/compat-data" "^7.13.8" | |
784 | + "@babel/helper-compilation-targets" "^7.13.10" | |
785 | + "@babel/helper-plugin-utils" "^7.13.0" | |
786 | + "@babel/helper-validator-option" "^7.12.17" | |
787 | + "@babel/plugin-proposal-async-generator-functions" "^7.13.8" | |
788 | + "@babel/plugin-proposal-class-properties" "^7.13.0" | |
789 | + "@babel/plugin-proposal-dynamic-import" "^7.13.8" | |
790 | + "@babel/plugin-proposal-export-namespace-from" "^7.12.13" | |
791 | + "@babel/plugin-proposal-json-strings" "^7.13.8" | |
792 | + "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" | |
793 | + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" | |
794 | + "@babel/plugin-proposal-numeric-separator" "^7.12.13" | |
795 | + "@babel/plugin-proposal-object-rest-spread" "^7.13.8" | |
796 | + "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" | |
797 | + "@babel/plugin-proposal-optional-chaining" "^7.13.8" | |
798 | + "@babel/plugin-proposal-private-methods" "^7.13.0" | |
799 | + "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" | |
800 | + "@babel/plugin-syntax-async-generators" "^7.8.4" | |
801 | + "@babel/plugin-syntax-class-properties" "^7.12.13" | |
802 | + "@babel/plugin-syntax-dynamic-import" "^7.8.3" | |
965 | 803 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" |
966 | - "@babel/plugin-syntax-json-strings" "^7.8.0" | |
804 | + "@babel/plugin-syntax-json-strings" "^7.8.3" | |
967 | 805 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" |
968 | - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | |
806 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" | |
969 | 807 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
970 | - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | |
971 | - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | |
972 | - "@babel/plugin-syntax-optional-chaining" "^7.8.0" | |
973 | - "@babel/plugin-syntax-top-level-await" "^7.12.1" | |
974 | - "@babel/plugin-transform-arrow-functions" "^7.12.1" | |
975 | - "@babel/plugin-transform-async-to-generator" "^7.12.1" | |
976 | - "@babel/plugin-transform-block-scoped-functions" "^7.12.1" | |
977 | - "@babel/plugin-transform-block-scoping" "^7.12.11" | |
978 | - "@babel/plugin-transform-classes" "^7.12.1" | |
979 | - "@babel/plugin-transform-computed-properties" "^7.12.1" | |
980 | - "@babel/plugin-transform-destructuring" "^7.12.1" | |
981 | - "@babel/plugin-transform-dotall-regex" "^7.12.1" | |
982 | - "@babel/plugin-transform-duplicate-keys" "^7.12.1" | |
983 | - "@babel/plugin-transform-exponentiation-operator" "^7.12.1" | |
984 | - "@babel/plugin-transform-for-of" "^7.12.1" | |
985 | - "@babel/plugin-transform-function-name" "^7.12.1" | |
986 | - "@babel/plugin-transform-literals" "^7.12.1" | |
987 | - "@babel/plugin-transform-member-expression-literals" "^7.12.1" | |
988 | - "@babel/plugin-transform-modules-amd" "^7.12.1" | |
989 | - "@babel/plugin-transform-modules-commonjs" "^7.12.1" | |
990 | - "@babel/plugin-transform-modules-systemjs" "^7.12.1" | |
991 | - "@babel/plugin-transform-modules-umd" "^7.12.1" | |
992 | - "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" | |
993 | - "@babel/plugin-transform-new-target" "^7.12.1" | |
994 | - "@babel/plugin-transform-object-super" "^7.12.1" | |
995 | - "@babel/plugin-transform-parameters" "^7.12.1" | |
996 | - "@babel/plugin-transform-property-literals" "^7.12.1" | |
997 | - "@babel/plugin-transform-regenerator" "^7.12.1" | |
998 | - "@babel/plugin-transform-reserved-words" "^7.12.1" | |
999 | - "@babel/plugin-transform-shorthand-properties" "^7.12.1" | |
1000 | - "@babel/plugin-transform-spread" "^7.12.1" | |
1001 | - "@babel/plugin-transform-sticky-regex" "^7.12.7" | |
1002 | - "@babel/plugin-transform-template-literals" "^7.12.1" | |
1003 | - "@babel/plugin-transform-typeof-symbol" "^7.12.10" | |
1004 | - "@babel/plugin-transform-unicode-escapes" "^7.12.1" | |
1005 | - "@babel/plugin-transform-unicode-regex" "^7.12.1" | |
1006 | - "@babel/preset-modules" "^0.1.3" | |
1007 | - "@babel/types" "^7.12.11" | |
1008 | - core-js-compat "^3.8.0" | |
1009 | - semver "^5.5.0" | |
808 | + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" | |
809 | + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" | |
810 | + "@babel/plugin-syntax-optional-chaining" "^7.8.3" | |
811 | + "@babel/plugin-syntax-top-level-await" "^7.12.13" | |
812 | + "@babel/plugin-transform-arrow-functions" "^7.13.0" | |
813 | + "@babel/plugin-transform-async-to-generator" "^7.13.0" | |
814 | + "@babel/plugin-transform-block-scoped-functions" "^7.12.13" | |
815 | + "@babel/plugin-transform-block-scoping" "^7.12.13" | |
816 | + "@babel/plugin-transform-classes" "^7.13.0" | |
817 | + "@babel/plugin-transform-computed-properties" "^7.13.0" | |
818 | + "@babel/plugin-transform-destructuring" "^7.13.0" | |
819 | + "@babel/plugin-transform-dotall-regex" "^7.12.13" | |
820 | + "@babel/plugin-transform-duplicate-keys" "^7.12.13" | |
821 | + "@babel/plugin-transform-exponentiation-operator" "^7.12.13" | |
822 | + "@babel/plugin-transform-for-of" "^7.13.0" | |
823 | + "@babel/plugin-transform-function-name" "^7.12.13" | |
824 | + "@babel/plugin-transform-literals" "^7.12.13" | |
825 | + "@babel/plugin-transform-member-expression-literals" "^7.12.13" | |
826 | + "@babel/plugin-transform-modules-amd" "^7.13.0" | |
827 | + "@babel/plugin-transform-modules-commonjs" "^7.13.8" | |
828 | + "@babel/plugin-transform-modules-systemjs" "^7.13.8" | |
829 | + "@babel/plugin-transform-modules-umd" "^7.13.0" | |
830 | + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" | |
831 | + "@babel/plugin-transform-new-target" "^7.12.13" | |
832 | + "@babel/plugin-transform-object-super" "^7.12.13" | |
833 | + "@babel/plugin-transform-parameters" "^7.13.0" | |
834 | + "@babel/plugin-transform-property-literals" "^7.12.13" | |
835 | + "@babel/plugin-transform-regenerator" "^7.12.13" | |
836 | + "@babel/plugin-transform-reserved-words" "^7.12.13" | |
837 | + "@babel/plugin-transform-shorthand-properties" "^7.12.13" | |
838 | + "@babel/plugin-transform-spread" "^7.13.0" | |
839 | + "@babel/plugin-transform-sticky-regex" "^7.12.13" | |
840 | + "@babel/plugin-transform-template-literals" "^7.13.0" | |
841 | + "@babel/plugin-transform-typeof-symbol" "^7.12.13" | |
842 | + "@babel/plugin-transform-unicode-escapes" "^7.12.13" | |
843 | + "@babel/plugin-transform-unicode-regex" "^7.12.13" | |
844 | + "@babel/preset-modules" "^0.1.4" | |
845 | + "@babel/types" "^7.13.0" | |
846 | + babel-plugin-polyfill-corejs2 "^0.1.4" | |
847 | + babel-plugin-polyfill-corejs3 "^0.1.3" | |
848 | + babel-plugin-polyfill-regenerator "^0.1.2" | |
849 | + core-js-compat "^3.9.0" | |
850 | + semver "^6.3.0" | |
1010 | 851 | |
1011 | -"@babel/preset-modules@^0.1.3": | |
852 | +"@babel/preset-modules@^0.1.4": | |
1012 | 853 | version "0.1.4" |
1013 | 854 | resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" |
1014 | 855 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== |
... | ... | @@ -1020,27 +861,18 @@ |
1020 | 861 | esutils "^2.0.2" |
1021 | 862 | |
1022 | 863 | "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4": |
1023 | - version "7.12.5" | |
1024 | - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" | |
1025 | - integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== | |
864 | + version "7.13.10" | |
865 | + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" | |
866 | + integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== | |
1026 | 867 | dependencies: |
1027 | 868 | regenerator-runtime "^0.13.4" |
1028 | 869 | |
1029 | 870 | "@babel/standalone@^7.12.12": |
1030 | - version "7.12.12" | |
1031 | - resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.12.tgz#f858ab1c76d9c4c23fe0783a0330ad37755f0176" | |
1032 | - integrity sha512-sHuNDN9NvPHsDAmxPD3RpsIeqCoFSW+ySa6+3teInrYe9y0Gn5swLQ2ZE7Zk6L8eBBESZM2ob1l98qWauQfDMA== | |
871 | + version "7.13.11" | |
872 | + resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.13.11.tgz#d732c9f2780480d54ebb4d1e49c76b2466d40270" | |
873 | + integrity sha512-gMHUj20F9caXNNCme45IxVi7C4f6IGrlrBehK+kTHj/PoZQ5rS9LHPfBILKZZbmd5eRfr7EkZU3zNkpd06ekmw== | |
1033 | 874 | |
1034 | -"@babel/template@^7.0.0", "@babel/template@^7.10.4", "@babel/template@^7.12.7": | |
1035 | - version "7.12.7" | |
1036 | - resolved "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" | |
1037 | - integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== | |
1038 | - dependencies: | |
1039 | - "@babel/code-frame" "^7.10.4" | |
1040 | - "@babel/parser" "^7.12.7" | |
1041 | - "@babel/types" "^7.12.7" | |
1042 | - | |
1043 | -"@babel/template@^7.12.13", "@babel/template@^7.3.3": | |
875 | +"@babel/template@^7.0.0", "@babel/template@^7.12.13", "@babel/template@^7.3.3": | |
1044 | 876 | version "7.12.13" |
1045 | 877 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" |
1046 | 878 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== |
... | ... | @@ -1049,22 +881,7 @@ |
1049 | 881 | "@babel/parser" "^7.12.13" |
1050 | 882 | "@babel/types" "^7.12.13" |
1051 | 883 | |
1052 | -"@babel/traverse@^7.0.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5": | |
1053 | - version "7.12.12" | |
1054 | - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376" | |
1055 | - integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== | |
1056 | - dependencies: | |
1057 | - "@babel/code-frame" "^7.12.11" | |
1058 | - "@babel/generator" "^7.12.11" | |
1059 | - "@babel/helper-function-name" "^7.12.11" | |
1060 | - "@babel/helper-split-export-declaration" "^7.12.11" | |
1061 | - "@babel/parser" "^7.12.11" | |
1062 | - "@babel/types" "^7.12.12" | |
1063 | - debug "^4.1.0" | |
1064 | - globals "^11.1.0" | |
1065 | - lodash "^4.17.19" | |
1066 | - | |
1067 | -"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0": | |
884 | +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0": | |
1068 | 885 | version "7.13.0" |
1069 | 886 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz#6d95752475f86ee7ded06536de309a65fc8966cc" |
1070 | 887 | integrity sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ== |
... | ... | @@ -1079,16 +896,7 @@ |
1079 | 896 | globals "^11.1.0" |
1080 | 897 | lodash "^4.17.19" |
1081 | 898 | |
1082 | -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4": | |
1083 | - version "7.12.12" | |
1084 | - resolved "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" | |
1085 | - integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== | |
1086 | - dependencies: | |
1087 | - "@babel/helper-validator-identifier" "^7.12.11" | |
1088 | - lodash "^4.17.19" | |
1089 | - to-fast-properties "^2.0.0" | |
1090 | - | |
1091 | -"@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3": | |
899 | +"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": | |
1092 | 900 | version "7.13.0" |
1093 | 901 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz#74424d2816f0171b4100f0ab34e9a374efdf7f80" |
1094 | 902 | integrity sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA== |
... | ... | @@ -1141,11 +949,6 @@ |
1141 | 949 | "@commitlint/types" "^12.0.1" |
1142 | 950 | lodash "^4.17.19" |
1143 | 951 | |
1144 | -"@commitlint/execute-rule@^11.0.0": | |
1145 | - version "11.0.0" | |
1146 | - resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz#3ed60ab7a33019e58d90e2d891b75d7df77b4b4d" | |
1147 | - integrity sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ== | |
1148 | - | |
1149 | 952 | "@commitlint/execute-rule@^12.0.1": |
1150 | 953 | version "12.0.1" |
1151 | 954 | resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.0.1.tgz#5bb2eba929270cafb2bd8191799d8b451de7fb7e" |
... | ... | @@ -1177,20 +980,7 @@ |
1177 | 980 | "@commitlint/rules" "^12.0.1" |
1178 | 981 | "@commitlint/types" "^12.0.1" |
1179 | 982 | |
1180 | -"@commitlint/load@>6.1.1": | |
1181 | - version "11.0.0" | |
1182 | - resolved "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz#f736562f0ffa7e773f8808fea93319042ee18211" | |
1183 | - integrity sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg== | |
1184 | - dependencies: | |
1185 | - "@commitlint/execute-rule" "^11.0.0" | |
1186 | - "@commitlint/resolve-extends" "^11.0.0" | |
1187 | - "@commitlint/types" "^11.0.0" | |
1188 | - chalk "4.1.0" | |
1189 | - cosmiconfig "^7.0.0" | |
1190 | - lodash "^4.17.19" | |
1191 | - resolve-from "^5.0.0" | |
1192 | - | |
1193 | -"@commitlint/load@^12.0.1": | |
983 | +"@commitlint/load@>6.1.1", "@commitlint/load@^12.0.1": | |
1194 | 984 | version "12.0.1" |
1195 | 985 | resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.0.1.tgz#4d180fc88e5b4cfcb476a245d899f85154137502" |
1196 | 986 | integrity sha512-dX8KdCWn7w0bTkkk3zKQpe9X8vsTRa5EM+1ffF313wCX9b6tGa9vujhEHCkSzKAbbE2tFV64CHZygE7rtlHdIA== |
... | ... | @@ -1227,16 +1017,6 @@ |
1227 | 1017 | fs-extra "^9.0.0" |
1228 | 1018 | git-raw-commits "^2.0.0" |
1229 | 1019 | |
1230 | -"@commitlint/resolve-extends@^11.0.0": | |
1231 | - version "11.0.0" | |
1232 | - resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz#158ecbe27d4a2a51d426111a01478e216fbb1036" | |
1233 | - integrity sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw== | |
1234 | - dependencies: | |
1235 | - import-fresh "^3.0.0" | |
1236 | - lodash "^4.17.19" | |
1237 | - resolve-from "^5.0.0" | |
1238 | - resolve-global "^1.0.0" | |
1239 | - | |
1240 | 1020 | "@commitlint/resolve-extends@^12.0.1": |
1241 | 1021 | version "12.0.1" |
1242 | 1022 | resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.0.1.tgz#77509f386e08bd30262ec9a75c783d8f4f028fd2" |
... | ... | @@ -1269,11 +1049,6 @@ |
1269 | 1049 | dependencies: |
1270 | 1050 | find-up "^5.0.0" |
1271 | 1051 | |
1272 | -"@commitlint/types@^11.0.0": | |
1273 | - version "11.0.0" | |
1274 | - resolved "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz#719cf05fcc1abb6533610a2e0f5dd1e61eac14fe" | |
1275 | - integrity sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ== | |
1276 | - | |
1277 | 1052 | "@commitlint/types@^12.0.1": |
1278 | 1053 | version "12.0.1" |
1279 | 1054 | resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.0.1.tgz#04a0cbb8aa56b7c004f8939c2d1ef8892ec68327" |
... | ... | @@ -1282,9 +1057,9 @@ |
1282 | 1057 | chalk "^4.0.0" |
1283 | 1058 | |
1284 | 1059 | "@ctrl/tinycolor@^3.3.1": |
1285 | - version "3.3.3" | |
1286 | - resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.3.3.tgz#980487763bc7c9238d6d88d1ac0dee2d4df3df68" | |
1287 | - integrity sha512-v75yutF4BDMv9weDQVM+K5XEfjiODhugSV729pnoxtBDO61ij2CsDnQa4N4E9xGaH3/FX5ASZjnajljT2F71tA== | |
1060 | + version "3.4.0" | |
1061 | + resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f" | |
1062 | + integrity sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ== | |
1288 | 1063 | |
1289 | 1064 | "@eslint/eslintrc@^0.4.0": |
1290 | 1065 | version "0.4.0" |
... | ... | @@ -1347,9 +1122,9 @@ |
1347 | 1122 | cross-fetch "^3.0.6" |
1348 | 1123 | |
1349 | 1124 | "@iconify/json@^1.1.317": |
1350 | - version "1.1.317" | |
1351 | - resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.317.tgz#ee0c6b2f9da3c0b0e63b75233df567dc3d361db2" | |
1352 | - integrity sha512-GLlQhfZkyTv6JqzLZZ7bMKURVMyQeInZUaN4ZlwJl9PvTZzJ/zE3uMvXCpLq1nWWA5//DbV7Au8shjLGmaJn6Q== | |
1125 | + version "1.1.318" | |
1126 | + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.318.tgz#7d4e56de65dd0c7c6381a94dde1d574efea308ff" | |
1127 | + integrity sha512-t66mtNPASeG/MQm3CWIJSr9jy8nXWNVs1L3auWc41xHqS114/dGkSlgu1LkMPUgBdyIB5AD4bjZrl50QuEf44Q== | |
1353 | 1128 | |
1354 | 1129 | "@intlify/core-base@9.0.0": |
1355 | 1130 | version "9.0.0" |
... | ... | @@ -1621,9 +1396,9 @@ |
1621 | 1396 | "@iconify/iconify" ">=2.0.0-rc.6" |
1622 | 1397 | |
1623 | 1398 | "@rollup/plugin-babel@^5.2.0": |
1624 | - version "5.2.2" | |
1625 | - resolved "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.2.2.tgz#e5623a01dd8e37e004ba87f2de218c611727d9b2" | |
1626 | - integrity sha512-MjmH7GvFT4TW8xFdIeFS3wqIX646y5tACdxkTO+khbHvS3ZcVJL6vkAHLw2wqPmkhwCfWHoNsp15VYNwW6JEJA== | |
1399 | + version "5.3.0" | |
1400 | + resolved "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz#9cb1c5146ddd6a4968ad96f209c50c62f92f9879" | |
1401 | + integrity sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw== | |
1627 | 1402 | dependencies: |
1628 | 1403 | "@babel/helper-module-imports" "^7.10.4" |
1629 | 1404 | "@rollup/pluginutils" "^3.1.0" |
... | ... | @@ -1652,10 +1427,10 @@ |
1652 | 1427 | is-module "^1.0.0" |
1653 | 1428 | resolve "^1.17.0" |
1654 | 1429 | |
1655 | -"@rollup/plugin-replace@^2.3.3": | |
1656 | - version "2.3.4" | |
1657 | - resolved "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.3.4.tgz#7dd84c17755d62b509577f2db37eb524d7ca88ca" | |
1658 | - integrity sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ== | |
1430 | +"@rollup/plugin-replace@^2.4.1": | |
1431 | + version "2.4.1" | |
1432 | + resolved "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz#c411b5ab72809fb1bfc8b487d8d02eef661460d3" | |
1433 | + integrity sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ== | |
1659 | 1434 | dependencies: |
1660 | 1435 | "@rollup/pluginutils" "^3.1.0" |
1661 | 1436 | magic-string "^0.25.7" |
... | ... | @@ -1733,9 +1508,9 @@ |
1733 | 1508 | integrity sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow== |
1734 | 1509 | |
1735 | 1510 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": |
1736 | - version "7.1.12" | |
1737 | - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d" | |
1738 | - integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ== | |
1511 | + version "7.1.13" | |
1512 | + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.13.tgz#bc6eea53975fdf163aff66c086522c6f293ae4cf" | |
1513 | + integrity sha512-CC6amBNND16pTk4K3ZqKIaba6VGKAQs3gMjEY17FVd56oI/ZWt9OhS6riYiWv9s8ENbYUi7p8lgqb0QHQvUKQQ== | |
1739 | 1514 | dependencies: |
1740 | 1515 | "@babel/parser" "^7.1.0" |
1741 | 1516 | "@babel/types" "^7.0.0" |
... | ... | @@ -1759,9 +1534,9 @@ |
1759 | 1534 | "@babel/types" "^7.0.0" |
1760 | 1535 | |
1761 | 1536 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": |
1762 | - version "7.11.0" | |
1763 | - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz#b9a1efa635201ba9bc850323a8793ee2d36c04a0" | |
1764 | - integrity sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg== | |
1537 | + version "7.11.1" | |
1538 | + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz#654f6c4f67568e24c23b367e947098c6206fa639" | |
1539 | + integrity sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw== | |
1765 | 1540 | dependencies: |
1766 | 1541 | "@babel/types" "^7.3.0" |
1767 | 1542 | |
... | ... | @@ -1833,12 +1608,12 @@ |
1833 | 1608 | imagemin-pngquant "*" |
1834 | 1609 | |
1835 | 1610 | "@types/imagemin-svgo@^8.0.0": |
1836 | - version "8.0.0" | |
1837 | - resolved "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.0.tgz#393fb75b8637e9ba731f56787034fb1fd7d72a41" | |
1838 | - integrity sha512-CtQRrH4A7dkNEwix5n+rIuKCOvcZYd/G6jRJ+7RkgjTJ0AVWXoqX4exf/lipQY3cUOCv4X2voG/r0pICoTW8mw== | |
1611 | + version "8.0.1" | |
1612 | + resolved "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz#03af689b75dbdeb634c2457ba22043530a00d87e" | |
1613 | + integrity sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ== | |
1839 | 1614 | dependencies: |
1840 | 1615 | "@types/imagemin" "*" |
1841 | - "@types/svgo" "*" | |
1616 | + "@types/svgo" "^1" | |
1842 | 1617 | |
1843 | 1618 | "@types/imagemin-webp@^5.1.1": |
1844 | 1619 | version "5.1.1" |
... | ... | @@ -1882,9 +1657,9 @@ |
1882 | 1657 | "@types/istanbul-lib-report" "*" |
1883 | 1658 | |
1884 | 1659 | "@types/jest@^26.0.20": |
1885 | - version "26.0.20" | |
1886 | - resolved "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz#cd2f2702ecf69e86b586e1f5223a60e454056307" | |
1887 | - integrity sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA== | |
1660 | + version "26.0.21" | |
1661 | + resolved "https://registry.npmjs.org/@types/jest/-/jest-26.0.21.tgz#3a73c2731e7e4f0fbaea56ce7ff8c79cf812bd24" | |
1662 | + integrity sha512-ab9TyM/69yg7eew9eOwKMUmvIZAKEGZYlq/dhe5/0IMUd/QLJv5ldRMdddSn+u22N13FP3s5jYyktxuBwY0kDA== | |
1888 | 1663 | dependencies: |
1889 | 1664 | jest-diff "^26.0.0" |
1890 | 1665 | pretty-format "^26.0.0" |
... | ... | @@ -1928,15 +1703,10 @@ |
1928 | 1703 | resolved "https://registry.npmjs.org/@types/mockjs/-/mockjs-1.0.3.tgz#bd8ee3c7cbbd9a18788ab677b9e4f97c8d0bb0bf" |
1929 | 1704 | integrity sha512-OlwyyyoY81P8f7FU0zILUPxqQQ3/W+CwbqI6dWvOxaH8w948fAl1+hOG9C9ZgJcwzG+aloJcsastY4c4p91R1Q== |
1930 | 1705 | |
1931 | -"@types/node@*": | |
1932 | - version "14.14.22" | |
1933 | - resolved "https://registry.npmjs.org/@types/node/-/node-14.14.22.tgz#0d29f382472c4ccf3bd96ff0ce47daf5b7b84b18" | |
1934 | - integrity sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw== | |
1935 | - | |
1936 | -"@types/node@^14.14.32": | |
1937 | - version "14.14.34" | |
1938 | - resolved "https://registry.npmjs.org/@types/node/-/node-14.14.34.tgz#07935194fc049069a1c56c0c274265abeddf88da" | |
1939 | - integrity sha512-dBPaxocOK6UVyvhbnpFIj2W+S+1cBTkHQbFQfeeJhoKFbzYcVUGHvddeWPSucKATb3F0+pgDq0i6ghEaZjsugA== | |
1706 | +"@types/node@*", "@types/node@^14.14.32": | |
1707 | + version "14.14.35" | |
1708 | + resolved "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" | |
1709 | + integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== | |
1940 | 1710 | |
1941 | 1711 | "@types/normalize-package-data@^2.4.0": |
1942 | 1712 | version "2.4.0" |
... | ... | @@ -1954,9 +1724,9 @@ |
1954 | 1724 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== |
1955 | 1725 | |
1956 | 1726 | "@types/prettier@^2.0.0": |
1957 | - version "2.2.2" | |
1958 | - resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.2.tgz#e2280c89ddcbeef340099d6968d8c86ba155fdf6" | |
1959 | - integrity sha512-i99hy7Ki19EqVOl77WplDrvgNugHnsSjECVR/wUrzw2TJXz1zlUfT2ngGckR6xN7yFYaijsMAqPkOLx9HgUqHg== | |
1727 | + version "2.2.3" | |
1728 | + resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz#ef65165aea2924c9359205bf748865b8881753c0" | |
1729 | + integrity sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA== | |
1960 | 1730 | |
1961 | 1731 | "@types/q@^1.5.1": |
1962 | 1732 | version "1.5.4" |
... | ... | @@ -2000,12 +1770,7 @@ |
2000 | 1770 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff" |
2001 | 1771 | integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw== |
2002 | 1772 | |
2003 | -"@types/svgo@*": | |
2004 | - version "1.3.3" | |
2005 | - resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.3.tgz#4684af265b4e1125c738f5aaafb302c723f4efe0" | |
2006 | - integrity sha512-eDLVUvvTn+mol3NpP211DTH9JzSS6YKssRIhHNmXk5BiCl+gc4s+xQQjRFTSsGBohmka5qBsHX6qhL4x88Wkvg== | |
2007 | - | |
2008 | -"@types/svgo@^1.3.5": | |
1773 | +"@types/svgo@^1", "@types/svgo@^1.3.5": | |
2009 | 1774 | version "1.3.5" |
2010 | 1775 | resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.5.tgz#18a0166fbcdfbfc7f17d0491da2ea07ee397d3f9" |
2011 | 1776 | integrity sha512-y9Pw8IK50OqFRDpdI9Is29KlWiENVW9FDvlTmGHelvTfR2brYFJbsClvulZfeq6YKacFrDsG9a39w0kJZdHLaw== |
... | ... | @@ -2046,21 +1811,7 @@ |
2046 | 1811 | dependencies: |
2047 | 1812 | "@types/yargs-parser" "*" |
2048 | 1813 | |
2049 | -"@typescript-eslint/eslint-plugin@^4.16.1": | |
2050 | - version "4.17.0" | |
2051 | - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.17.0.tgz#6f856eca4e6a52ce9cf127dfd349096ad936aa2d" | |
2052 | - integrity sha512-/fKFDcoHg8oNan39IKFOb5WmV7oWhQe1K6CDaAVfJaNWEhmfqlA24g+u1lqU5bMH7zuNasfMId4LaYWC5ijRLw== | |
2053 | - dependencies: | |
2054 | - "@typescript-eslint/experimental-utils" "4.17.0" | |
2055 | - "@typescript-eslint/scope-manager" "4.17.0" | |
2056 | - debug "^4.1.1" | |
2057 | - functional-red-black-tree "^1.0.1" | |
2058 | - lodash "^4.17.15" | |
2059 | - regexpp "^3.0.0" | |
2060 | - semver "^7.3.2" | |
2061 | - tsutils "^3.17.1" | |
2062 | - | |
2063 | -"@typescript-eslint/eslint-plugin@^4.18.0": | |
1814 | +"@typescript-eslint/eslint-plugin@^4.16.1", "@typescript-eslint/eslint-plugin@^4.18.0": | |
2064 | 1815 | version "4.18.0" |
2065 | 1816 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz#50fbce93211b5b690895d20ebec6fe8db48af1f6" |
2066 | 1817 | integrity sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ== |
... | ... | @@ -2074,19 +1825,7 @@ |
2074 | 1825 | semver "^7.3.2" |
2075 | 1826 | tsutils "^3.17.1" |
2076 | 1827 | |
2077 | -"@typescript-eslint/experimental-utils@4.17.0", "@typescript-eslint/experimental-utils@^4.0.1": | |
2078 | - version "4.17.0" | |
2079 | - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.17.0.tgz#762c44aaa1a6a3c05b6d63a8648fb89b89f84c80" | |
2080 | - integrity sha512-ZR2NIUbnIBj+LGqCFGQ9yk2EBQrpVVFOh9/Kd0Lm6gLpSAcCuLLe5lUCibKGCqyH9HPwYC0GIJce2O1i8VYmWA== | |
2081 | - dependencies: | |
2082 | - "@types/json-schema" "^7.0.3" | |
2083 | - "@typescript-eslint/scope-manager" "4.17.0" | |
2084 | - "@typescript-eslint/types" "4.17.0" | |
2085 | - "@typescript-eslint/typescript-estree" "4.17.0" | |
2086 | - eslint-scope "^5.0.0" | |
2087 | - eslint-utils "^2.0.0" | |
2088 | - | |
2089 | -"@typescript-eslint/experimental-utils@4.18.0": | |
1828 | +"@typescript-eslint/experimental-utils@4.18.0", "@typescript-eslint/experimental-utils@^4.0.1": | |
2090 | 1829 | version "4.18.0" |
2091 | 1830 | resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz#ed6c955b940334132b17100d2917449b99a91314" |
2092 | 1831 | integrity sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A== |
... | ... | @@ -2098,17 +1837,7 @@ |
2098 | 1837 | eslint-scope "^5.0.0" |
2099 | 1838 | eslint-utils "^2.0.0" |
2100 | 1839 | |
2101 | -"@typescript-eslint/parser@^4.16.1": | |
2102 | - version "4.17.0" | |
2103 | - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.17.0.tgz#141b647ffc72ebebcbf9b0fe6087f65b706d3215" | |
2104 | - integrity sha512-KYdksiZQ0N1t+6qpnl6JeK9ycCFprS9xBAiIrw4gSphqONt8wydBw4BXJi3C11ywZmyHulvMaLjWsxDjUSDwAw== | |
2105 | - dependencies: | |
2106 | - "@typescript-eslint/scope-manager" "4.17.0" | |
2107 | - "@typescript-eslint/types" "4.17.0" | |
2108 | - "@typescript-eslint/typescript-estree" "4.17.0" | |
2109 | - debug "^4.1.1" | |
2110 | - | |
2111 | -"@typescript-eslint/parser@^4.18.0": | |
1840 | +"@typescript-eslint/parser@^4.16.1", "@typescript-eslint/parser@^4.18.0": | |
2112 | 1841 | version "4.18.0" |
2113 | 1842 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz#a211edb14a69fc5177054bec04c95b185b4dde21" |
2114 | 1843 | integrity sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA== |
... | ... | @@ -2118,14 +1847,6 @@ |
2118 | 1847 | "@typescript-eslint/typescript-estree" "4.18.0" |
2119 | 1848 | debug "^4.1.1" |
2120 | 1849 | |
2121 | -"@typescript-eslint/scope-manager@4.17.0": | |
2122 | - version "4.17.0" | |
2123 | - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.17.0.tgz#f4edf94eff3b52a863180f7f89581bf963e3d37d" | |
2124 | - integrity sha512-OJ+CeTliuW+UZ9qgULrnGpPQ1bhrZNFpfT/Bc0pzNeyZwMik7/ykJ0JHnQ7krHanFN9wcnPK89pwn84cRUmYjw== | |
2125 | - dependencies: | |
2126 | - "@typescript-eslint/types" "4.17.0" | |
2127 | - "@typescript-eslint/visitor-keys" "4.17.0" | |
2128 | - | |
2129 | 1850 | "@typescript-eslint/scope-manager@4.18.0": |
2130 | 1851 | version "4.18.0" |
2131 | 1852 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz#d75b55234c35d2ff6ac945758d6d9e53be84a427" |
... | ... | @@ -2134,30 +1855,12 @@ |
2134 | 1855 | "@typescript-eslint/types" "4.18.0" |
2135 | 1856 | "@typescript-eslint/visitor-keys" "4.18.0" |
2136 | 1857 | |
2137 | -"@typescript-eslint/types@4.17.0": | |
2138 | - version "4.17.0" | |
2139 | - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.17.0.tgz#f57d8fc7f31b348db946498a43050083d25f40ad" | |
2140 | - integrity sha512-RN5z8qYpJ+kXwnLlyzZkiJwfW2AY458Bf8WqllkondQIcN2ZxQowAToGSd9BlAUZDB5Ea8I6mqL2quGYCLT+2g== | |
2141 | - | |
2142 | 1858 | "@typescript-eslint/types@4.18.0": |
2143 | 1859 | version "4.18.0" |
2144 | 1860 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz#bebe323f81f2a7e2e320fac9415e60856267584a" |
2145 | 1861 | integrity sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A== |
2146 | 1862 | |
2147 | -"@typescript-eslint/typescript-estree@4.17.0", "@typescript-eslint/typescript-estree@^4.8.2": | |
2148 | - version "4.17.0" | |
2149 | - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.17.0.tgz#b835d152804f0972b80dbda92477f9070a72ded1" | |
2150 | - integrity sha512-lRhSFIZKUEPPWpWfwuZBH9trYIEJSI0vYsrxbvVvNyIUDoKWaklOAelsSkeh3E2VBSZiNe9BZ4E5tYBZbUczVQ== | |
2151 | - dependencies: | |
2152 | - "@typescript-eslint/types" "4.17.0" | |
2153 | - "@typescript-eslint/visitor-keys" "4.17.0" | |
2154 | - debug "^4.1.1" | |
2155 | - globby "^11.0.1" | |
2156 | - is-glob "^4.0.1" | |
2157 | - semver "^7.3.2" | |
2158 | - tsutils "^3.17.1" | |
2159 | - | |
2160 | -"@typescript-eslint/typescript-estree@4.18.0": | |
1863 | +"@typescript-eslint/typescript-estree@4.18.0", "@typescript-eslint/typescript-estree@^4.8.2": | |
2161 | 1864 | version "4.18.0" |
2162 | 1865 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz#756d3e61da8c16ab99185532c44872f4cd5538cb" |
2163 | 1866 | integrity sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg== |
... | ... | @@ -2170,14 +1873,6 @@ |
2170 | 1873 | semver "^7.3.2" |
2171 | 1874 | tsutils "^3.17.1" |
2172 | 1875 | |
2173 | -"@typescript-eslint/visitor-keys@4.17.0": | |
2174 | - version "4.17.0" | |
2175 | - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.17.0.tgz#9c304cfd20287c14a31d573195a709111849b14d" | |
2176 | - integrity sha512-WfuMN8mm5SSqXuAr9NM+fItJ0SVVphobWYkWOwQ1odsfC014Vdxk/92t4JwS1Q6fCA/ABfCKpa3AVtpUKTNKGQ== | |
2177 | - dependencies: | |
2178 | - "@typescript-eslint/types" "4.17.0" | |
2179 | - eslint-visitor-keys "^2.0.0" | |
2180 | - | |
2181 | 1876 | "@typescript-eslint/visitor-keys@4.18.0": |
2182 | 1877 | version "4.18.0" |
2183 | 1878 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz#4e6fe2a175ee33418318a029610845a81e2ff7b6" |
... | ... | @@ -2233,17 +1928,6 @@ |
2233 | 1928 | html-tags "^3.1.0" |
2234 | 1929 | svg-tags "^1.0.0" |
2235 | 1930 | |
2236 | -"@vue/compiler-core@3.0.5": | |
2237 | - version "3.0.5" | |
2238 | - resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac" | |
2239 | - integrity sha512-iFXwk2gmU/GGwN4hpBwDWWMLvpkIejf/AybcFtlQ5V1ur+5jwfBaV0Y1RXoR6ePfBPJixtKZ3PmN+M+HgMAtfQ== | |
2240 | - dependencies: | |
2241 | - "@babel/parser" "^7.12.0" | |
2242 | - "@babel/types" "^7.12.0" | |
2243 | - "@vue/shared" "3.0.5" | |
2244 | - estree-walker "^2.0.1" | |
2245 | - source-map "^0.6.1" | |
2246 | - | |
2247 | 1931 | "@vue/compiler-core@3.0.7": |
2248 | 1932 | version "3.0.7" |
2249 | 1933 | resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.7.tgz#421782a4c67cc3f2b7c30457ef446d74f8524f74" |
... | ... | @@ -2255,14 +1939,6 @@ |
2255 | 1939 | estree-walker "^2.0.1" |
2256 | 1940 | source-map "^0.6.1" |
2257 | 1941 | |
2258 | -"@vue/compiler-dom@3.0.5": | |
2259 | - version "3.0.5" | |
2260 | - resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2" | |
2261 | - integrity sha512-HSOSe2XSPuCkp20h4+HXSiPH9qkhz6YbW9z9ZtL5vef2T2PMugH7/osIFVSrRZP/Ul5twFZ7MIRlp8tPX6e4/g== | |
2262 | - dependencies: | |
2263 | - "@vue/compiler-core" "3.0.5" | |
2264 | - "@vue/shared" "3.0.5" | |
2265 | - | |
2266 | 1942 | "@vue/compiler-dom@3.0.7": |
2267 | 1943 | version "3.0.7" |
2268 | 1944 | resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.7.tgz#54d2e12fb9a7aff53abd19dac2c2679533f0c919" |
... | ... | @@ -2306,13 +1982,6 @@ |
2306 | 1982 | resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.7.tgz#1d306613c93b9a837a3776b1b9255502662f850f" |
2307 | 1983 | integrity sha512-mIfqX8ZF6s2ulelIzfxGk9sFoigpoeK/2/DlWrtBGWfvwaK3kR1P2bxNkZ0LbJeuKHfcRP6hGZtGist7nxUN9A== |
2308 | 1984 | |
2309 | -"@vue/reactivity@3.0.5": | |
2310 | - version "3.0.5" | |
2311 | - resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.5.tgz#e3789e4d523d845f9ae0b4d770e2b45594742fd2" | |
2312 | - integrity sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw== | |
2313 | - dependencies: | |
2314 | - "@vue/shared" "3.0.5" | |
2315 | - | |
2316 | 1985 | "@vue/reactivity@3.0.7": |
2317 | 1986 | version "3.0.7" |
2318 | 1987 | resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.7.tgz#e6ccc7bef7fc10b0972e4d974bad71679d3b26ad" |
... | ... | @@ -2320,14 +1989,6 @@ |
2320 | 1989 | dependencies: |
2321 | 1990 | "@vue/shared" "3.0.7" |
2322 | 1991 | |
2323 | -"@vue/runtime-core@3.0.5": | |
2324 | - version "3.0.5" | |
2325 | - resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.5.tgz#da6331d5f300d5794e9e0ebdc8a8bd72a9e19962" | |
2326 | - integrity sha512-Cnyi2NqREwOLcTEsIi1DQX1hHtkVj4eGm4hBG7HhokS05DqpK4/80jG6PCCnCH9rIJDB2FqtaODX397210plXg== | |
2327 | - dependencies: | |
2328 | - "@vue/reactivity" "3.0.5" | |
2329 | - "@vue/shared" "3.0.5" | |
2330 | - | |
2331 | 1992 | "@vue/runtime-core@3.0.7": |
2332 | 1993 | version "3.0.7" |
2333 | 1994 | resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.7.tgz#d44c0b0a57d7e392912a87362a4430ccf446ecea" |
... | ... | @@ -2336,15 +1997,6 @@ |
2336 | 1997 | "@vue/reactivity" "3.0.7" |
2337 | 1998 | "@vue/shared" "3.0.7" |
2338 | 1999 | |
2339 | -"@vue/runtime-dom@3.0.5": | |
2340 | - version "3.0.5" | |
2341 | - resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.5.tgz#1ce2c9c449e26ab06963da0064096e882a7a8935" | |
2342 | - integrity sha512-iilX1KySeIzHHtErT6Y44db1rhWK5tAI0CiJIPr+SJoZ2jbjoOSE6ff/jfIQakchbm1d6jq6VtRVnp5xYdOXKA== | |
2343 | - dependencies: | |
2344 | - "@vue/runtime-core" "3.0.5" | |
2345 | - "@vue/shared" "3.0.5" | |
2346 | - csstype "^2.6.8" | |
2347 | - | |
2348 | 2000 | "@vue/runtime-dom@3.0.7": |
2349 | 2001 | version "3.0.7" |
2350 | 2002 | resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.7.tgz#b70668d729020bc4ad608c20367223f259576ba6" |
... | ... | @@ -2354,11 +2006,6 @@ |
2354 | 2006 | "@vue/shared" "3.0.7" |
2355 | 2007 | csstype "^2.6.8" |
2356 | 2008 | |
2357 | -"@vue/shared@3.0.5": | |
2358 | - version "3.0.5" | |
2359 | - resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" | |
2360 | - integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== | |
2361 | - | |
2362 | 2009 | "@vue/shared@3.0.7": |
2363 | 2010 | version "3.0.7" |
2364 | 2011 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.7.tgz#96d52988efc07444c108c7c6803ba7cc93e40045" |
... | ... | @@ -2379,15 +2026,15 @@ |
2379 | 2026 | dependencies: |
2380 | 2027 | vue-demi latest |
2381 | 2028 | |
2382 | -"@windicss/plugin-utils@0.9.2": | |
2383 | - version "0.9.2" | |
2384 | - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.9.2.tgz#0cf68a7fc978c1cdba172d2aa5e89f52e45f54bb" | |
2385 | - integrity sha512-mYKqjRVc2NYHp5uA5cDyHtqHFNK1pBC6RYYLywuUPTxsUVszYGnRbUXSeZwisGrHqD5dlHtpcefM5QOuTm53KA== | |
2029 | +"@windicss/plugin-utils@0.8.3": | |
2030 | + version "0.8.3" | |
2031 | + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.8.3.tgz#b694121cb1b4e022c1ebb97d2507d292ca1ce293" | |
2032 | + integrity sha512-Tk0/EOwRnfi3KzvYJwfDyrImbHRXd7jMUw0MsAJWee0pzHre5Se7IM8/8SrcafJ29aL3v9KcB/qd/uBD8TBmow== | |
2386 | 2033 | dependencies: |
2387 | 2034 | fast-glob "^3.2.5" |
2388 | 2035 | micromatch "^4.0.2" |
2389 | 2036 | sucrase "^3.17.1" |
2390 | - windicss "^2.5.0" | |
2037 | + windicss "^2.4.5" | |
2391 | 2038 | |
2392 | 2039 | "@zxcvbn-ts/core@^0.3.0": |
2393 | 2040 | version "0.3.0" |
... | ... | @@ -2467,9 +2114,9 @@ ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: |
2467 | 2114 | uri-js "^4.2.2" |
2468 | 2115 | |
2469 | 2116 | ajv@^7.0.2: |
2470 | - version "7.0.3" | |
2471 | - resolved "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz#13ae747eff125cafb230ac504b2406cf371eece2" | |
2472 | - integrity sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ== | |
2117 | + version "7.2.1" | |
2118 | + resolved "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz#a5ac226171912447683524fa2f1248fcf8bac83d" | |
2119 | + integrity sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ== | |
2473 | 2120 | dependencies: |
2474 | 2121 | fast-deep-equal "^3.1.1" |
2475 | 2122 | json-schema-traverse "^1.0.0" |
... | ... | @@ -2815,6 +2462,30 @@ babel-plugin-jest-hoist@^26.6.2: |
2815 | 2462 | "@types/babel__core" "^7.0.0" |
2816 | 2463 | "@types/babel__traverse" "^7.0.6" |
2817 | 2464 | |
2465 | +babel-plugin-polyfill-corejs2@^0.1.4: | |
2466 | + version "0.1.10" | |
2467 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz#a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1" | |
2468 | + integrity sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA== | |
2469 | + dependencies: | |
2470 | + "@babel/compat-data" "^7.13.0" | |
2471 | + "@babel/helper-define-polyfill-provider" "^0.1.5" | |
2472 | + semver "^6.1.1" | |
2473 | + | |
2474 | +babel-plugin-polyfill-corejs3@^0.1.3: | |
2475 | + version "0.1.7" | |
2476 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0" | |
2477 | + integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw== | |
2478 | + dependencies: | |
2479 | + "@babel/helper-define-polyfill-provider" "^0.1.5" | |
2480 | + core-js-compat "^3.8.1" | |
2481 | + | |
2482 | +babel-plugin-polyfill-regenerator@^0.1.2: | |
2483 | + version "0.1.6" | |
2484 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz#0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f" | |
2485 | + integrity sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg== | |
2486 | + dependencies: | |
2487 | + "@babel/helper-define-polyfill-provider" "^0.1.5" | |
2488 | + | |
2818 | 2489 | babel-preset-current-node-syntax@^1.0.0: |
2819 | 2490 | version "1.0.1" |
2820 | 2491 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" |
... | ... | @@ -2941,9 +2612,9 @@ binary-extensions@^2.0.0: |
2941 | 2612 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== |
2942 | 2613 | |
2943 | 2614 | binary-mirror-config@^1: |
2944 | - version "1.28.0" | |
2945 | - resolved "https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.28.0.tgz#90a92277ebe6581cda0b34be62e7cf6a6ed8a2d1" | |
2946 | - integrity sha512-EuXKEFpNV0nTVPz2JYYiPyFaQFoWTxao3C+xXkfL39GyI033OEQkq+ntJnXtQ+7Z40tNG7gLmEqagYDcwzalkA== | |
2615 | + version "1.30.0" | |
2616 | + resolved "https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.30.0.tgz#17c6f6263dd2d1e1ebcec21351c2b712bdfc4593" | |
2617 | + integrity sha512-LAw4MnTH4o3IvIX27ixBueO9dHQ70Jv26gswNPUi91mdCAGU3Zg6e+1Se81tHrL5ppvO80Tv++1Wpb3kE+dy6Q== | |
2947 | 2618 | |
2948 | 2619 | bl@^1.0.0: |
2949 | 2620 | version "1.2.3" |
... | ... | @@ -2953,7 +2624,7 @@ bl@^1.0.0: |
2953 | 2624 | readable-stream "^2.3.5" |
2954 | 2625 | safe-buffer "^5.1.1" |
2955 | 2626 | |
2956 | -bl@^4.0.3: | |
2627 | +bl@^4.1.0: | |
2957 | 2628 | version "4.1.0" |
2958 | 2629 | resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" |
2959 | 2630 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== |
... | ... | @@ -2967,22 +2638,6 @@ bluebird@^3.5.0, bluebird@^3.7.2: |
2967 | 2638 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" |
2968 | 2639 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== |
2969 | 2640 | |
2970 | -body-parser@^1.19.0: | |
2971 | - version "1.19.0" | |
2972 | - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" | |
2973 | - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== | |
2974 | - dependencies: | |
2975 | - bytes "3.1.0" | |
2976 | - content-type "~1.0.4" | |
2977 | - debug "2.6.9" | |
2978 | - depd "~1.1.2" | |
2979 | - http-errors "1.7.2" | |
2980 | - iconv-lite "0.4.24" | |
2981 | - on-finished "~2.3.0" | |
2982 | - qs "6.7.0" | |
2983 | - raw-body "2.4.0" | |
2984 | - type-is "~1.6.17" | |
2985 | - | |
2986 | 2641 | boolbase@^1.0.0, boolbase@~1.0.0: |
2987 | 2642 | version "1.0.0" |
2988 | 2643 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" |
... | ... | @@ -3024,18 +2679,7 @@ browser-process-hrtime@^1.0.0: |
3024 | 2679 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" |
3025 | 2680 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== |
3026 | 2681 | |
3027 | -browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.1: | |
3028 | - version "4.16.1" | |
3029 | - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" | |
3030 | - integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== | |
3031 | - dependencies: | |
3032 | - caniuse-lite "^1.0.30001173" | |
3033 | - colorette "^1.2.1" | |
3034 | - electron-to-chromium "^1.3.634" | |
3035 | - escalade "^3.1.1" | |
3036 | - node-releases "^1.1.69" | |
3037 | - | |
3038 | -browserslist@^4.16.3: | |
2682 | +browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3: | |
3039 | 2683 | version "4.16.3" |
3040 | 2684 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717" |
3041 | 2685 | integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== |
... | ... | @@ -3101,11 +2745,6 @@ builtin-modules@^3.1.0: |
3101 | 2745 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" |
3102 | 2746 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== |
3103 | 2747 | |
3104 | -bytes@3.1.0: | |
3105 | - version "3.1.0" | |
3106 | - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | |
3107 | - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== | |
3108 | - | |
3109 | 2748 | cache-base@^1.0.1: |
3110 | 2749 | version "1.0.1" |
3111 | 2750 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" |
... | ... | @@ -3192,20 +2831,10 @@ camelcase@^6.0.0: |
3192 | 2831 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" |
3193 | 2832 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== |
3194 | 2833 | |
3195 | -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001173: | |
3196 | - version "1.0.30001179" | |
3197 | - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001179.tgz#b0803883b4471a6c62066fb1752756f8afc699c8" | |
3198 | - integrity sha512-blMmO0QQujuUWZKyVrD1msR4WNDAqb/UPO1Sw2WWsQ7deoM5bJiicKnWJ1Y0NS/aGINSnKPIWBMw5luX+NDUCA== | |
3199 | - | |
3200 | -caniuse-lite@^1.0.30001181: | |
3201 | - version "1.0.30001181" | |
3202 | - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001181.tgz#4f0e5184e1ea7c3bf2727e735cbe7ca9a451d673" | |
3203 | - integrity sha512-m5ul/ARCX50JB8BSNM+oiPmQrR5UmngaQ3QThTTp5HcIIQGP/nPBs82BYLE+tigzm3VW+F4BJIhUyaVtEweelQ== | |
3204 | - | |
3205 | -caniuse-lite@^1.0.30001196: | |
3206 | - version "1.0.30001196" | |
3207 | - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz#00518a2044b1abf3e0df31fadbe5ed90b63f4e64" | |
3208 | - integrity sha512-CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg== | |
2834 | +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181, caniuse-lite@^1.0.30001196: | |
2835 | + version "1.0.30001202" | |
2836 | + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001202.tgz#4cb3bd5e8a808e8cd89e4e66c549989bc8137201" | |
2837 | + integrity sha512-ZcijQNqrcF8JNLjzvEiXqX4JUYxoZa7Pvcsd9UD8Kz4TvhTonOSNRsK+qtvpVL4l6+T1Rh4LFtLfnNWg6BGWCQ== | |
3209 | 2838 | |
3210 | 2839 | capital-case@^1.0.4: |
3211 | 2840 | version "1.0.4" |
... | ... | @@ -3247,14 +2876,6 @@ cfb@^1.1.4: |
3247 | 2876 | crc-32 "~1.2.0" |
3248 | 2877 | printj "~1.1.2" |
3249 | 2878 | |
3250 | -chalk@4.1.0, chalk@^4.0.0, chalk@^4.1.0: | |
3251 | - version "4.1.0" | |
3252 | - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | |
3253 | - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | |
3254 | - dependencies: | |
3255 | - ansi-styles "^4.1.0" | |
3256 | - supports-color "^7.1.0" | |
3257 | - | |
3258 | 2879 | chalk@^1.0.0, chalk@^1.1.3: |
3259 | 2880 | version "1.1.3" |
3260 | 2881 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" |
... | ... | @@ -3283,6 +2904,14 @@ chalk@^3.0.0: |
3283 | 2904 | ansi-styles "^4.1.0" |
3284 | 2905 | supports-color "^7.1.0" |
3285 | 2906 | |
2907 | +chalk@^4.0.0, chalk@^4.1.0: | |
2908 | + version "4.1.0" | |
2909 | + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | |
2910 | + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | |
2911 | + dependencies: | |
2912 | + ansi-styles "^4.1.0" | |
2913 | + supports-color "^7.1.0" | |
2914 | + | |
3286 | 2915 | change-case@^4.1.2: |
3287 | 2916 | version "4.1.2" |
3288 | 2917 | resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" |
... | ... | @@ -3400,9 +3029,9 @@ cli-cursor@^3.1.0: |
3400 | 3029 | restore-cursor "^3.1.0" |
3401 | 3030 | |
3402 | 3031 | cli-spinners@^2.5.0: |
3403 | - version "2.5.0" | |
3404 | - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047" | |
3405 | - integrity sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ== | |
3032 | + version "2.6.0" | |
3033 | + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" | |
3034 | + integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== | |
3406 | 3035 | |
3407 | 3036 | cli-truncate@^2.1.0: |
3408 | 3037 | version "2.1.0" |
... | ... | @@ -3532,12 +3161,7 @@ color-name@~1.1.4: |
3532 | 3161 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" |
3533 | 3162 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== |
3534 | 3163 | |
3535 | -colorette@^1.2.1: | |
3536 | - version "1.2.1" | |
3537 | - resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | |
3538 | - integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== | |
3539 | - | |
3540 | -colorette@^1.2.2: | |
3164 | +colorette@^1.2.1, colorette@^1.2.2: | |
3541 | 3165 | version "1.2.2" |
3542 | 3166 | resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" |
3543 | 3167 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== |
... | ... | @@ -3554,10 +3178,10 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: |
3554 | 3178 | dependencies: |
3555 | 3179 | delayed-stream "~1.0.0" |
3556 | 3180 | |
3557 | -commander@*: | |
3558 | - version "7.0.0" | |
3559 | - resolved "https://registry.npmjs.org/commander/-/commander-7.0.0.tgz#3e2bbfd8bb6724760980988fb5b22b7ee6b71ab2" | |
3560 | - integrity sha512-ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA== | |
3181 | +commander@*, commander@^7.1.0: | |
3182 | + version "7.1.0" | |
3183 | + resolved "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" | |
3184 | + integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg== | |
3561 | 3185 | |
3562 | 3186 | commander@^2.16.0, commander@^2.20.0, commander@^2.20.3, commander@^2.8.1: |
3563 | 3187 | version "2.20.3" |
... | ... | @@ -3574,11 +3198,6 @@ commander@^6.2.0, commander@^6.2.1: |
3574 | 3198 | resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" |
3575 | 3199 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== |
3576 | 3200 | |
3577 | -commander@^7.1.0: | |
3578 | - version "7.1.0" | |
3579 | - resolved "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" | |
3580 | - integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg== | |
3581 | - | |
3582 | 3201 | commander@~2.14.1: |
3583 | 3202 | version "2.14.1" |
3584 | 3203 | resolved "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" |
... | ... | @@ -3633,9 +3252,9 @@ component-emitter@^1.2.1: |
3633 | 3252 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== |
3634 | 3253 | |
3635 | 3254 | compute-scroll-into-view@^1.0.16: |
3636 | - version "1.0.16" | |
3637 | - resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.16.tgz#5b7bf4f7127ea2c19b750353d7ce6776a90ee088" | |
3638 | - integrity sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ== | |
3255 | + version "1.0.17" | |
3256 | + resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab" | |
3257 | + integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg== | |
3639 | 3258 | |
3640 | 3259 | concat-map@0.0.1: |
3641 | 3260 | version "0.0.1" |
... | ... | @@ -3688,11 +3307,6 @@ content-disposition@^0.5.2: |
3688 | 3307 | dependencies: |
3689 | 3308 | safe-buffer "5.1.2" |
3690 | 3309 | |
3691 | -content-type@~1.0.4: | |
3692 | - version "1.0.4" | |
3693 | - resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" | |
3694 | - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== | |
3695 | - | |
3696 | 3310 | conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12: |
3697 | 3311 | version "5.0.12" |
3698 | 3312 | resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9" |
... | ... | @@ -3844,15 +3458,15 @@ conventional-commits-filter@^2.0.7: |
3844 | 3458 | modify-values "^1.0.0" |
3845 | 3459 | |
3846 | 3460 | conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.2.0: |
3847 | - version "3.2.0" | |
3848 | - resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz#9e261b139ca4b7b29bcebbc54460da36894004ca" | |
3849 | - integrity sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ== | |
3461 | + version "3.2.1" | |
3462 | + resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz#ba44f0b3b6588da2ee9fd8da508ebff50d116ce2" | |
3463 | + integrity sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA== | |
3850 | 3464 | dependencies: |
3851 | 3465 | JSONStream "^1.0.4" |
3852 | 3466 | is-text-path "^1.0.1" |
3853 | 3467 | lodash "^4.17.15" |
3854 | 3468 | meow "^8.0.0" |
3855 | - split2 "^2.0.0" | |
3469 | + split2 "^3.0.0" | |
3856 | 3470 | through2 "^4.0.0" |
3857 | 3471 | trim-off-newlines "^1.0.0" |
3858 | 3472 | |
... | ... | @@ -3864,29 +3478,29 @@ convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: |
3864 | 3478 | safe-buffer "~5.1.1" |
3865 | 3479 | |
3866 | 3480 | copy-anything@^2.0.1: |
3867 | - version "2.0.1" | |
3868 | - resolved "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.1.tgz#2afbce6da684bdfcbec93752fa762819cb480d9a" | |
3869 | - integrity sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g== | |
3481 | + version "2.0.3" | |
3482 | + resolved "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz#842407ba02466b0df844819bbe3baebbe5d45d87" | |
3483 | + integrity sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ== | |
3870 | 3484 | dependencies: |
3871 | - is-what "^3.7.1" | |
3485 | + is-what "^3.12.0" | |
3872 | 3486 | |
3873 | 3487 | copy-descriptor@^0.1.0: |
3874 | 3488 | version "0.1.1" |
3875 | 3489 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" |
3876 | 3490 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= |
3877 | 3491 | |
3878 | -core-js-compat@^3.8.0: | |
3879 | - version "3.8.3" | |
3880 | - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f" | |
3881 | - integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== | |
3492 | +core-js-compat@^3.8.1, core-js-compat@^3.9.0: | |
3493 | + version "3.9.1" | |
3494 | + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455" | |
3495 | + integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA== | |
3882 | 3496 | dependencies: |
3883 | - browserslist "^4.16.1" | |
3497 | + browserslist "^4.16.3" | |
3884 | 3498 | semver "7.0.0" |
3885 | 3499 | |
3886 | 3500 | core-js@^3.8.0, core-js@^3.8.2: |
3887 | - version "3.8.3" | |
3888 | - resolved "https://registry.npmjs.org/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0" | |
3889 | - integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== | |
3501 | + version "3.9.1" | |
3502 | + resolved "https://registry.npmjs.org/core-js/-/core-js-3.9.1.tgz#cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae" | |
3503 | + integrity sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg== | |
3890 | 3504 | |
3891 | 3505 | core-util-is@1.0.2, core-util-is@~1.0.0: |
3892 | 3506 | version "1.0.2" |
... | ... | @@ -3930,9 +3544,9 @@ cross-env@^7.0.3: |
3930 | 3544 | cross-spawn "^7.0.1" |
3931 | 3545 | |
3932 | 3546 | cross-fetch@^3.0.6: |
3933 | - version "3.0.6" | |
3934 | - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz#3a4040bc8941e653e0e9cf17f29ebcd177d3365c" | |
3935 | - integrity sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ== | |
3547 | + version "3.1.1" | |
3548 | + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.1.tgz#a7ed5a9201d46223d805c5e9ecdc23ea600219eb" | |
3549 | + integrity sha512-eIF+IHQpRzoGd/0zPrwQmHwDC90mdvjk+hcbYhKoaRrEk4GEIDqdjs/MljmdPPoHTQudbmWS+f0hZsEpFaEvWw== | |
3936 | 3550 | dependencies: |
3937 | 3551 | node-fetch "2.6.1" |
3938 | 3552 | |
... | ... | @@ -3956,7 +3570,7 @@ cross-spawn@^6.0.0: |
3956 | 3570 | shebang-command "^1.2.0" |
3957 | 3571 | which "^1.2.9" |
3958 | 3572 | |
3959 | -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2: | |
3573 | +cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: | |
3960 | 3574 | version "7.0.3" |
3961 | 3575 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" |
3962 | 3576 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== |
... | ... | @@ -4057,9 +3671,9 @@ cssstyle@^2.3.0: |
4057 | 3671 | cssom "~0.3.6" |
4058 | 3672 | |
4059 | 3673 | csstype@^2.6.8: |
4060 | - version "2.6.14" | |
4061 | - resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz#004822a4050345b55ad4dcc00be1d9cf2f4296de" | |
4062 | - integrity sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A== | |
3674 | + version "2.6.16" | |
3675 | + resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz#544d69f547013b85a40d15bff75db38f34fe9c39" | |
3676 | + integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== | |
4063 | 3677 | |
4064 | 3678 | currently-unhandled@^0.4.1: |
4065 | 3679 | version "0.4.1" |
... | ... | @@ -4169,9 +3783,9 @@ decode-uri-component@^0.2.0: |
4169 | 3783 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= |
4170 | 3784 | |
4171 | 3785 | decomment@^0.9.3: |
4172 | - version "0.9.3" | |
4173 | - resolved "https://registry.npmjs.org/decomment/-/decomment-0.9.3.tgz#b913f32e5fe1113848f516caa5c7afefa9544d38" | |
4174 | - integrity sha512-5skH5BfUL3n09RDmMVaHS1QGCiZRnl2nArUwmsE9JRY93Ueh3tihYl5wIrDdAuXnoFhxVis/DmRWREO2c6DG3w== | |
3786 | + version "0.9.4" | |
3787 | + resolved "https://registry.npmjs.org/decomment/-/decomment-0.9.4.tgz#fa40335bd90e3826d5c1984276e390525ff856d5" | |
3788 | + integrity sha512-8eNlhyI5cSU4UbBlrtagWpR03dqXcE5IR9zpe7PnO6UzReXDskucsD8usgrzUmQ6qJ3N82aws/p/mu/jqbURWw== | |
4175 | 3789 | dependencies: |
4176 | 3790 | esprima "4.0.1" |
4177 | 3791 | |
... | ... | @@ -4301,11 +3915,6 @@ delayed-stream@~1.0.0: |
4301 | 3915 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" |
4302 | 3916 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= |
4303 | 3917 | |
4304 | -depd@~1.1.2: | |
4305 | - version "1.1.2" | |
4306 | - resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" | |
4307 | - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= | |
4308 | - | |
4309 | 3918 | dependency-tree@^8.0.0: |
4310 | 3919 | version "8.0.0" |
4311 | 3920 | resolved "https://registry.npmjs.org/dependency-tree/-/dependency-tree-8.0.0.tgz#59d141bcb53ca59f54e7f7b94013820ddd49b7d7" |
... | ... | @@ -4333,12 +3942,12 @@ detect-newline@^3.0.0: |
4333 | 3942 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== |
4334 | 3943 | |
4335 | 3944 | detective-amd@^3.0.1: |
4336 | - version "3.0.1" | |
4337 | - resolved "https://registry.npmjs.org/detective-amd/-/detective-amd-3.0.1.tgz#aca8eddb1f405821953faf4a893d9b9e0430b09e" | |
4338 | - integrity sha512-vJgluSKkPyo+/McW9hzwmZwY1VPA3BS0VS1agdpPAWAhr65HwC1ox4Ig82rVfGYDYCa4GcKQON5JWBk++2Kf1Q== | |
3945 | + version "3.1.0" | |
3946 | + resolved "https://registry.npmjs.org/detective-amd/-/detective-amd-3.1.0.tgz#92daee3214a0ca4522646cf333cac90a3fca6373" | |
3947 | + integrity sha512-G7wGWT6f0VErjUkE2utCm7IUshT7nBh7aBBH2VBOiY9Dqy2DMens5iiOvYCuhstoIxRKLrnOvVAz4/EyPIAjnw== | |
4339 | 3948 | dependencies: |
4340 | 3949 | ast-module-types "^2.7.0" |
4341 | - escodegen "^1.8.0" | |
3950 | + escodegen "^2.0.0" | |
4342 | 3951 | get-amd-module-type "^3.0.0" |
4343 | 3952 | node-source-walk "^4.0.0" |
4344 | 3953 | |
... | ... | @@ -4520,9 +4129,9 @@ domutils@^1.5.1, domutils@^1.7.0: |
4520 | 4129 | domelementtype "1" |
4521 | 4130 | |
4522 | 4131 | domutils@^2.4.3: |
4523 | - version "2.4.4" | |
4524 | - resolved "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" | |
4525 | - integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== | |
4132 | + version "2.5.0" | |
4133 | + resolved "https://registry.npmjs.org/domutils/-/domutils-2.5.0.tgz#42f49cffdabb92ad243278b331fd761c1c2d3039" | |
4134 | + integrity sha512-Ho16rzNMOFk2fPwChGh3D2D9OEHAfG19HgmRR2l+WLSsIstNsAYBzePH412bL0y5T44ejABIVfTHQ8nqi/tBCg== | |
4526 | 4135 | dependencies: |
4527 | 4136 | dom-serializer "^1.0.1" |
4528 | 4137 | domelementtype "^2.0.1" |
... | ... | @@ -4631,15 +4240,10 @@ ejs@^3.1.6: |
4631 | 4240 | dependencies: |
4632 | 4241 | jake "^10.6.1" |
4633 | 4242 | |
4634 | -electron-to-chromium@^1.3.634: | |
4635 | - version "1.3.644" | |
4636 | - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.644.tgz#c89721733ec26b8d117275fb6b2acbeb3d45a6b6" | |
4637 | - integrity sha512-N7FLvjDPADxad+OXXBuYfcvDvCBG0aW8ZZGr7G91sZMviYbnQJFxdSvUus4SJ0K7Q8dzMxE+Wx1d/CrJIIJ0sw== | |
4638 | - | |
4639 | 4243 | electron-to-chromium@^1.3.649: |
4640 | - version "1.3.682" | |
4641 | - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.682.tgz#f4b5c8d4479df96b61e508a721d6c32c1262ef23" | |
4642 | - integrity sha512-zok2y37qR00U14uM6qBz/3iIjWHom2eRfC2S1StA0RslP7x34jX+j4mxv80t8OEOHLJPVG54ZPeaFxEI7gPrwg== | |
4244 | + version "1.3.692" | |
4245 | + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.692.tgz#4d00479055a7282cdd1b19caec09ed7779529640" | |
4246 | + integrity sha512-Ix+zDUAXWZuUzqKdhkgN5dP7ZM+IwMG4yAGFGDLpGJP/3vNEEwuHG1LIhtXUfW0FFV0j38t5PUv2n/3MFSRviQ== | |
4643 | 4247 | |
4644 | 4248 | emittery@^0.7.1: |
4645 | 4249 | version "0.7.2" |
... | ... | @@ -4710,44 +4314,29 @@ error-ex@^1.2.0, error-ex@^1.3.1: |
4710 | 4314 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" |
4711 | 4315 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== |
4712 | 4316 | dependencies: |
4713 | - is-arrayish "^0.2.1" | |
4714 | - | |
4715 | -es-abstract@^1.17.2: | |
4716 | - version "1.17.7" | |
4717 | - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" | |
4718 | - integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== | |
4719 | - dependencies: | |
4720 | - es-to-primitive "^1.2.1" | |
4721 | - function-bind "^1.1.1" | |
4722 | - has "^1.0.3" | |
4723 | - has-symbols "^1.0.1" | |
4724 | - is-callable "^1.2.2" | |
4725 | - is-regex "^1.1.1" | |
4726 | - object-inspect "^1.8.0" | |
4727 | - object-keys "^1.1.1" | |
4728 | - object.assign "^4.1.1" | |
4729 | - string.prototype.trimend "^1.0.1" | |
4730 | - string.prototype.trimstart "^1.0.1" | |
4317 | + is-arrayish "^0.2.1" | |
4731 | 4318 | |
4732 | -es-abstract@^1.18.0-next.1: | |
4733 | - version "1.18.0-next.2" | |
4734 | - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz#088101a55f0541f595e7e057199e27ddc8f3a5c2" | |
4735 | - integrity sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== | |
4319 | +es-abstract@^1.17.2, es-abstract@^1.18.0-next.2: | |
4320 | + version "1.18.0" | |
4321 | + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" | |
4322 | + integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== | |
4736 | 4323 | dependencies: |
4737 | 4324 | call-bind "^1.0.2" |
4738 | 4325 | es-to-primitive "^1.2.1" |
4739 | 4326 | function-bind "^1.1.1" |
4740 | - get-intrinsic "^1.0.2" | |
4327 | + get-intrinsic "^1.1.1" | |
4741 | 4328 | has "^1.0.3" |
4742 | - has-symbols "^1.0.1" | |
4743 | - is-callable "^1.2.2" | |
4329 | + has-symbols "^1.0.2" | |
4330 | + is-callable "^1.2.3" | |
4744 | 4331 | is-negative-zero "^2.0.1" |
4745 | - is-regex "^1.1.1" | |
4332 | + is-regex "^1.1.2" | |
4333 | + is-string "^1.0.5" | |
4746 | 4334 | object-inspect "^1.9.0" |
4747 | 4335 | object-keys "^1.1.1" |
4748 | 4336 | object.assign "^4.1.2" |
4749 | - string.prototype.trimend "^1.0.3" | |
4750 | - string.prototype.trimstart "^1.0.3" | |
4337 | + string.prototype.trimend "^1.0.4" | |
4338 | + string.prototype.trimstart "^1.0.4" | |
4339 | + unbox-primitive "^1.0.0" | |
4751 | 4340 | |
4752 | 4341 | es-module-lexer@^0.4.1: |
4753 | 4342 | version "0.4.1" |
... | ... | @@ -4764,21 +4353,22 @@ es-to-primitive@^1.2.1: |
4764 | 4353 | is-symbol "^1.0.2" |
4765 | 4354 | |
4766 | 4355 | esbuild-register@^2.2.0: |
4767 | - version "2.2.0" | |
4768 | - resolved "https://registry.npmjs.org/esbuild-register/-/esbuild-register-2.2.0.tgz#1c68af6e8e6c4a23af01825224e71bcbd3c85d83" | |
4769 | - integrity sha512-27039YMtpC3lI8yYGGm78SAQBtBo/4IPMReWVsNh4++VtvozmasBd1a2HiTdk0297iuA2pMzrzvL5cZJqQCKxQ== | |
4356 | + version "2.3.0" | |
4357 | + resolved "https://registry.npmjs.org/esbuild-register/-/esbuild-register-2.3.0.tgz#c7c6e2cabdce0e7aa5f30be774302d3fc1ebd02e" | |
4358 | + integrity sha512-uT3WXEQGAqzrI0SLy1Jz39BzIBiLWd5La9zFZ+FUSCPGqJbE+ZJHUTE8yHP1GVfyHKrrAFCZqLieaHkSprIRDQ== | |
4770 | 4359 | dependencies: |
4360 | + esbuild "^0.9.2" | |
4771 | 4361 | jsonc-parser "^3.0.0" |
4772 | 4362 | |
4773 | -esbuild@^0.8.52, esbuild@^0.8.57: | |
4363 | +esbuild@^0.8.52: | |
4774 | 4364 | version "0.8.57" |
4775 | 4365 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.57.tgz#a42d02bc2b57c70bcd0ef897fe244766bb6dd926" |
4776 | 4366 | integrity sha512-j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA== |
4777 | 4367 | |
4778 | -esbuild@^0.9.2: | |
4779 | - version "0.9.2" | |
4780 | - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.2.tgz#7e9fde247c913ed8ee059e2648b0c53f7d00abe5" | |
4781 | - integrity sha512-xE3oOILjnmN8PSjkG3lT9NBbd1DbxNqolJ5qNyrLhDWsFef3yTp/KTQz1C/x7BYFKbtrr9foYtKA6KA1zuNAUQ== | |
4368 | +esbuild@^0.9.2, esbuild@^0.9.3: | |
4369 | + version "0.9.4" | |
4370 | + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.4.tgz#4480ffc4c1e5d5bb25958f889b5de0279bfb2d6f" | |
4371 | + integrity sha512-bF6laCiYE5+iAfZsX+v6Lwvi5QbvKN3tThxDIR2WLyLYzTzNn0ijdpqkvTVsafmRZjic2Nq1nkSf5RSWySDTjA== | |
4782 | 4372 | |
4783 | 4373 | escalade@^3.1.1: |
4784 | 4374 | version "3.1.1" |
... | ... | @@ -4800,18 +4390,6 @@ escape-string-regexp@^2.0.0: |
4800 | 4390 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" |
4801 | 4391 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== |
4802 | 4392 | |
4803 | -escodegen@^1.8.0: | |
4804 | - version "1.14.3" | |
4805 | - resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" | |
4806 | - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== | |
4807 | - dependencies: | |
4808 | - esprima "^4.0.1" | |
4809 | - estraverse "^4.2.0" | |
4810 | - esutils "^2.0.2" | |
4811 | - optionator "^0.8.1" | |
4812 | - optionalDependencies: | |
4813 | - source-map "~0.6.1" | |
4814 | - | |
4815 | 4393 | escodegen@^2.0.0: |
4816 | 4394 | version "2.0.0" |
4817 | 4395 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" |
... | ... | @@ -4830,9 +4408,9 @@ eslint-config-prettier@^8.1.0: |
4830 | 4408 | integrity sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw== |
4831 | 4409 | |
4832 | 4410 | eslint-plugin-jest@^24.1.5: |
4833 | - version "24.2.1" | |
4834 | - resolved "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.2.1.tgz#7e84f16a3ca6589b86be9732a93d71367a4ed627" | |
4835 | - integrity sha512-s24ve8WUu3DLVidvlSzaqlOpTZre9lTkZTAO+a7X0WMtj8HraWTiTEkW3pbDT1xVxqEHMWSv+Kx7MyqR50nhBw== | |
4411 | + version "24.3.2" | |
4412 | + resolved "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz#30a8b2dea6278d0da1d6fb9d6cd530aaf58050a1" | |
4413 | + integrity sha512-cicWDr+RvTAOKS3Q/k03+Z3odt3VCiWamNUHWd6QWbVQWcYJyYgUTu8x0mx9GfeDEimawU5kQC+nQ3MFxIM6bw== | |
4836 | 4414 | dependencies: |
4837 | 4415 | "@typescript-eslint/experimental-utils" "^4.0.1" |
4838 | 4416 | |
... | ... | @@ -4878,50 +4456,7 @@ eslint-visitor-keys@^2.0.0: |
4878 | 4456 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" |
4879 | 4457 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== |
4880 | 4458 | |
4881 | -eslint@^7.21.0: | |
4882 | - version "7.21.0" | |
4883 | - resolved "https://registry.npmjs.org/eslint/-/eslint-7.21.0.tgz#4ecd5b8c5b44f5dedc9b8a110b01bbfeb15d1c83" | |
4884 | - integrity sha512-W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg== | |
4885 | - dependencies: | |
4886 | - "@babel/code-frame" "7.12.11" | |
4887 | - "@eslint/eslintrc" "^0.4.0" | |
4888 | - ajv "^6.10.0" | |
4889 | - chalk "^4.0.0" | |
4890 | - cross-spawn "^7.0.2" | |
4891 | - debug "^4.0.1" | |
4892 | - doctrine "^3.0.0" | |
4893 | - enquirer "^2.3.5" | |
4894 | - eslint-scope "^5.1.1" | |
4895 | - eslint-utils "^2.1.0" | |
4896 | - eslint-visitor-keys "^2.0.0" | |
4897 | - espree "^7.3.1" | |
4898 | - esquery "^1.4.0" | |
4899 | - esutils "^2.0.2" | |
4900 | - file-entry-cache "^6.0.1" | |
4901 | - functional-red-black-tree "^1.0.1" | |
4902 | - glob-parent "^5.0.0" | |
4903 | - globals "^12.1.0" | |
4904 | - ignore "^4.0.6" | |
4905 | - import-fresh "^3.0.0" | |
4906 | - imurmurhash "^0.1.4" | |
4907 | - is-glob "^4.0.0" | |
4908 | - js-yaml "^3.13.1" | |
4909 | - json-stable-stringify-without-jsonify "^1.0.1" | |
4910 | - levn "^0.4.1" | |
4911 | - lodash "^4.17.20" | |
4912 | - minimatch "^3.0.4" | |
4913 | - natural-compare "^1.4.0" | |
4914 | - optionator "^0.9.1" | |
4915 | - progress "^2.0.0" | |
4916 | - regexpp "^3.1.0" | |
4917 | - semver "^7.2.1" | |
4918 | - strip-ansi "^6.0.0" | |
4919 | - strip-json-comments "^3.1.0" | |
4920 | - table "^6.0.4" | |
4921 | - text-table "^0.2.0" | |
4922 | - v8-compile-cache "^2.0.3" | |
4923 | - | |
4924 | -eslint@^7.22.0: | |
4459 | +eslint@^7.21.0, eslint@^7.22.0: | |
4925 | 4460 | version "7.22.0" |
4926 | 4461 | resolved "https://registry.npmjs.org/eslint/-/eslint-7.22.0.tgz#07ecc61052fec63661a2cab6bd507127c07adc6f" |
4927 | 4462 | integrity sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg== |
... | ... | @@ -5009,7 +4544,7 @@ esrecurse@^4.3.0: |
5009 | 4544 | dependencies: |
5010 | 4545 | estraverse "^5.2.0" |
5011 | 4546 | |
5012 | -estraverse@^4.1.1, estraverse@^4.2.0: | |
4547 | +estraverse@^4.1.1: | |
5013 | 4548 | version "4.3.0" |
5014 | 4549 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" |
5015 | 4550 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== |
... | ... | @@ -5101,6 +4636,21 @@ execa@^4.0.0, execa@^4.1.0: |
5101 | 4636 | signal-exit "^3.0.2" |
5102 | 4637 | strip-final-newline "^2.0.0" |
5103 | 4638 | |
4639 | +execa@^5.0.0: | |
4640 | + version "5.0.0" | |
4641 | + resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" | |
4642 | + integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== | |
4643 | + dependencies: | |
4644 | + cross-spawn "^7.0.3" | |
4645 | + get-stream "^6.0.0" | |
4646 | + human-signals "^2.1.0" | |
4647 | + is-stream "^2.0.0" | |
4648 | + merge-stream "^2.0.0" | |
4649 | + npm-run-path "^4.0.1" | |
4650 | + onetime "^5.1.2" | |
4651 | + signal-exit "^3.0.3" | |
4652 | + strip-final-newline "^2.0.0" | |
4653 | + | |
5104 | 4654 | execall@^2.0.0: |
5105 | 4655 | version "2.0.0" |
5106 | 4656 | resolved "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz#16a06b5fe5099df7d00be5d9c06eecded1663b45" |
... | ... | @@ -5257,15 +4807,20 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: |
5257 | 4807 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" |
5258 | 4808 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= |
5259 | 4809 | |
4810 | +fast-xml-parser@^3.19.0: | |
4811 | + version "3.19.0" | |
4812 | + resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" | |
4813 | + integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== | |
4814 | + | |
5260 | 4815 | fastest-levenshtein@^1.0.12: |
5261 | 4816 | version "1.0.12" |
5262 | 4817 | resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" |
5263 | 4818 | integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== |
5264 | 4819 | |
5265 | 4820 | fastq@^1.6.0: |
5266 | - version "1.10.0" | |
5267 | - resolved "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb" | |
5268 | - integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA== | |
4821 | + version "1.11.0" | |
4822 | + resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" | |
4823 | + integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== | |
5269 | 4824 | dependencies: |
5270 | 4825 | reusify "^1.0.4" |
5271 | 4826 | |
... | ... | @@ -5353,9 +4908,9 @@ file-type@^8.1.0: |
5353 | 4908 | integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ== |
5354 | 4909 | |
5355 | 4910 | filelist@^1.0.1: |
5356 | - version "1.0.1" | |
5357 | - resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.1.tgz#f10d1a3ae86c1694808e8f20906f43d4c9132dbb" | |
5358 | - integrity sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ== | |
4911 | + version "1.0.2" | |
4912 | + resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" | |
4913 | + integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== | |
5359 | 4914 | dependencies: |
5360 | 4915 | minimatch "^3.0.4" |
5361 | 4916 | |
... | ... | @@ -5508,15 +5063,10 @@ flatten@^1.0.2: |
5508 | 5063 | resolved "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" |
5509 | 5064 | integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== |
5510 | 5065 | |
5511 | -follow-redirects@^1.0.0: | |
5512 | - version "1.13.2" | |
5513 | - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz#dd73c8effc12728ba5cf4259d760ea5fb83e3147" | |
5514 | - integrity sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== | |
5515 | - | |
5516 | -follow-redirects@^1.10.0: | |
5517 | - version "1.13.1" | |
5518 | - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" | |
5519 | - integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== | |
5066 | +follow-redirects@^1.0.0, follow-redirects@^1.10.0: | |
5067 | + version "1.13.3" | |
5068 | + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267" | |
5069 | + integrity sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA== | |
5520 | 5070 | |
5521 | 5071 | for-in@^1.0.2: |
5522 | 5072 | version "1.0.2" |
... | ... | @@ -5618,7 +5168,7 @@ generic-names@^2.0.1: |
5618 | 5168 | dependencies: |
5619 | 5169 | loader-utils "^1.1.0" |
5620 | 5170 | |
5621 | -gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: | |
5171 | +gensync@^1.0.0-beta.2: | |
5622 | 5172 | version "1.0.0-beta.2" |
5623 | 5173 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" |
5624 | 5174 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== |
... | ... | @@ -5636,10 +5186,10 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: |
5636 | 5186 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" |
5637 | 5187 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== |
5638 | 5188 | |
5639 | -get-intrinsic@^1.0.2: | |
5640 | - version "1.0.2" | |
5641 | - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49" | |
5642 | - integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== | |
5189 | +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: | |
5190 | + version "1.1.1" | |
5191 | + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" | |
5192 | + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== | |
5643 | 5193 | dependencies: |
5644 | 5194 | function-bind "^1.1.1" |
5645 | 5195 | has "^1.0.3" |
... | ... | @@ -5710,6 +5260,11 @@ get-stream@^5.0.0: |
5710 | 5260 | dependencies: |
5711 | 5261 | pump "^3.0.0" |
5712 | 5262 | |
5263 | +get-stream@^6.0.0: | |
5264 | + version "6.0.0" | |
5265 | + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" | |
5266 | + integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== | |
5267 | + | |
5713 | 5268 | get-value@^2.0.3, get-value@^2.0.6: |
5714 | 5269 | version "2.0.6" |
5715 | 5270 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" |
... | ... | @@ -5723,22 +5278,22 @@ getpass@^0.1.1: |
5723 | 5278 | assert-plus "^1.0.0" |
5724 | 5279 | |
5725 | 5280 | gifsicle@^5.0.0: |
5726 | - version "5.1.0" | |
5727 | - resolved "https://registry.npmjs.org/gifsicle/-/gifsicle-5.1.0.tgz#08f878e9048c70adf046185115a6350516a1fdc0" | |
5728 | - integrity sha512-hQsOH7yjC7fMokntysN6f2QuxrnX+zmKKKVy0sC3Vhtnk8WrOxLdfH/Z2PNn7lVVx+1+drzIeAe8ufcmdSC/8g== | |
5281 | + version "5.2.0" | |
5282 | + resolved "https://registry.npmjs.org/gifsicle/-/gifsicle-5.2.0.tgz#b06b25ed7530f033f6ed2c545d6f9b546cc182fb" | |
5283 | + integrity sha512-vOIS3j0XoTCxq9pkGj43gEix82RkI5FveNgaFZutjbaui/HH+4fR8Y56dwXDuxYo8hR4xOo6/j2h1WHoQW6XLw== | |
5729 | 5284 | dependencies: |
5730 | 5285 | bin-build "^3.0.0" |
5731 | 5286 | bin-wrapper "^4.0.0" |
5732 | - execa "^4.0.0" | |
5287 | + execa "^5.0.0" | |
5733 | 5288 | logalot "^2.0.0" |
5734 | 5289 | |
5735 | 5290 | git-raw-commits@^2.0.0, git-raw-commits@^2.0.8: |
5736 | - version "2.0.9" | |
5737 | - resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.9.tgz#5cbc707a615cb77b71e687f8a1ee54af46208b22" | |
5738 | - integrity sha512-hSpNpxprVno7IOd4PZ93RQ+gNdzPAIrW0x8av6JQDJGV4k1mR9fE01dl8sEqi2P7aKmmwiGUn1BCPuf16Ae0Qw== | |
5291 | + version "2.0.10" | |
5292 | + resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.10.tgz#e2255ed9563b1c9c3ea6bd05806410290297bbc1" | |
5293 | + integrity sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ== | |
5739 | 5294 | dependencies: |
5740 | 5295 | dargs "^7.0.0" |
5741 | - lodash.template "^4.0.2" | |
5296 | + lodash "^4.17.15" | |
5742 | 5297 | meow "^8.0.0" |
5743 | 5298 | split2 "^3.0.0" |
5744 | 5299 | through2 "^4.0.0" |
... | ... | @@ -5767,9 +5322,9 @@ gitconfiglocal@^1.0.0: |
5767 | 5322 | ini "^1.3.2" |
5768 | 5323 | |
5769 | 5324 | glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: |
5770 | - version "5.1.1" | |
5771 | - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" | |
5772 | - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== | |
5325 | + version "5.1.2" | |
5326 | + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" | |
5327 | + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== | |
5773 | 5328 | dependencies: |
5774 | 5329 | is-glob "^4.0.1" |
5775 | 5330 | |
... | ... | @@ -5853,9 +5408,9 @@ globals@^12.1.0: |
5853 | 5408 | type-fest "^0.8.1" |
5854 | 5409 | |
5855 | 5410 | globals@^13.6.0: |
5856 | - version "13.6.0" | |
5857 | - resolved "https://registry.npmjs.org/globals/-/globals-13.6.0.tgz#d77138e53738567bb96a3916ff6f6b487af20ef7" | |
5858 | - integrity sha512-YFKCX0SiPg7l5oKYCJ2zZGxcXprVXHcSnVuvzrT3oSENQonVLqM5pf9fN5dLGZGyCjhw8TN8Btwe/jKnZ0pjvQ== | |
5411 | + version "13.7.0" | |
5412 | + resolved "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz#aed3bcefd80ad3ec0f0be2cf0c895110c0591795" | |
5413 | + integrity sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA== | |
5859 | 5414 | dependencies: |
5860 | 5415 | type-fest "^0.20.2" |
5861 | 5416 | |
... | ... | @@ -5940,17 +5495,7 @@ got@^8.3.1: |
5940 | 5495 | url-parse-lax "^3.0.0" |
5941 | 5496 | url-to-options "^1.0.1" |
5942 | 5497 | |
5943 | -graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: | |
5944 | - version "4.2.4" | |
5945 | - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" | |
5946 | - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== | |
5947 | - | |
5948 | -graceful-fs@^4.2.2: | |
5949 | - version "4.2.5" | |
5950 | - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.5.tgz#bc18864a6c9fc7b303f2e2abdb9155ad178fbe29" | |
5951 | - integrity sha512-kBBSQbz2K0Nyn+31j/w36fUfxkBW9/gfwRWdUY1ULReH3iokVJgddZAFcD1D0xlgTmFxJCbUkUclAlc6/IDJkw== | |
5952 | - | |
5953 | -graceful-fs@^4.2.4: | |
5498 | +graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: | |
5954 | 5499 | version "4.2.6" |
5955 | 5500 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" |
5956 | 5501 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== |
... | ... | @@ -5968,9 +5513,9 @@ growly@^1.3.0: |
5968 | 5513 | integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= |
5969 | 5514 | |
5970 | 5515 | handlebars@^4.7.6: |
5971 | - version "4.7.6" | |
5972 | - resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" | |
5973 | - integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== | |
5516 | + version "4.7.7" | |
5517 | + resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" | |
5518 | + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== | |
5974 | 5519 | dependencies: |
5975 | 5520 | minimist "^1.2.5" |
5976 | 5521 | neo-async "^2.6.0" |
... | ... | @@ -6004,6 +5549,11 @@ has-ansi@^2.0.0: |
6004 | 5549 | dependencies: |
6005 | 5550 | ansi-regex "^2.0.0" |
6006 | 5551 | |
5552 | +has-bigints@^1.0.0: | |
5553 | + version "1.0.1" | |
5554 | + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" | |
5555 | + integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== | |
5556 | + | |
6007 | 5557 | has-flag@^1.0.0: |
6008 | 5558 | version "1.0.0" |
6009 | 5559 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" |
... | ... | @@ -6024,10 +5574,10 @@ has-symbol-support-x@^1.4.1: |
6024 | 5574 | resolved "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" |
6025 | 5575 | integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== |
6026 | 5576 | |
6027 | -has-symbols@^1.0.1: | |
6028 | - version "1.0.1" | |
6029 | - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" | |
6030 | - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== | |
5577 | +has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.2: | |
5578 | + version "1.0.2" | |
5579 | + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" | |
5580 | + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== | |
6031 | 5581 | |
6032 | 5582 | has-to-string-tag-x@^1.2.0: |
6033 | 5583 | version "1.4.1" |
... | ... | @@ -6104,18 +5654,13 @@ hosted-git-info@^2.1.4: |
6104 | 5654 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" |
6105 | 5655 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== |
6106 | 5656 | |
6107 | -hosted-git-info@^3.0.6: | |
6108 | - version "3.0.7" | |
6109 | - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz#a30727385ea85acfcee94e0aad9e368c792e036c" | |
6110 | - integrity sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ== | |
5657 | +hosted-git-info@^4.0.1: | |
5658 | + version "4.0.1" | |
5659 | + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.1.tgz#710ef5452ea429a844abc33c981056e7371edab7" | |
5660 | + integrity sha512-eT7NrxAsppPRQEBSwKSosReE+v8OzABwEScQYk5d4uxaEPlzxTIku7LINXtBGalthkLhJnq5lBI89PfK43zAKg== | |
6111 | 5661 | dependencies: |
6112 | 5662 | lru-cache "^6.0.0" |
6113 | 5663 | |
6114 | -html-comment-regex@^1.1.2: | |
6115 | - version "1.1.2" | |
6116 | - resolved "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" | |
6117 | - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== | |
6118 | - | |
6119 | 5664 | html-encoding-sniffer@^2.0.1: |
6120 | 5665 | version "2.0.1" |
6121 | 5666 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" |
... | ... | @@ -6163,17 +5708,6 @@ http-cache-semantics@3.8.1: |
6163 | 5708 | resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" |
6164 | 5709 | integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== |
6165 | 5710 | |
6166 | -http-errors@1.7.2: | |
6167 | - version "1.7.2" | |
6168 | - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" | |
6169 | - integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== | |
6170 | - dependencies: | |
6171 | - depd "~1.1.2" | |
6172 | - inherits "2.0.3" | |
6173 | - setprototypeof "1.1.1" | |
6174 | - statuses ">= 1.5.0 < 2" | |
6175 | - toidentifier "1.0.0" | |
6176 | - | |
6177 | 5711 | http-proxy@^1.18.0: |
6178 | 5712 | version "1.18.1" |
6179 | 5713 | resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" |
... | ... | @@ -6213,6 +5747,11 @@ human-signals@^1.1.1: |
6213 | 5747 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" |
6214 | 5748 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== |
6215 | 5749 | |
5750 | +human-signals@^2.1.0: | |
5751 | + version "2.1.0" | |
5752 | + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" | |
5753 | + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== | |
5754 | + | |
6216 | 5755 | husky@^5.1.3: |
6217 | 5756 | version "5.1.3" |
6218 | 5757 | resolved "https://registry.npmjs.org/husky/-/husky-5.1.3.tgz#1a0645a4fe3ffc006c4d0d8bd0bcb4c98787cc9d" |
... | ... | @@ -6283,9 +5822,9 @@ imagemin-optipng@^8.0.0: |
6283 | 5822 | optipng-bin "^7.0.0" |
6284 | 5823 | |
6285 | 5824 | imagemin-pngquant@*, imagemin-pngquant@^9.0.1: |
6286 | - version "9.0.1" | |
6287 | - resolved "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.1.tgz#ecf22f522bdb734a503ecc21bdd7bc3d0230edcc" | |
6288 | - integrity sha512-PYyo9G/xwddf+Qqlqe3onz5ZH7p6vHYVVkiuuczUjxZmfekyY77RXaOA/AR6FnVoeQxGa/pDtEK5xUKOcVo+sA== | |
5825 | + version "9.0.2" | |
5826 | + resolved "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz#38155702b0cc4f60f671ba7c2b086ea3805d9567" | |
5827 | + integrity sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg== | |
6289 | 5828 | dependencies: |
6290 | 5829 | execa "^4.0.0" |
6291 | 5830 | is-png "^2.0.0" |
... | ... | @@ -6379,11 +5918,6 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: |
6379 | 5918 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" |
6380 | 5919 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== |
6381 | 5920 | |
6382 | -inherits@2.0.3: | |
6383 | - version "2.0.3" | |
6384 | - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | |
6385 | - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | |
6386 | - | |
6387 | 5921 | ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: |
6388 | 5922 | version "1.3.8" |
6389 | 5923 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" |
... | ... | @@ -6472,6 +6006,11 @@ is-arrayish@^0.2.1: |
6472 | 6006 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" |
6473 | 6007 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= |
6474 | 6008 | |
6009 | +is-bigint@^1.0.1: | |
6010 | + version "1.0.1" | |
6011 | + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" | |
6012 | + integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== | |
6013 | + | |
6475 | 6014 | is-binary-path@~2.1.0: |
6476 | 6015 | version "2.1.0" |
6477 | 6016 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" |
... | ... | @@ -6479,6 +6018,13 @@ is-binary-path@~2.1.0: |
6479 | 6018 | dependencies: |
6480 | 6019 | binary-extensions "^2.0.0" |
6481 | 6020 | |
6021 | +is-boolean-object@^1.1.0: | |
6022 | + version "1.1.0" | |
6023 | + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" | |
6024 | + integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== | |
6025 | + dependencies: | |
6026 | + call-bind "^1.0.0" | |
6027 | + | |
6482 | 6028 | is-buffer@^1.1.5: |
6483 | 6029 | version "1.1.6" |
6484 | 6030 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" |
... | ... | @@ -6489,7 +6035,7 @@ is-buffer@^2.0.0: |
6489 | 6035 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" |
6490 | 6036 | integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== |
6491 | 6037 | |
6492 | -is-callable@^1.1.4, is-callable@^1.2.2: | |
6038 | +is-callable@^1.1.4, is-callable@^1.2.3: | |
6493 | 6039 | version "1.2.3" |
6494 | 6040 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" |
6495 | 6041 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== |
... | ... | @@ -6508,7 +6054,7 @@ is-ci@^3.0.0: |
6508 | 6054 | dependencies: |
6509 | 6055 | ci-info "^3.1.1" |
6510 | 6056 | |
6511 | -is-core-module@^2.1.0, is-core-module@^2.2.0: | |
6057 | +is-core-module@^2.2.0: | |
6512 | 6058 | version "2.2.0" |
6513 | 6059 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" |
6514 | 6060 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== |
... | ... | @@ -6655,6 +6201,11 @@ is-negative-zero@^2.0.1: |
6655 | 6201 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" |
6656 | 6202 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== |
6657 | 6203 | |
6204 | +is-number-object@^1.0.4: | |
6205 | + version "1.0.4" | |
6206 | + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" | |
6207 | + integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== | |
6208 | + | |
6658 | 6209 | is-number@^3.0.0: |
6659 | 6210 | version "3.0.0" |
6660 | 6211 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" |
... | ... | @@ -6714,7 +6265,7 @@ is-potential-custom-element-name@^1.0.0: |
6714 | 6265 | resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" |
6715 | 6266 | integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= |
6716 | 6267 | |
6717 | -is-regex@^1.1.1: | |
6268 | +is-regex@^1.1.2: | |
6718 | 6269 | version "1.1.2" |
6719 | 6270 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" |
6720 | 6271 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== |
... | ... | @@ -6752,14 +6303,19 @@ is-stream@^2.0.0: |
6752 | 6303 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" |
6753 | 6304 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== |
6754 | 6305 | |
6306 | +is-string@^1.0.5: | |
6307 | + version "1.0.5" | |
6308 | + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" | |
6309 | + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== | |
6310 | + | |
6755 | 6311 | is-svg@^4.2.1: |
6756 | - version "4.2.1" | |
6757 | - resolved "https://registry.npmjs.org/is-svg/-/is-svg-4.2.1.tgz#095b496e345fec9211c2a7d5d021003e040d6f81" | |
6758 | - integrity sha512-PHx3ANecKsKNl5y5+Jvt53Y4J7MfMpbNZkv384QNiswMKAWIbvcqbPz+sYbFKJI8Xv3be01GSFniPmoaP+Ai5A== | |
6312 | + version "4.3.1" | |
6313 | + resolved "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz#8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b" | |
6314 | + integrity sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA== | |
6759 | 6315 | dependencies: |
6760 | - html-comment-regex "^1.1.2" | |
6316 | + fast-xml-parser "^3.19.0" | |
6761 | 6317 | |
6762 | -is-symbol@^1.0.2: | |
6318 | +is-symbol@^1.0.2, is-symbol@^1.0.3: | |
6763 | 6319 | version "1.0.3" |
6764 | 6320 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" |
6765 | 6321 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== |
... | ... | @@ -6778,6 +6334,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: |
6778 | 6334 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" |
6779 | 6335 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= |
6780 | 6336 | |
6337 | +is-unicode-supported@^0.1.0: | |
6338 | + version "0.1.0" | |
6339 | + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" | |
6340 | + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== | |
6341 | + | |
6781 | 6342 | is-url@^1.2.4: |
6782 | 6343 | version "1.2.4" |
6783 | 6344 | resolved "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" |
... | ... | @@ -6788,10 +6349,10 @@ is-utf8@^0.2.0, is-utf8@^0.2.1: |
6788 | 6349 | resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" |
6789 | 6350 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= |
6790 | 6351 | |
6791 | -is-what@^3.7.1: | |
6792 | - version "3.12.0" | |
6793 | - resolved "https://registry.npmjs.org/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" | |
6794 | - integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw== | |
6352 | +is-what@^3.12.0: | |
6353 | + version "3.14.1" | |
6354 | + resolved "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" | |
6355 | + integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== | |
6795 | 6356 | |
6796 | 6357 | is-windows@^1.0.1, is-windows@^1.0.2: |
6797 | 6358 | version "1.0.2" |
... | ... | @@ -7269,10 +6830,10 @@ jest@^26.6.3: |
7269 | 6830 | import-local "^3.0.2" |
7270 | 6831 | jest-cli "^26.6.3" |
7271 | 6832 | |
7272 | -joycon@^2.2.5: | |
7273 | - version "2.2.5" | |
7274 | - resolved "https://registry.npmjs.org/joycon/-/joycon-2.2.5.tgz#8d4cf4cbb2544d7b7583c216fcdfec19f6be1615" | |
7275 | - integrity sha512-YqvUxoOcVPnCp0VU1/56f+iKSdvIRJYPznH22BdXV3xMk75SFXhWeJkZ8C9XxUWt1b5x2X1SxuFygW1U0FmkEQ== | |
6833 | +joycon@^3.0.0: | |
6834 | + version "3.0.1" | |
6835 | + resolved "https://registry.npmjs.org/joycon/-/joycon-3.0.1.tgz#9074c9b08ccf37a6726ff74a18485f85efcaddaf" | |
6836 | + integrity sha512-SJcJNBg32dGgxhPtM0wQqxqV0ax9k/9TaUskGDSJkSFSQOEWWvQ3zzWdGQRIUry2j1zA5+ReH13t0Mf3StuVZA== | |
7276 | 6837 | |
7277 | 6838 | js-base64@^2.1.9: |
7278 | 6839 | version "2.6.4" |
... | ... | @@ -7298,9 +6859,9 @@ jsbn@~0.1.0: |
7298 | 6859 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= |
7299 | 6860 | |
7300 | 6861 | jsdom@^16.4.0: |
7301 | - version "16.5.0" | |
7302 | - resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.5.0.tgz#9e453505600cc5a70b385750d35256f380730cc4" | |
7303 | - integrity sha512-QxZH0nmDTnTTVI0YDm4RUlaUPl5dcyn62G5TMDNfMmTW+J1u1v9gCR8WR+WZ6UghAa7nKJjDOFaI00eMMWvJFQ== | |
6862 | + version "16.5.1" | |
6863 | + resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.5.1.tgz#4ced6bbd7b77d67fb980e64d9e3e6fb900f97dd6" | |
6864 | + integrity sha512-pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA== | |
7304 | 6865 | dependencies: |
7305 | 6866 | abab "^2.0.5" |
7306 | 6867 | acorn "^8.0.5" |
... | ... | @@ -7379,7 +6940,7 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: |
7379 | 6940 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" |
7380 | 6941 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= |
7381 | 6942 | |
7382 | -json5@2.x: | |
6943 | +json5@2.x, json5@^2.1.2: | |
7383 | 6944 | version "2.2.0" |
7384 | 6945 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" |
7385 | 6946 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== |
... | ... | @@ -7393,13 +6954,6 @@ json5@^1.0.1: |
7393 | 6954 | dependencies: |
7394 | 6955 | minimist "^1.2.0" |
7395 | 6956 | |
7396 | -json5@^2.1.2: | |
7397 | - version "2.1.3" | |
7398 | - resolved "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" | |
7399 | - integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== | |
7400 | - dependencies: | |
7401 | - minimist "^1.2.5" | |
7402 | - | |
7403 | 6957 | jsonc-parser@^3.0.0: |
7404 | 6958 | version "3.0.0" |
7405 | 6959 | resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22" |
... | ... | @@ -7547,9 +7101,9 @@ lint-staged@^10.5.4: |
7547 | 7101 | stringify-object "^3.3.0" |
7548 | 7102 | |
7549 | 7103 | listr2@^3.2.2: |
7550 | - version "3.3.0" | |
7551 | - resolved "https://registry.npmjs.org/listr2/-/listr2-3.3.0.tgz#fab51211e4152d88bab7d91e4f7f896b0d9e5ba1" | |
7552 | - integrity sha512-G9IFI/m65icgVlifS0wMQnvn35/8VJGzEb3crpE4NnaegQYQOn/wP7yqi9TTJQ/eoxme4UaPbffBK1XqKP/DOg== | |
7104 | + version "3.4.3" | |
7105 | + resolved "https://registry.npmjs.org/listr2/-/listr2-3.4.3.tgz#543bcf849d5ffc70602708b69d2daac73f751699" | |
7106 | + integrity sha512-wZmkzNiuinOfwrGqAwTCcPw6aKQGTAMGXwG5xeU1WpDjJNeBA35jGBeWxR3OF+R6Yl5Y3dRG+3vE8t6PDcSNHA== | |
7553 | 7107 | dependencies: |
7554 | 7108 | chalk "^4.1.0" |
7555 | 7109 | cli-truncate "^2.1.0" |
... | ... | @@ -7557,7 +7111,7 @@ listr2@^3.2.2: |
7557 | 7111 | indent-string "^4.0.0" |
7558 | 7112 | log-update "^4.0.0" |
7559 | 7113 | p-map "^4.0.0" |
7560 | - rxjs "^6.6.3" | |
7114 | + rxjs "^6.6.6" | |
7561 | 7115 | through "^2.3.8" |
7562 | 7116 | wrap-ansi "^7.0.0" |
7563 | 7117 | |
... | ... | @@ -7621,26 +7175,21 @@ locate-path@^6.0.0: |
7621 | 7175 | dependencies: |
7622 | 7176 | p-locate "^5.0.0" |
7623 | 7177 | |
7624 | -lodash-es@^4.17.15: | |
7625 | - version "4.17.20" | |
7626 | - resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.20.tgz#29f6332eefc60e849f869c264bc71126ad61e8f7" | |
7627 | - integrity sha512-JD1COMZsq8maT6mnuz1UMV0jvYD0E0aUsSOdrr1/nAG3dhqQXwRRgeW0cSqH1U43INKcqxaiVIQNOUDld7gRDA== | |
7628 | - | |
7629 | -lodash-es@^4.17.21: | |
7178 | +lodash-es@^4.17.15, lodash-es@^4.17.21: | |
7630 | 7179 | version "4.17.21" |
7631 | 7180 | resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" |
7632 | 7181 | integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== |
7633 | 7182 | |
7634 | -lodash._reinterpolate@^3.0.0: | |
7635 | - version "3.0.0" | |
7636 | - resolved "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" | |
7637 | - integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= | |
7638 | - | |
7639 | 7183 | lodash.camelcase@^4.3.0: |
7640 | 7184 | version "4.3.0" |
7641 | 7185 | resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" |
7642 | 7186 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= |
7643 | 7187 | |
7188 | +lodash.debounce@^4.0.8: | |
7189 | + version "4.0.8" | |
7190 | + resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" | |
7191 | + integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= | |
7192 | + | |
7644 | 7193 | lodash.ismatch@^4.4.0: |
7645 | 7194 | version "4.4.0" |
7646 | 7195 | resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" |
... | ... | @@ -7656,37 +7205,18 @@ lodash.sortby@^4.7.0: |
7656 | 7205 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" |
7657 | 7206 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= |
7658 | 7207 | |
7659 | -lodash.template@^4.0.2: | |
7660 | - version "4.5.0" | |
7661 | - resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" | |
7662 | - integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== | |
7663 | - dependencies: | |
7664 | - lodash._reinterpolate "^3.0.0" | |
7665 | - lodash.templatesettings "^4.0.0" | |
7666 | - | |
7667 | -lodash.templatesettings@^4.0.0: | |
7668 | - version "4.2.0" | |
7669 | - resolved "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" | |
7670 | - integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== | |
7671 | - dependencies: | |
7672 | - lodash._reinterpolate "^3.0.0" | |
7673 | - | |
7674 | -lodash@4.x, lodash@^4.17.21: | |
7208 | +lodash@4.x, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: | |
7675 | 7209 | version "4.17.21" |
7676 | 7210 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" |
7677 | 7211 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== |
7678 | 7212 | |
7679 | -lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20: | |
7680 | - version "4.17.20" | |
7681 | - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" | |
7682 | - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== | |
7683 | - | |
7684 | -log-symbols@^4.0.0: | |
7685 | - version "4.0.0" | |
7686 | - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" | |
7687 | - integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== | |
7213 | +log-symbols@^4.0.0, log-symbols@^4.1.0: | |
7214 | + version "4.1.0" | |
7215 | + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" | |
7216 | + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== | |
7688 | 7217 | dependencies: |
7689 | - chalk "^4.0.0" | |
7218 | + chalk "^4.1.0" | |
7219 | + is-unicode-supported "^0.1.0" | |
7690 | 7220 | |
7691 | 7221 | log-update@^4.0.0: |
7692 | 7222 | version "4.0.0" |
... | ... | @@ -7865,9 +7395,9 @@ map-obj@^1.0.0, map-obj@^1.0.1: |
7865 | 7395 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= |
7866 | 7396 | |
7867 | 7397 | map-obj@^4.0.0: |
7868 | - version "4.1.0" | |
7869 | - resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5" | |
7870 | - integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g== | |
7398 | + version "4.2.0" | |
7399 | + resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.2.0.tgz#0e8bc823e2aaca8a0942567d12ed14f389eec153" | |
7400 | + integrity sha512-NAq0fCmZYGz9UFEQyndp7sisrow4GroyGeKluyKC/chuITZsPyOyC1UJZPJlVFImhXdROIP5xqouRLThT3BbpQ== | |
7871 | 7401 | |
7872 | 7402 | map-visit@^1.0.0: |
7873 | 7403 | version "1.0.0" |
... | ... | @@ -7882,9 +7412,9 @@ mathml-tag-names@^2.1.3: |
7882 | 7412 | integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== |
7883 | 7413 | |
7884 | 7414 | mdast-util-from-markdown@^0.8.0: |
7885 | - version "0.8.4" | |
7886 | - resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.4.tgz#2882100c1b9fc967d3f83806802f303666682d32" | |
7887 | - integrity sha512-jj891B5pV2r63n2kBTFh8cRI2uR9LQHsXG1zSDqfhXkIlDzrTcIlbB5+5aaYEkl8vOPIOPLf8VT7Ere1wWTMdw== | |
7415 | + version "0.8.5" | |
7416 | + resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" | |
7417 | + integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== | |
7888 | 7418 | dependencies: |
7889 | 7419 | "@types/mdast" "^3.0.0" |
7890 | 7420 | mdast-util-to-string "^2.0.0" |
... | ... | @@ -7893,9 +7423,9 @@ mdast-util-from-markdown@^0.8.0: |
7893 | 7423 | unist-util-stringify-position "^2.0.0" |
7894 | 7424 | |
7895 | 7425 | mdast-util-to-markdown@^0.6.0: |
7896 | - version "0.6.2" | |
7897 | - resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.2.tgz#8fe6f42a2683c43c5609dfb40407c095409c85b4" | |
7898 | - integrity sha512-iRczns6WMvu0hUw02LXsPDJshBIwtUPbvHBWo19IQeU0YqmzlA8Pd30U8V7uiI0VPkxzS7A/NXBXH6u+HS87Zg== | |
7426 | + version "0.6.5" | |
7427 | + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" | |
7428 | + integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== | |
7899 | 7429 | dependencies: |
7900 | 7430 | "@types/unist" "^2.0.0" |
7901 | 7431 | longest-streak "^2.0.0" |
... | ... | @@ -7919,11 +7449,6 @@ mdn-data@2.0.4: |
7919 | 7449 | resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" |
7920 | 7450 | integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== |
7921 | 7451 | |
7922 | -media-typer@0.3.0: | |
7923 | - version "0.3.0" | |
7924 | - resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" | |
7925 | - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= | |
7926 | - | |
7927 | 7452 | meow@^3.3.0: |
7928 | 7453 | version "3.7.0" |
7929 | 7454 | resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" |
... | ... | @@ -8005,9 +7530,9 @@ merge@^1.2.1: |
8005 | 7530 | integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== |
8006 | 7531 | |
8007 | 7532 | micromark@~2.11.0: |
8008 | - version "2.11.2" | |
8009 | - resolved "https://registry.npmjs.org/micromark/-/micromark-2.11.2.tgz#e8b6a05f54697d2d3d27fc89600c6bc40dd05f35" | |
8010 | - integrity sha512-IXuP76p2uj8uMg4FQc1cRE7lPCLsfAXuEfdjtdO55VRiFO1asrCSQ5g43NmPqFtRwzEnEhafRVzn2jg0UiKArQ== | |
7533 | + version "2.11.4" | |
7534 | + resolved "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" | |
7535 | + integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== | |
8011 | 7536 | dependencies: |
8012 | 7537 | debug "^4.0.0" |
8013 | 7538 | parse-entities "^2.0.0" |
... | ... | @@ -8058,17 +7583,12 @@ micromatch@^4.0.2: |
8058 | 7583 | braces "^3.0.1" |
8059 | 7584 | picomatch "^2.0.5" |
8060 | 7585 | |
8061 | -mime-db@1.46.0: | |
7586 | +mime-db@1.46.0, mime-db@^1.28.0: | |
8062 | 7587 | version "1.46.0" |
8063 | 7588 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee" |
8064 | 7589 | integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ== |
8065 | 7590 | |
8066 | -mime-db@^1.28.0: | |
8067 | - version "1.45.0" | |
8068 | - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" | |
8069 | - integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== | |
8070 | - | |
8071 | -mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: | |
7591 | +mime-types@^2.1.12, mime-types@~2.1.19: | |
8072 | 7592 | version "2.1.29" |
8073 | 7593 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2" |
8074 | 7594 | integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ== |
... | ... | @@ -8236,12 +7756,7 @@ mz@^2.7.0: |
8236 | 7756 | object-assign "^4.0.1" |
8237 | 7757 | thenify-all "^1.0.0" |
8238 | 7758 | |
8239 | -nanoid@^3.1.20: | |
8240 | - version "3.1.20" | |
8241 | - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" | |
8242 | - integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== | |
8243 | - | |
8244 | -nanoid@^3.1.22: | |
7759 | +nanoid@^3.1.20, nanoid@^3.1.22: | |
8245 | 7760 | version "3.1.22" |
8246 | 7761 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" |
8247 | 7762 | integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== |
... | ... | @@ -8327,11 +7842,6 @@ node-notifier@^8.0.0: |
8327 | 7842 | uuid "^8.3.0" |
8328 | 7843 | which "^2.0.2" |
8329 | 7844 | |
8330 | -node-releases@^1.1.69: | |
8331 | - version "1.1.70" | |
8332 | - resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" | |
8333 | - integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== | |
8334 | - | |
8335 | 7845 | node-releases@^1.1.70: |
8336 | 7846 | version "1.1.71" |
8337 | 7847 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" |
... | ... | @@ -8355,13 +7865,13 @@ normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package- |
8355 | 7865 | validate-npm-package-license "^3.0.1" |
8356 | 7866 | |
8357 | 7867 | normalize-package-data@^3.0.0: |
8358 | - version "3.0.0" | |
8359 | - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a" | |
8360 | - integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw== | |
7868 | + version "3.0.2" | |
7869 | + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz#cae5c410ae2434f9a6c1baa65d5bc3b9366c8699" | |
7870 | + integrity sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg== | |
8361 | 7871 | dependencies: |
8362 | - hosted-git-info "^3.0.6" | |
8363 | - resolve "^1.17.0" | |
8364 | - semver "^7.3.2" | |
7872 | + hosted-git-info "^4.0.1" | |
7873 | + resolve "^1.20.0" | |
7874 | + semver "^7.3.4" | |
8365 | 7875 | validate-npm-package-license "^3.0.1" |
8366 | 7876 | |
8367 | 7877 | normalize-path@^2.1.1: |
... | ... | @@ -8410,7 +7920,7 @@ npm-run-path@^2.0.0: |
8410 | 7920 | dependencies: |
8411 | 7921 | path-key "^2.0.0" |
8412 | 7922 | |
8413 | -npm-run-path@^4.0.0: | |
7923 | +npm-run-path@^4.0.0, npm-run-path@^4.0.1: | |
8414 | 7924 | version "4.0.1" |
8415 | 7925 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" |
8416 | 7926 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== |
... | ... | @@ -8465,7 +7975,7 @@ object-copy@^0.1.0: |
8465 | 7975 | define-property "^0.2.5" |
8466 | 7976 | kind-of "^3.0.3" |
8467 | 7977 | |
8468 | -object-inspect@^1.8.0, object-inspect@^1.9.0: | |
7978 | +object-inspect@^1.9.0: | |
8469 | 7979 | version "1.9.0" |
8470 | 7980 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" |
8471 | 7981 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== |
... | ... | @@ -8482,7 +7992,7 @@ object-visit@^1.0.0: |
8482 | 7992 | dependencies: |
8483 | 7993 | isobject "^3.0.0" |
8484 | 7994 | |
8485 | -object.assign@^4.1.0, object.assign@^4.1.1, object.assign@^4.1.2: | |
7995 | +object.assign@^4.1.0, object.assign@^4.1.2: | |
8486 | 7996 | version "4.1.2" |
8487 | 7997 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" |
8488 | 7998 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== |
... | ... | @@ -8493,13 +8003,13 @@ object.assign@^4.1.0, object.assign@^4.1.1, object.assign@^4.1.2: |
8493 | 8003 | object-keys "^1.1.1" |
8494 | 8004 | |
8495 | 8005 | object.getownpropertydescriptors@^2.1.0: |
8496 | - version "2.1.1" | |
8497 | - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544" | |
8498 | - integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== | |
8006 | + version "2.1.2" | |
8007 | + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7" | |
8008 | + integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== | |
8499 | 8009 | dependencies: |
8500 | - call-bind "^1.0.0" | |
8010 | + call-bind "^1.0.2" | |
8501 | 8011 | define-properties "^1.1.3" |
8502 | - es-abstract "^1.18.0-next.1" | |
8012 | + es-abstract "^1.18.0-next.2" | |
8503 | 8013 | |
8504 | 8014 | object.pick@^1.3.0: |
8505 | 8015 | version "1.3.0" |
... | ... | @@ -8509,13 +8019,13 @@ object.pick@^1.3.0: |
8509 | 8019 | isobject "^3.0.1" |
8510 | 8020 | |
8511 | 8021 | object.values@^1.1.0: |
8512 | - version "1.1.2" | |
8513 | - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731" | |
8514 | - integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== | |
8022 | + version "1.1.3" | |
8023 | + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee" | |
8024 | + integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== | |
8515 | 8025 | dependencies: |
8516 | - call-bind "^1.0.0" | |
8026 | + call-bind "^1.0.2" | |
8517 | 8027 | define-properties "^1.1.3" |
8518 | - es-abstract "^1.18.0-next.1" | |
8028 | + es-abstract "^1.18.0-next.2" | |
8519 | 8029 | has "^1.0.3" |
8520 | 8030 | |
8521 | 8031 | omit.js@^2.0.0: |
... | ... | @@ -8544,7 +8054,7 @@ onetime@^2.0.0: |
8544 | 8054 | dependencies: |
8545 | 8055 | mimic-fn "^1.0.0" |
8546 | 8056 | |
8547 | -onetime@^5.1.0: | |
8057 | +onetime@^5.1.0, onetime@^5.1.2: | |
8548 | 8058 | version "5.1.2" |
8549 | 8059 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" |
8550 | 8060 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== |
... | ... | @@ -8552,9 +8062,9 @@ onetime@^5.1.0: |
8552 | 8062 | mimic-fn "^2.1.0" |
8553 | 8063 | |
8554 | 8064 | open@^8.0.0: |
8555 | - version "8.0.2" | |
8556 | - resolved "https://registry.npmjs.org/open/-/open-8.0.2.tgz#8c3e95cce93ba2fc8d99968ee8bfefecdb50b84f" | |
8557 | - integrity sha512-NV5QmWJrTaNBLHABJyrb+nd5dXI5zfea/suWawBhkHzAbVhLLiJdrqMgxMypGK9Eznp2Ltoh7SAVkQ3XAucX7Q== | |
8065 | + version "8.0.3" | |
8066 | + resolved "https://registry.npmjs.org/open/-/open-8.0.3.tgz#04f4406c950666c35041aad8a621700022116afd" | |
8067 | + integrity sha512-7nsHNw3rOIPTwhF5iYkgE+LVM/oUHWC3cgrWNxPqa+W+Wl5Ekvo32qayB5PYX8zNjXzUkrTaJsWpaGmuw8Aspg== | |
8558 | 8068 | dependencies: |
8559 | 8069 | define-lazy-prop "^2.0.0" |
8560 | 8070 | is-docker "^2.1.1" |
... | ... | @@ -8599,16 +8109,17 @@ optipng-bin@^7.0.0: |
8599 | 8109 | logalot "^2.0.0" |
8600 | 8110 | |
8601 | 8111 | ora@^5.1.0: |
8602 | - version "5.3.0" | |
8603 | - resolved "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz#fb832899d3a1372fe71c8b2c534bbfe74961bb6f" | |
8604 | - integrity sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g== | |
8112 | + version "5.4.0" | |
8113 | + resolved "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz#42eda4855835b9cd14d33864c97a3c95a3f56bf4" | |
8114 | + integrity sha512-1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg== | |
8605 | 8115 | dependencies: |
8606 | - bl "^4.0.3" | |
8116 | + bl "^4.1.0" | |
8607 | 8117 | chalk "^4.1.0" |
8608 | 8118 | cli-cursor "^3.1.0" |
8609 | 8119 | cli-spinners "^2.5.0" |
8610 | 8120 | is-interactive "^1.0.0" |
8611 | - log-symbols "^4.0.0" | |
8121 | + is-unicode-supported "^0.1.0" | |
8122 | + log-symbols "^4.1.0" | |
8612 | 8123 | strip-ansi "^6.0.0" |
8613 | 8124 | wcwidth "^1.0.1" |
8614 | 8125 | |
... | ... | @@ -9099,9 +8610,9 @@ postcss-modules@^4.0.0: |
9099 | 8610 | string-hash "^1.1.1" |
9100 | 8611 | |
9101 | 8612 | postcss-prefix-selector@^1.6.0: |
9102 | - version "1.8.0" | |
9103 | - resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.8.0.tgz#fb6068f2fbe9ebbde382f1c85c29798a6baf462b" | |
9104 | - integrity sha512-5r3Oj6bl8FsVR6EWZzM/CWpOaJuQ2HIF7QpDtHNH3KX5BmZhy3skzO7jFlJaFh1O4XdM2H2K4pLa/uwZoluTCQ== | |
8613 | + version "1.9.0" | |
8614 | + resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.9.0.tgz#db549802b79f9f91f7419c8c1f86d31d974aff5e" | |
8615 | + integrity sha512-tTUHUNP+/Qfgg+fvbljUIeLs1ijICWb8+CT3bZM2joE2pkd+EnuBzSfZNHY2RMmozNRp44yEFv+I+6IIiLcoCg== | |
9105 | 8616 | dependencies: |
9106 | 8617 | postcss "^7.0.0" |
9107 | 8618 | |
... | ... | @@ -9188,16 +8699,7 @@ postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.2 |
9188 | 8699 | source-map "^0.6.1" |
9189 | 8700 | supports-color "^6.1.0" |
9190 | 8701 | |
9191 | -postcss@^8.1.10, postcss@^8.2.1: | |
9192 | - version "8.2.6" | |
9193 | - resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.6.tgz#5d69a974543b45f87e464bc4c3e392a97d6be9fe" | |
9194 | - integrity sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg== | |
9195 | - dependencies: | |
9196 | - colorette "^1.2.1" | |
9197 | - nanoid "^3.1.20" | |
9198 | - source-map "^0.6.1" | |
9199 | - | |
9200 | -postcss@^8.1.7, postcss@^8.2.8: | |
8702 | +postcss@^8.1.10, postcss@^8.1.7, postcss@^8.2.1, postcss@^8.2.8: | |
9201 | 8703 | version "8.2.8" |
9202 | 8704 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz#0b90f9382efda424c4f0f69a2ead6f6830d08ece" |
9203 | 8705 | integrity sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw== |
... | ... | @@ -9222,9 +8724,9 @@ posthtml-rename-id@^1.0: |
9222 | 8724 | escape-string-regexp "1.0.5" |
9223 | 8725 | |
9224 | 8726 | posthtml-render@^1.0.5, posthtml-render@^1.0.6: |
9225 | - version "1.4.0" | |
9226 | - resolved "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13" | |
9227 | - integrity sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw== | |
8727 | + version "1.3.1" | |
8728 | + resolved "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.3.1.tgz#260f15bc43cdf7ea008bf0cc35253fb27e4d03fd" | |
8729 | + integrity sha512-eSToKjNLu0FiF76SSGMHjOFXYzAc/CJqi677Sq6hYvcvFCBtD6de/W5l+0IYPf7ypscqAfjCttxvTdMJt5Gj8Q== | |
9228 | 8730 | |
9229 | 8731 | posthtml-svg-mode@^1.0.3: |
9230 | 8732 | version "1.0.3" |
... | ... | @@ -9295,12 +8797,7 @@ prettier@^2.2.1: |
9295 | 8797 | resolved "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" |
9296 | 8798 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== |
9297 | 8799 | |
9298 | -pretty-bytes@^5.3.0: | |
9299 | - version "5.5.0" | |
9300 | - resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.5.0.tgz#0cecda50a74a941589498011cf23275aa82b339e" | |
9301 | - integrity sha512-p+T744ZyjjiaFlMUZZv6YPC5JrkNj8maRmPaQCWFJFplUAzpIUTRaTcS+7wmZtUoFXHtESJb23ISliaWyz3SHA== | |
9302 | - | |
9303 | -pretty-bytes@^5.6.0: | |
8800 | +pretty-bytes@^5.3.0, pretty-bytes@^5.6.0: | |
9304 | 8801 | version "5.6.0" |
9305 | 8802 | resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" |
9306 | 8803 | integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== |
... | ... | @@ -9408,15 +8905,12 @@ qrcode@^1.4.4: |
9408 | 8905 | pngjs "^3.3.0" |
9409 | 8906 | yargs "^13.2.4" |
9410 | 8907 | |
9411 | -qs@6.7.0: | |
9412 | - version "6.7.0" | |
9413 | - resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" | |
9414 | - integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== | |
9415 | - | |
9416 | 8908 | qs@^6.4.0: |
9417 | - version "6.9.6" | |
9418 | - resolved "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" | |
9419 | - integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== | |
8909 | + version "6.10.0" | |
8910 | + resolved "https://registry.npmjs.org/qs/-/qs-6.10.0.tgz#8b6519121ab291c316a3e4d49cecf6d13d8c7fe5" | |
8911 | + integrity sha512-yjACOWijC6L/kmPZZAsVBNY2zfHSIbpdpL977quseu56/8BZ2LoF5axK2bGhbzhVKt7V9xgWTtpyLbxwIoER0Q== | |
8912 | + dependencies: | |
8913 | + side-channel "^1.0.4" | |
9420 | 8914 | |
9421 | 8915 | qs@~6.5.2: |
9422 | 8916 | version "6.5.2" |
... | ... | @@ -9440,6 +8934,11 @@ query-string@^5.0.1: |
9440 | 8934 | object-assign "^4.1.0" |
9441 | 8935 | strict-uri-encode "^1.0.0" |
9442 | 8936 | |
8937 | +queue-microtask@^1.2.2: | |
8938 | + version "1.2.2" | |
8939 | + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz#abf64491e6ecf0f38a6502403d4cda04f372dfd3" | |
8940 | + integrity sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg== | |
8941 | + | |
9443 | 8942 | quick-lru@^4.0.1: |
9444 | 8943 | version "4.0.1" |
9445 | 8944 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" |
... | ... | @@ -9452,16 +8951,6 @@ randombytes@^2.1.0: |
9452 | 8951 | dependencies: |
9453 | 8952 | safe-buffer "^5.1.0" |
9454 | 8953 | |
9455 | -raw-body@2.4.0: | |
9456 | - version "2.4.0" | |
9457 | - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" | |
9458 | - integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== | |
9459 | - dependencies: | |
9460 | - bytes "3.1.0" | |
9461 | - http-errors "1.7.2" | |
9462 | - iconv-lite "0.4.24" | |
9463 | - unpipe "1.0.0" | |
9464 | - | |
9465 | 8954 | rc@^1.2.7: |
9466 | 8955 | version "1.2.8" |
9467 | 8956 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" |
... | ... | @@ -9637,9 +9126,9 @@ regjsgen@^0.5.1: |
9637 | 9126 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== |
9638 | 9127 | |
9639 | 9128 | regjsparser@^0.6.4: |
9640 | - version "0.6.6" | |
9641 | - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.6.tgz#6d8c939d1a654f78859b08ddcc4aa777f3fa800a" | |
9642 | - integrity sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== | |
9129 | + version "0.6.7" | |
9130 | + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz#c00164e1e6713c2e3ee641f1701c4b7aa0a7f86c" | |
9131 | + integrity sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ== | |
9643 | 9132 | dependencies: |
9644 | 9133 | jsesc "~0.5.0" |
9645 | 9134 | |
... | ... | @@ -9820,15 +9309,7 @@ resolve-url@^0.2.1: |
9820 | 9309 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" |
9821 | 9310 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= |
9822 | 9311 | |
9823 | -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.17.0, resolve@^1.19.0: | |
9824 | - version "1.19.0" | |
9825 | - resolved "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" | |
9826 | - integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== | |
9827 | - dependencies: | |
9828 | - is-core-module "^2.1.0" | |
9829 | - path-parse "^1.0.6" | |
9830 | - | |
9831 | -resolve@^1.18.1: | |
9312 | +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.20.0: | |
9832 | 9313 | version "1.20.0" |
9833 | 9314 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" |
9834 | 9315 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== |
... | ... | @@ -9883,14 +9364,14 @@ rimraf@^3.0.0, rimraf@^3.0.2: |
9883 | 9364 | dependencies: |
9884 | 9365 | glob "^7.1.3" |
9885 | 9366 | |
9886 | -rollup-plugin-esbuild@^2.6.1: | |
9887 | - version "2.6.1" | |
9888 | - resolved "https://registry.npmjs.org/rollup-plugin-esbuild/-/rollup-plugin-esbuild-2.6.1.tgz#5785532940d49adf1bff5b38e9bd9089262d4e7a" | |
9889 | - integrity sha512-hskMEQQ4Vxlyoeg1OWlFTwWHIhpNaw6q+diOT7p9pdkk34m9Mbk3aymS/JbTqLXy/AbJi22iuXrucknKpeczfg== | |
9367 | +rollup-plugin-esbuild@^3.0.2: | |
9368 | + version "3.0.2" | |
9369 | + resolved "https://registry.npmjs.org/rollup-plugin-esbuild/-/rollup-plugin-esbuild-3.0.2.tgz#85a1afd59510ef143813b46f515e92a49779a60b" | |
9370 | + integrity sha512-uq+oBCeLXF1m6g9V0qpqbPbgyq24aXBKF474BvqgxfNmTP6FZ+oVk5/pCWQ/2rfSNJs4IimNU/k0q8xMaa0iCA== | |
9890 | 9371 | dependencies: |
9891 | 9372 | "@rollup/pluginutils" "^4.1.0" |
9892 | - joycon "^2.2.5" | |
9893 | - strip-json-comments "^3.1.1" | |
9373 | + joycon "^3.0.0" | |
9374 | + jsonc-parser "^3.0.0" | |
9894 | 9375 | |
9895 | 9376 | rollup-plugin-purge-icons@^0.7.0: |
9896 | 9377 | version "0.7.0" |
... | ... | @@ -9910,7 +9391,7 @@ rollup-plugin-terser@^7.0.0: |
9910 | 9391 | serialize-javascript "^4.0.0" |
9911 | 9392 | terser "^5.0.0" |
9912 | 9393 | |
9913 | -rollup-plugin-visualizer@^4.2.1: | |
9394 | +rollup-plugin-visualizer@4.2.1: | |
9914 | 9395 | version "4.2.1" |
9915 | 9396 | resolved "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-4.2.1.tgz#16ec56d1062c2a1f4005a0c4c7a1c49de7bd070a" |
9916 | 9397 | integrity sha512-GKXszY24T+WtSHVJclNcOpRaAU87E7bB6FZSdr71zcrnXY96QGgI8iyyGWOSfEH94qW4OQ+x5PcIB3zqWypYVQ== |
... | ... | @@ -9920,13 +9401,28 @@ rollup-plugin-visualizer@^4.2.1: |
9920 | 9401 | source-map "^0.7.3" |
9921 | 9402 | yargs "^16.2.0" |
9922 | 9403 | |
9923 | -rollup@2.41.5, rollup@^0.63.4, rollup@^2.25.0, rollup@^2.38.5, rollup@^2.40.0: | |
9404 | +rollup@^0.63.4: | |
9405 | + version "0.63.5" | |
9406 | + resolved "https://registry.npmjs.org/rollup/-/rollup-0.63.5.tgz#5543eecac9a1b83b7e1be598b5be84c9c0a089db" | |
9407 | + integrity sha512-dFf8LpUNzIj3oE0vCvobX6rqOzHzLBoblyFp+3znPbjiSmSvOoK2kMKx+Fv9jYduG1rvcCfCveSgEaQHjWRF6g== | |
9408 | + dependencies: | |
9409 | + "@types/estree" "0.0.39" | |
9410 | + "@types/node" "*" | |
9411 | + | |
9412 | +rollup@^2.25.0, rollup@^2.38.5: | |
9924 | 9413 | version "2.41.5" |
9925 | 9414 | resolved "https://registry.npmjs.org/rollup/-/rollup-2.41.5.tgz#e79cef8cc5c121612528f590319639b1f32da2d7" |
9926 | 9415 | integrity sha512-uG+WNNxhOYyeuO7oRt98GA2CNVRgQ67zca75UQVMPzMrLG9FUKzTCgvYVWhtB18TNbV7Uqxo97h+wErAnpFNJw== |
9927 | 9416 | optionalDependencies: |
9928 | 9417 | fsevents "~2.3.1" |
9929 | 9418 | |
9419 | +rollup@^2.41.5: | |
9420 | + version "2.42.0" | |
9421 | + resolved "https://registry.npmjs.org/rollup/-/rollup-2.42.0.tgz#444ce20a45614099decdd786f2a6fcd6c2240b08" | |
9422 | + integrity sha512-P9bJnaZ2P0hawoJo+Jto8YZZqil9URogNVE4KJeyj6wrUSDIbdMvmj7CsyEFwdXu/I5SiWEzB1hfmLeMldH6ww== | |
9423 | + optionalDependencies: | |
9424 | + fsevents "~2.3.1" | |
9425 | + | |
9930 | 9426 | rsvp@^4.8.4: |
9931 | 9427 | version "4.8.5" |
9932 | 9428 | resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" |
... | ... | @@ -9938,18 +9434,13 @@ run-async@^2.2.0, run-async@^2.4.0: |
9938 | 9434 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== |
9939 | 9435 | |
9940 | 9436 | run-parallel@^1.1.9: |
9941 | - version "1.1.10" | |
9942 | - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" | |
9943 | - integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== | |
9944 | - | |
9945 | -rxjs@^6.4.0, rxjs@^6.6.3: | |
9946 | - version "6.6.3" | |
9947 | - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" | |
9948 | - integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== | |
9437 | + version "1.2.0" | |
9438 | + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" | |
9439 | + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== | |
9949 | 9440 | dependencies: |
9950 | - tslib "^1.9.0" | |
9441 | + queue-microtask "^1.2.2" | |
9951 | 9442 | |
9952 | -rxjs@^6.6.6: | |
9443 | +rxjs@^6.4.0, rxjs@^6.6.6: | |
9953 | 9444 | version "6.6.6" |
9954 | 9445 | resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz#14d8417aa5a07c5e633995b525e1e3c0dec03b70" |
9955 | 9446 | integrity sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg== |
... | ... | @@ -10013,9 +9504,9 @@ saxes@^5.0.1: |
10013 | 9504 | xmlchars "^2.2.0" |
10014 | 9505 | |
10015 | 9506 | scroll-into-view-if-needed@^2.2.25: |
10016 | - version "2.2.26" | |
10017 | - resolved "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.26.tgz#e4917da0c820135ff65ad6f7e4b7d7af568c4f13" | |
10018 | - integrity sha512-SQ6AOKfABaSchokAmmaxVnL9IArxEnLEX9j4wAZw+x4iUTb40q7irtHG3z4GtAWz5veVZcCnubXDBRyLVQaohw== | |
9507 | + version "2.2.27" | |
9508 | + resolved "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.27.tgz#c696e439bb50128abc558317b39c929907bd0620" | |
9509 | + integrity sha512-BKiRstRm4u1bZvw+Wu9TxXhyMZ9fskb/9fbuSGuRzwHhlbKlDetL4dBdYaPfQbEFTttQmpkNtFH7sQpk4rZf9w== | |
10019 | 9510 | dependencies: |
10020 | 9511 | compute-scroll-into-view "^1.0.16" |
10021 | 9512 | |
... | ... | @@ -10048,7 +9539,7 @@ semver-truncate@^1.1.2: |
10048 | 9539 | dependencies: |
10049 | 9540 | semver "^5.3.0" |
10050 | 9541 | |
10051 | -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: | |
9542 | +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.6.0: | |
10052 | 9543 | version "5.7.1" |
10053 | 9544 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" |
10054 | 9545 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== |
... | ... | @@ -10058,14 +9549,14 @@ semver@7.0.0: |
10058 | 9549 | resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" |
10059 | 9550 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== |
10060 | 9551 | |
10061 | -semver@7.3.4, semver@7.x, semver@^7.2.1, semver@^7.3.2: | |
9552 | +semver@7.3.4, semver@7.x, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4: | |
10062 | 9553 | version "7.3.4" |
10063 | 9554 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" |
10064 | 9555 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== |
10065 | 9556 | dependencies: |
10066 | 9557 | lru-cache "^6.0.0" |
10067 | 9558 | |
10068 | -semver@^6.0.0, semver@^6.3.0: | |
9559 | +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: | |
10069 | 9560 | version "6.3.0" |
10070 | 9561 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" |
10071 | 9562 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== |
... | ... | @@ -10101,11 +9592,6 @@ set-value@^2.0.0, set-value@^2.0.1: |
10101 | 9592 | is-plain-object "^2.0.3" |
10102 | 9593 | split-string "^3.0.1" |
10103 | 9594 | |
10104 | -setprototypeof@1.1.1: | |
10105 | - version "1.1.1" | |
10106 | - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" | |
10107 | - integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== | |
10108 | - | |
10109 | 9595 | shallow-equal@^1.0.0: |
10110 | 9596 | version "1.2.1" |
10111 | 9597 | resolved "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" |
... | ... | @@ -10149,7 +9635,16 @@ shellwords@^0.1.1: |
10149 | 9635 | resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" |
10150 | 9636 | integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== |
10151 | 9637 | |
10152 | -signal-exit@^3.0.0, signal-exit@^3.0.2: | |
9638 | +side-channel@^1.0.4: | |
9639 | + version "1.0.4" | |
9640 | + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" | |
9641 | + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== | |
9642 | + dependencies: | |
9643 | + call-bind "^1.0.0" | |
9644 | + get-intrinsic "^1.0.2" | |
9645 | + object-inspect "^1.9.0" | |
9646 | + | |
9647 | +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: | |
10153 | 9648 | version "3.0.3" |
10154 | 9649 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" |
10155 | 9650 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== |
... | ... | @@ -10266,9 +9761,9 @@ source-map-support@^0.5.17, source-map-support@^0.5.6, source-map-support@~0.5.1 |
10266 | 9761 | source-map "^0.6.0" |
10267 | 9762 | |
10268 | 9763 | source-map-url@^0.4.0: |
10269 | - version "0.4.0" | |
10270 | - resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" | |
10271 | - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= | |
9764 | + version "0.4.1" | |
9765 | + resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" | |
9766 | + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== | |
10272 | 9767 | |
10273 | 9768 | source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: |
10274 | 9769 | version "0.6.1" |
... | ... | @@ -10335,13 +9830,6 @@ split-string@^3.0.1, split-string@^3.0.2: |
10335 | 9830 | dependencies: |
10336 | 9831 | extend-shallow "^3.0.0" |
10337 | 9832 | |
10338 | -split2@^2.0.0: | |
10339 | - version "2.2.0" | |
10340 | - resolved "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" | |
10341 | - integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== | |
10342 | - dependencies: | |
10343 | - through2 "^2.0.2" | |
10344 | - | |
10345 | 9833 | split2@^3.0.0: |
10346 | 9834 | version "3.2.2" |
10347 | 9835 | resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" |
... | ... | @@ -10412,7 +9900,7 @@ static-extend@^0.1.1: |
10412 | 9900 | define-property "^0.2.5" |
10413 | 9901 | object-copy "^0.1.0" |
10414 | 9902 | |
10415 | -"statuses@>= 1.5.0 < 2", statuses@~1.5.0: | |
9903 | +statuses@~1.5.0: | |
10416 | 9904 | version "1.5.0" |
10417 | 9905 | resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" |
10418 | 9906 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= |
... | ... | @@ -10438,9 +9926,9 @@ string-hash@^1.1.1: |
10438 | 9926 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= |
10439 | 9927 | |
10440 | 9928 | string-length@^4.0.1: |
10441 | - version "4.0.1" | |
10442 | - resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" | |
10443 | - integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw== | |
9929 | + version "4.0.2" | |
9930 | + resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" | |
9931 | + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== | |
10444 | 9932 | dependencies: |
10445 | 9933 | char-regex "^1.0.2" |
10446 | 9934 | strip-ansi "^6.0.0" |
... | ... | @@ -10462,16 +9950,7 @@ string-width@^3.0.0, string-width@^3.1.0: |
10462 | 9950 | is-fullwidth-code-point "^2.0.0" |
10463 | 9951 | strip-ansi "^5.1.0" |
10464 | 9952 | |
10465 | -string-width@^4.1.0, string-width@^4.2.0: | |
10466 | - version "4.2.0" | |
10467 | - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" | |
10468 | - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== | |
10469 | - dependencies: | |
10470 | - emoji-regex "^8.0.0" | |
10471 | - is-fullwidth-code-point "^3.0.0" | |
10472 | - strip-ansi "^6.0.0" | |
10473 | - | |
10474 | -string-width@^4.2.2: | |
9953 | +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2: | |
10475 | 9954 | version "4.2.2" |
10476 | 9955 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" |
10477 | 9956 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== |
... | ... | @@ -10480,20 +9959,20 @@ string-width@^4.2.2: |
10480 | 9959 | is-fullwidth-code-point "^3.0.0" |
10481 | 9960 | strip-ansi "^6.0.0" |
10482 | 9961 | |
10483 | -string.prototype.trimend@^1.0.1, string.prototype.trimend@^1.0.3: | |
10484 | - version "1.0.3" | |
10485 | - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" | |
10486 | - integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== | |
9962 | +string.prototype.trimend@^1.0.4: | |
9963 | + version "1.0.4" | |
9964 | + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" | |
9965 | + integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== | |
10487 | 9966 | dependencies: |
10488 | - call-bind "^1.0.0" | |
9967 | + call-bind "^1.0.2" | |
10489 | 9968 | define-properties "^1.1.3" |
10490 | 9969 | |
10491 | -string.prototype.trimstart@^1.0.1, string.prototype.trimstart@^1.0.3: | |
10492 | - version "1.0.3" | |
10493 | - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" | |
10494 | - integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== | |
9970 | +string.prototype.trimstart@^1.0.4: | |
9971 | + version "1.0.4" | |
9972 | + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" | |
9973 | + integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== | |
10495 | 9974 | dependencies: |
10496 | - call-bind "^1.0.0" | |
9975 | + call-bind "^1.0.2" | |
10497 | 9976 | define-properties "^1.1.3" |
10498 | 9977 | |
10499 | 9978 | string_decoder@^1.1.1: |
... | ... | @@ -10983,9 +10462,9 @@ terser@^4.6.3: |
10983 | 10462 | source-map-support "~0.5.12" |
10984 | 10463 | |
10985 | 10464 | terser@^5.0.0: |
10986 | - version "5.5.1" | |
10987 | - resolved "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz#540caa25139d6f496fdea056e414284886fb2289" | |
10988 | - integrity sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ== | |
10465 | + version "5.6.1" | |
10466 | + resolved "https://registry.npmjs.org/terser/-/terser-5.6.1.tgz#a48eeac5300c0a09b36854bf90d9c26fb201973c" | |
10467 | + integrity sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw== | |
10989 | 10468 | dependencies: |
10990 | 10469 | commander "^2.20.0" |
10991 | 10470 | source-map "~0.7.2" |
... | ... | @@ -11029,7 +10508,7 @@ throat@^5.0.0: |
11029 | 10508 | resolved "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" |
11030 | 10509 | integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== |
11031 | 10510 | |
11032 | -through2@^2.0.0, through2@^2.0.2: | |
10511 | +through2@^2.0.0: | |
11033 | 10512 | version "2.0.5" |
11034 | 10513 | resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" |
11035 | 10514 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== |
... | ... | @@ -11113,11 +10592,6 @@ to-regex@^3.0.1, to-regex@^3.0.2: |
11113 | 10592 | regex-not "^1.0.2" |
11114 | 10593 | safe-regex "^1.1.0" |
11115 | 10594 | |
11116 | -toidentifier@1.0.0: | |
11117 | - version "1.0.0" | |
11118 | - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" | |
11119 | - integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== | |
11120 | - | |
11121 | 10595 | tough-cookie@^2.3.3, tough-cookie@~2.5.0: |
11122 | 10596 | version "2.5.0" |
11123 | 10597 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" |
... | ... | @@ -11187,9 +10661,9 @@ ts-interface-checker@^0.1.9: |
11187 | 10661 | integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== |
11188 | 10662 | |
11189 | 10663 | ts-jest@^26.5.3: |
11190 | - version "26.5.3" | |
11191 | - resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.3.tgz#a6ee00ba547be3b09877550df40a1465d0295554" | |
11192 | - integrity sha512-nBiiFGNvtujdLryU7MiMQh1iPmnZ/QvOskBbD2kURiI1MwqvxlxNnaAB/z9TbslMqCsSbu5BXvSSQPc5tvHGeA== | |
10664 | + version "26.5.4" | |
10665 | + resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.4.tgz#207f4c114812a9c6d5746dd4d1cdf899eafc9686" | |
10666 | + integrity sha512-I5Qsddo+VTm94SukBJ4cPimOoFZsYTeElR2xy6H2TOVs+NsvgYglW8KuQgKoApOKuaU/Ix/vrF9ebFZlb5D2Pg== | |
11193 | 10667 | dependencies: |
11194 | 10668 | bs-logger "0.x" |
11195 | 10669 | buffer-from "1.x" |
... | ... | @@ -11230,9 +10704,9 @@ tslib@^2.0.3: |
11230 | 10704 | integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== |
11231 | 10705 | |
11232 | 10706 | tsutils@^3.17.1: |
11233 | - version "3.19.1" | |
11234 | - resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.19.1.tgz#d8566e0c51c82f32f9c25a4d367cd62409a547a9" | |
11235 | - integrity sha512-GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw== | |
10707 | + version "3.21.0" | |
10708 | + resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" | |
10709 | + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== | |
11236 | 10710 | dependencies: |
11237 | 10711 | tslib "^1.8.1" |
11238 | 10712 | |
... | ... | @@ -11297,14 +10771,6 @@ type-fest@^0.8.1: |
11297 | 10771 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" |
11298 | 10772 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== |
11299 | 10773 | |
11300 | -type-is@~1.6.17: | |
11301 | - version "1.6.18" | |
11302 | - resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" | |
11303 | - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== | |
11304 | - dependencies: | |
11305 | - media-typer "0.3.0" | |
11306 | - mime-types "~2.1.24" | |
11307 | - | |
11308 | 10774 | typedarray-to-buffer@^3.1.5: |
11309 | 10775 | version "3.1.5" |
11310 | 10776 | resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" |
... | ... | @@ -11323,9 +10789,19 @@ typescript@^3.9.5, typescript@^3.9.7: |
11323 | 10789 | integrity sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w== |
11324 | 10790 | |
11325 | 10791 | uglify-js@^3.1.4: |
11326 | - version "3.12.5" | |
11327 | - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008" | |
11328 | - integrity sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg== | |
10792 | + version "3.13.1" | |
10793 | + resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.1.tgz#2749d4b8b5b7d67460b4a418023ff73c3fefa60a" | |
10794 | + integrity sha512-EWhx3fHy3M9JbaeTnO+rEqzCe1wtyQClv6q3YWq0voOj4E+bMZBErVS1GAHPDiRGONYq34M1/d8KuQMgvi6Gjw== | |
10795 | + | |
10796 | +unbox-primitive@^1.0.0: | |
10797 | + version "1.0.0" | |
10798 | + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz#eeacbc4affa28e9b3d36b5eaeccc50b3251b1d3f" | |
10799 | + integrity sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA== | |
10800 | + dependencies: | |
10801 | + function-bind "^1.1.1" | |
10802 | + has-bigints "^1.0.0" | |
10803 | + has-symbols "^1.0.0" | |
10804 | + which-boxed-primitive "^1.0.1" | |
11329 | 10805 | |
11330 | 10806 | unbzip2-stream@^1.0.9: |
11331 | 10807 | version "1.4.3" |
... | ... | @@ -11359,9 +10835,9 @@ unicode-property-aliases-ecmascript@^1.0.4: |
11359 | 10835 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== |
11360 | 10836 | |
11361 | 10837 | unified@^9.1.0: |
11362 | - version "9.2.0" | |
11363 | - resolved "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8" | |
11364 | - integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== | |
10838 | + version "9.2.1" | |
10839 | + resolved "https://registry.npmjs.org/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" | |
10840 | + integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== | |
11365 | 10841 | dependencies: |
11366 | 10842 | bail "^1.0.0" |
11367 | 10843 | extend "^3.0.0" |
... | ... | @@ -11407,9 +10883,9 @@ unist-util-find-all-after@^3.0.2: |
11407 | 10883 | unist-util-is "^4.0.0" |
11408 | 10884 | |
11409 | 10885 | unist-util-is@^4.0.0: |
11410 | - version "4.0.4" | |
11411 | - resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.4.tgz#3e9e8de6af2eb0039a59f50c9b3e99698a924f50" | |
11412 | - integrity sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA== | |
10886 | + version "4.1.0" | |
10887 | + resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" | |
10888 | + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== | |
11413 | 10889 | |
11414 | 10890 | unist-util-stringify-position@^2.0.0: |
11415 | 10891 | version "2.0.3" |
... | ... | @@ -11428,7 +10904,7 @@ universalify@^2.0.0: |
11428 | 10904 | resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" |
11429 | 10905 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== |
11430 | 10906 | |
11431 | -unpipe@1.0.0, unpipe@~1.0.0: | |
10907 | +unpipe@~1.0.0: | |
11432 | 10908 | version "1.0.0" |
11433 | 10909 | resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" |
11434 | 10910 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= |
... | ... | @@ -11537,9 +11013,9 @@ uuid@^8.3.0: |
11537 | 11013 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== |
11538 | 11014 | |
11539 | 11015 | v8-compile-cache@^2.0.3, v8-compile-cache@^2.2.0: |
11540 | - version "2.2.0" | |
11541 | - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" | |
11542 | - integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== | |
11016 | + version "2.3.0" | |
11017 | + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" | |
11018 | + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== | |
11543 | 11019 | |
11544 | 11020 | v8-to-istanbul@^7.0.0: |
11545 | 11021 | version "7.1.0" |
... | ... | @@ -11633,10 +11109,10 @@ vite-plugin-imagemin@^0.2.9: |
11633 | 11109 | imagemin-svgo "^8.0.0" |
11634 | 11110 | imagemin-webp "^6.0.0" |
11635 | 11111 | |
11636 | -vite-plugin-mock@^2.2.4: | |
11637 | - version "2.2.4" | |
11638 | - resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.2.4.tgz#5bcddf03be600004c0674c5c55325eba9c4adce9" | |
11639 | - integrity sha512-6rtt9bqK3B0Km89VV4k5OGZ6//7LDJJiP51FIv4ANmP+r05ckvONFK1m6Tx+8WKA3Ff9noXe4vxSf4UP7gqUBg== | |
11112 | +vite-plugin-mock@^2.3.0: | |
11113 | + version "2.3.0" | |
11114 | + resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.3.0.tgz#c616e75d2724015e9450d637794a39713af93b5a" | |
11115 | + integrity sha512-ucmLIUv8gAMxc+5TGxIEKQ6PhhRAxZvQ2ChUzvc1hF/XzKNI/DRYrwjcGsDwISVyoYED2odTTt1q395d18LK6w== | |
11640 | 11116 | dependencies: |
11641 | 11117 | "@rollup/plugin-node-resolve" "^11.2.0" |
11642 | 11118 | "@types/mockjs" "^1.0.3" |
... | ... | @@ -11644,11 +11120,11 @@ vite-plugin-mock@^2.2.4: |
11644 | 11120 | chokidar "^3.5.1" |
11645 | 11121 | connect "^3.7.0" |
11646 | 11122 | debug "^4.3.2" |
11647 | - esbuild "^0.8.57" | |
11123 | + esbuild "^0.9.3" | |
11648 | 11124 | fast-glob "^3.2.5" |
11649 | 11125 | path-to-regexp "^6.2.0" |
11650 | - rollup "^2.40.0" | |
11651 | - rollup-plugin-esbuild "^2.6.1" | |
11126 | + rollup "^2.41.5" | |
11127 | + rollup-plugin-esbuild "^3.0.2" | |
11652 | 11128 | |
11653 | 11129 | vite-plugin-purge-icons@^0.7.0: |
11654 | 11130 | version "0.7.0" |
... | ... | @@ -11722,14 +11198,13 @@ vite-plugin-theme@^0.5.0: |
11722 | 11198 | tinycolor2 "^1.4.2" |
11723 | 11199 | ts-jest "^26.5.3" |
11724 | 11200 | |
11725 | -vite-plugin-windicss@0.9.2: | |
11726 | - version "0.9.2" | |
11727 | - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.9.2.tgz#60caaa7966aa3dbb2cb11bf2210c09a71cac84dd" | |
11728 | - integrity sha512-JM7Q7EfkxGRXklqH84LzQnVjXWOVnTPfi0AnXdnJuxmVMW8YidtEq/2rqf4GiYVXLdya8CQHNdYWnkZFSl47Yw== | |
11201 | +vite-plugin-windicss@0.8.3: | |
11202 | + version "0.8.3" | |
11203 | + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.8.3.tgz#81944473f642a4d4da81f9f8d77012e73095e4a3" | |
11204 | + integrity sha512-VhiYUBIexKD1Il1dxV6yB4SN+ufza3HWhKK7IFFGrf4gj2JqSX9MNUdS2jPOEInyJszw+fT7WrHj1hsYd7ROJA== | |
11729 | 11205 | dependencies: |
11730 | - "@windicss/plugin-utils" "0.9.2" | |
11731 | - body-parser "^1.19.0" | |
11732 | - windicss "^2.5.0" | |
11206 | + "@windicss/plugin-utils" "0.8.3" | |
11207 | + windicss "^2.4.5" | |
11733 | 11208 | |
11734 | 11209 | vite@2.0.5: |
11735 | 11210 | version "2.0.5" |
... | ... | @@ -11744,9 +11219,9 @@ vite@2.0.5: |
11744 | 11219 | fsevents "~2.3.1" |
11745 | 11220 | |
11746 | 11221 | vue-demi@latest: |
11747 | - version "0.6.0" | |
11748 | - resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.6.0.tgz#e314282f704cb449119b9fd002cbbc0e39f591fe" | |
11749 | - integrity sha512-8GEJa0mHJpYJeGeq5fD1pJct2kfdl30PHfmL1NaJ97mgKPyKojlIRt/3inGBK4Y0ylCI6T5vOo3chwpqDOq/Hw== | |
11222 | + version "0.7.3" | |
11223 | + resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.7.3.tgz#463188044d31d33985e67da51f315b447a1fed85" | |
11224 | + integrity sha512-vrzM26H4CZCXBf/eu4T8nks6o7qgziYM52myk8bg+atw4qYqpeWJf5c82W8VdmgGfSIdh9ulOOe9+GeLc3Z/8A== | |
11750 | 11225 | |
11751 | 11226 | vue-eslint-parser@^7.6.0: |
11752 | 11227 | version "7.6.0" |
... | ... | @@ -11774,30 +11249,14 @@ vue-router@^4.0.5: |
11774 | 11249 | resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.5.tgz#dd0a4134bc950c37aef64b973e9ee1008428d8fa" |
11775 | 11250 | integrity sha512-AQq+pllb6FCc7rS6vh4PPcce3XA1jgK3hKNkQ4hXHwoVN7jOeAOMKCnX7XAX3etV9rmN7iNW8iIwgPk95ckBjw== |
11776 | 11251 | |
11777 | -vue-types@^3.0.0: | |
11778 | - version "3.0.1" | |
11779 | - resolved "https://registry.npmjs.org/vue-types/-/vue-types-3.0.1.tgz#20e9baae8673de8093d0a989234695d08d544be0" | |
11780 | - integrity sha512-UbvbzPu8DNzZRfMB1RDTFKBB6seMm80scMFdP+GkKaw00EugC3cjq9AtlS4y258vDkpAe9HfqbRO4cp63qVHXQ== | |
11781 | - dependencies: | |
11782 | - is-plain-object "3.0.1" | |
11783 | - | |
11784 | -vue-types@^3.0.2: | |
11252 | +vue-types@^3.0.0, vue-types@^3.0.2: | |
11785 | 11253 | version "3.0.2" |
11786 | 11254 | resolved "https://registry.npmjs.org/vue-types/-/vue-types-3.0.2.tgz#ec16e05d412c038262fc1efa4ceb9647e7fb601d" |
11787 | 11255 | integrity sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw== |
11788 | 11256 | dependencies: |
11789 | 11257 | is-plain-object "3.0.1" |
11790 | 11258 | |
11791 | -vue@^3.0.0: | |
11792 | - version "3.0.5" | |
11793 | - resolved "https://registry.npmjs.org/vue/-/vue-3.0.5.tgz#de1b82eba24abfe71e0970fc9b8d4b2babdc3fe1" | |
11794 | - integrity sha512-TfaprOmtsAfhQau7WsomXZ8d9op/dkQLNIq8qPV3A0Vxs6GR5E+c1rfJS1SDkXRQj+dFyfnec7+U0Be1huiScg== | |
11795 | - dependencies: | |
11796 | - "@vue/compiler-dom" "3.0.5" | |
11797 | - "@vue/runtime-dom" "3.0.5" | |
11798 | - "@vue/shared" "3.0.5" | |
11799 | - | |
11800 | -vue@^3.0.7: | |
11259 | +vue@^3.0.0, vue@^3.0.7: | |
11801 | 11260 | version "3.0.7" |
11802 | 11261 | resolved "https://registry.npmjs.org/vue/-/vue-3.0.7.tgz#8bcff51f8be570f9e4ce8cc5f52e2ab0fe3c74a1" |
11803 | 11262 | integrity sha512-8h4TikD+JabbMK9aRlBO4laG0AtNHRPHynxYgWZ9sq1YUPfzynd9Jeeb27XNyZytC7aCQRX9xe1+TQJuc181Tw== |
... | ... | @@ -11901,6 +11360,17 @@ whatwg-url@^8.0.0: |
11901 | 11360 | tr46 "^2.0.2" |
11902 | 11361 | webidl-conversions "^6.1.0" |
11903 | 11362 | |
11363 | +which-boxed-primitive@^1.0.1: | |
11364 | + version "1.0.2" | |
11365 | + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" | |
11366 | + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== | |
11367 | + dependencies: | |
11368 | + is-bigint "^1.0.1" | |
11369 | + is-boolean-object "^1.1.0" | |
11370 | + is-number-object "^1.0.4" | |
11371 | + is-string "^1.0.5" | |
11372 | + is-symbol "^1.0.3" | |
11373 | + | |
11904 | 11374 | which-module@^2.0.0: |
11905 | 11375 | version "2.0.0" |
11906 | 11376 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" |
... | ... | @@ -11920,10 +11390,10 @@ which@^2.0.1, which@^2.0.2: |
11920 | 11390 | dependencies: |
11921 | 11391 | isexe "^2.0.0" |
11922 | 11392 | |
11923 | -windicss@^2.5.0: | |
11924 | - version "2.5.0" | |
11925 | - resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.0.tgz#12910cead975778b8aee6511b563e1d6ce03362f" | |
11926 | - integrity sha512-mQt42RmDPK9XayP8L+mJW4Gon2X/ftGlNB3/BKaz6hqi4Hywys0piuUjGQIG6KhMfC0LLIzDpHz5b9GFqxYMrQ== | |
11393 | +windicss@^2.4.5: | |
11394 | + version "2.5.2" | |
11395 | + resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.2.tgz#831858fe45edbf8400d5e8c6b9275fa3ffffcb2f" | |
11396 | + integrity sha512-WzynOx1rQGzgUq62wqyWjUzOEPArwP8oeWyLqymiF54LSFC7f0oIYXR01bxY/y6OK2wODyK/OuwahPNAsseqqg== | |
11927 | 11397 | |
11928 | 11398 | wmf@~1.0.1: |
11929 | 11399 | version "1.0.2" |
... | ... | @@ -11945,24 +11415,24 @@ wordwrap@^1.0.0: |
11945 | 11415 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" |
11946 | 11416 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= |
11947 | 11417 | |
11948 | -workbox-background-sync@^6.1.1: | |
11949 | - version "6.1.1" | |
11950 | - resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.1.tgz#db51214299b4be7a8aa274d8037f22d917241101" | |
11951 | - integrity sha512-w1b3j7snz4pQ8xp0i5Nci40qlglqdk70pbORBtMfl9uikI1qGjYfKq6oYeResCXYxb5mUYS245HsUclb6RFVJA== | |
11418 | +workbox-background-sync@^6.1.2: | |
11419 | + version "6.1.2" | |
11420 | + resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.2.tgz#76d971810063f38ef58b0c1cadb0bf2011617b54" | |
11421 | + integrity sha512-rdXbGCI7KIxlw/rtVc3Bfp7S2ylZ7u+bSPoW8W6bxBR4RsSSagNIJOvkiS1+3zZOwvNcUxcRvVhDcwDz1cBbhQ== | |
11952 | 11422 | dependencies: |
11953 | - workbox-core "^6.1.1" | |
11423 | + workbox-core "^6.1.2" | |
11954 | 11424 | |
11955 | -workbox-broadcast-update@^6.1.1: | |
11956 | - version "6.1.1" | |
11957 | - resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.1.tgz#5815749c9ad22ba4ef5184064a62fbdae3b04bf0" | |
11958 | - integrity sha512-8fBNOQt8ojWWtz3FbkDnKo8CpN6l8UjD2HpQr8tue7HJVfk0X1gfnzZLIDg7HCXhqF7ld3iQbGQqGPf1ihTY6A== | |
11425 | +workbox-broadcast-update@^6.1.2: | |
11426 | + version "6.1.2" | |
11427 | + resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.2.tgz#8a60526fb007a005c4d11381372ed6461276a0cd" | |
11428 | + integrity sha512-pISOgOMH5pRVBlnvverxoaMgZzxdopzozuyjAt6UcctOjvuISQyTGa28C4qQ6XN20/rb3tk3n94N122wxicGXg== | |
11959 | 11429 | dependencies: |
11960 | - workbox-core "^6.1.1" | |
11430 | + workbox-core "^6.1.2" | |
11961 | 11431 | |
11962 | 11432 | workbox-build@^6.1.1: |
11963 | - version "6.1.1" | |
11964 | - resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.1.tgz#8333626fad45734d842293e6c2c1b725f4e15752" | |
11965 | - integrity sha512-mAI3dS4VnXri6BFg02arK1403SqHy2sOlzC4NVAk6Rl2+Ddxs+PmJO4cMTyHw0KEhQFcwk6V8cJeGiXJXYzinA== | |
11433 | + version "6.1.2" | |
11434 | + resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.2.tgz#857445d4f795859203306f26d4e89dde143fdee2" | |
11435 | + integrity sha512-Px9amQd46uJh37ZWoT2LIcXTgBEZAOB28otxqJRNS4jpUhtANHQG3yX6AhwPdcw6xTV5ufLXizBCkF8z/cox0A== | |
11966 | 11436 | dependencies: |
11967 | 11437 | "@babel/core" "^7.11.1" |
11968 | 11438 | "@babel/preset-env" "^7.11.0" |
... | ... | @@ -11970,7 +11440,7 @@ workbox-build@^6.1.1: |
11970 | 11440 | "@hapi/joi" "^16.1.8" |
11971 | 11441 | "@rollup/plugin-babel" "^5.2.0" |
11972 | 11442 | "@rollup/plugin-node-resolve" "^9.0.0" |
11973 | - "@rollup/plugin-replace" "^2.3.3" | |
11443 | + "@rollup/plugin-replace" "^2.4.1" | |
11974 | 11444 | "@surma/rollup-plugin-off-main-thread" "^1.4.1" |
11975 | 11445 | common-tags "^1.8.0" |
11976 | 11446 | fast-json-stable-stringify "^2.1.0" |
... | ... | @@ -11986,119 +11456,119 @@ workbox-build@^6.1.1: |
11986 | 11456 | strip-comments "^2.0.1" |
11987 | 11457 | tempy "^0.6.0" |
11988 | 11458 | upath "^1.2.0" |
11989 | - workbox-background-sync "^6.1.1" | |
11990 | - workbox-broadcast-update "^6.1.1" | |
11991 | - workbox-cacheable-response "^6.1.1" | |
11992 | - workbox-core "^6.1.1" | |
11993 | - workbox-expiration "^6.1.1" | |
11994 | - workbox-google-analytics "^6.1.1" | |
11995 | - workbox-navigation-preload "^6.1.1" | |
11996 | - workbox-precaching "^6.1.1" | |
11997 | - workbox-range-requests "^6.1.1" | |
11998 | - workbox-recipes "^6.1.1" | |
11999 | - workbox-routing "^6.1.1" | |
12000 | - workbox-strategies "^6.1.1" | |
12001 | - workbox-streams "^6.1.1" | |
12002 | - workbox-sw "^6.1.1" | |
12003 | - workbox-window "^6.1.1" | |
12004 | - | |
12005 | -workbox-cacheable-response@^6.1.1: | |
12006 | - version "6.1.1" | |
12007 | - resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.1.tgz#1dc71393cbce83559ad05a8ccb6c6fafa4cccc70" | |
12008 | - integrity sha512-jasNxelRrqCbzIAIMjHk7Ej9BOViBTQlvRJzv3Y0nYuWvxK0CDPQJSraGmTbu3LGiTBbrWEmxe1hVqvLyFKR9A== | |
12009 | - dependencies: | |
12010 | - workbox-core "^6.1.1" | |
12011 | - | |
12012 | -workbox-core@^6.1.1: | |
12013 | - version "6.1.1" | |
12014 | - resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.1.tgz#c8a9b424031b0cf7dacf9d7b8e023d126c9d0167" | |
12015 | - integrity sha512-xsc/72AQxFtt2BHmwU8QtnVV+W5ln4nnYGuz9Q5sPWYGqW4cH0P+FpZDoGM59bmNEyNf+W9bEmidW//e5GsbwQ== | |
12016 | - | |
12017 | -workbox-expiration@^6.1.1: | |
12018 | - version "6.1.1" | |
12019 | - resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.1.tgz#4468c3cdfe76b5888f4ae7e3aad63797a7bc24b1" | |
12020 | - integrity sha512-WbEv8NG1ZUiWI+jv3v7Jqed/PyCMoTpLcf3Nw7tKq0nGy6DFQtmSizO37uJ73oc8vttck97UBPQRiwyP1bZnAg== | |
12021 | - dependencies: | |
12022 | - workbox-core "^6.1.1" | |
12023 | - | |
12024 | -workbox-google-analytics@^6.1.1: | |
12025 | - version "6.1.1" | |
12026 | - resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.1.tgz#c31876954779d65e1334c2dc3232e46d6a5f925a" | |
12027 | - integrity sha512-79PyeE4TyabGXqlDcRG2LKejs8yZ8OoU0/El0BwP8RGrZgp5GMDGuJkat4xggpRTVaOk8rb0aoSbVAYBWpa0pg== | |
12028 | - dependencies: | |
12029 | - workbox-background-sync "^6.1.1" | |
12030 | - workbox-core "^6.1.1" | |
12031 | - workbox-routing "^6.1.1" | |
12032 | - workbox-strategies "^6.1.1" | |
12033 | - | |
12034 | -workbox-navigation-preload@^6.1.1: | |
12035 | - version "6.1.1" | |
12036 | - resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.1.tgz#3c7d39d5f102f4a76f24b48f97701b16ae56bd40" | |
12037 | - integrity sha512-vX5qJDk1Z663nuSSSHkcBFQQJwEe4UHynd5uoX3oC0IlecPclAbyT3QetVh0wYdXv6G6XD/LBd3iNZmlSbTosw== | |
12038 | - dependencies: | |
12039 | - workbox-core "^6.1.1" | |
12040 | - | |
12041 | -workbox-precaching@^6.1.1: | |
12042 | - version "6.1.1" | |
12043 | - resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.1.tgz#f387ccdf60aab30228a4c7ed20a1cd8dee6aaaa4" | |
12044 | - integrity sha512-x8OKwtjd5ewe/x3VlKcXri1P3Tm0uV+uChdMYg/QryrCR9K8x9xwhAw8PZPkwrY0bLLsJMUoX9/lBu8DmjVqTA== | |
12045 | - dependencies: | |
12046 | - workbox-core "^6.1.1" | |
12047 | - workbox-routing "^6.1.1" | |
12048 | - workbox-strategies "^6.1.1" | |
12049 | - | |
12050 | -workbox-range-requests@^6.1.1: | |
12051 | - version "6.1.1" | |
12052 | - resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.1.tgz#4e6d30e91cfc3855ff16cfa3df458e0487da2b4d" | |
12053 | - integrity sha512-ikZ0ZwbFAVMzJ08rM/spn9zC2tohGllFVii9R1q0+xMKvoGDsyzoQnoKrXgyUvcjRPn6ByFncAJ5lUKKG4TGkA== | |
12054 | - dependencies: | |
12055 | - workbox-core "^6.1.1" | |
12056 | - | |
12057 | -workbox-recipes@^6.1.1: | |
12058 | - version "6.1.1" | |
12059 | - resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.1.tgz#0cd1bd3b2ba223db563428ec5d17e960081f70d4" | |
12060 | - integrity sha512-GuzJXBQM+YaFxQwFvcRarAScUoRDoaWXKxxkLWHnCJf0H//MQ8zR9Ay1mv21N6iRoSH11S0u/4yxSeembG/fLA== | |
12061 | - dependencies: | |
12062 | - workbox-cacheable-response "^6.1.1" | |
12063 | - workbox-core "^6.1.1" | |
12064 | - workbox-expiration "^6.1.1" | |
12065 | - workbox-precaching "^6.1.1" | |
12066 | - workbox-routing "^6.1.1" | |
12067 | - workbox-strategies "^6.1.1" | |
12068 | - | |
12069 | -workbox-routing@^6.1.1: | |
12070 | - version "6.1.1" | |
12071 | - resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.1.tgz#833ef6439905757241f9e4d56d8e282c20199c02" | |
12072 | - integrity sha512-Az3Gt3cHNK+W0gTfSb4eKGfwEap9Slak16Krr5SiLhE1gXUY2C2O123HucVCedXgIoqTLOXMtNj71Cm6SwYDEg== | |
12073 | - dependencies: | |
12074 | - workbox-core "^6.1.1" | |
12075 | - | |
12076 | -workbox-strategies@^6.1.1: | |
12077 | - version "6.1.1" | |
12078 | - resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.1.tgz#6e0adda84bcda17d3d0c48baec2eab9b988b9ca6" | |
12079 | - integrity sha512-7qYA9Eiq6hnP2dyenlD7ZtWI1ArBMT8yhTvHVlaOl9kYY7W+Iv3lAfRCjj/nucOKeVXATx4iVJEuFPn5J+8lzw== | |
12080 | - dependencies: | |
12081 | - workbox-core "^6.1.1" | |
12082 | - | |
12083 | -workbox-streams@^6.1.1: | |
12084 | - version "6.1.1" | |
12085 | - resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.1.tgz#0f204f070861eb1afccddeca4a5a8ba069596bd1" | |
12086 | - integrity sha512-EMhY+Y2O7+XVy8MFRmiDwKezAXLzbgjQOJDbxWaGKtwNPbwOF6gGZjCvmnNAU1K+MAvvUNsAFR6AAUKMSfOyaw== | |
12087 | - dependencies: | |
12088 | - workbox-core "^6.1.1" | |
12089 | - workbox-routing "^6.1.1" | |
12090 | - | |
12091 | -workbox-sw@^6.1.1: | |
12092 | - version "6.1.1" | |
12093 | - resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.1.tgz#203ce4611309df1bf9c142d1e3b3a214b1b62944" | |
12094 | - integrity sha512-t6LLSx/rOS8d6w4+fsJOHDqGrjO89iBF0F8nBQgBleEPjvs9Be5j4B11y34Fw7s0CggeA3Kciutr4CqnQtPQUg== | |
12095 | - | |
12096 | -workbox-window@^6.1.1: | |
12097 | - version "6.1.1" | |
12098 | - resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.1.tgz#c1d60f6a56b49235e36edc73c593fa470ffffc72" | |
12099 | - integrity sha512-ZT1enHgi6gYfm+HgRWq8nkqLFEtjOjkq3yGV/qhMmKvI39/sIdO4g2LcjqhnUjbhweedX+9KOOu3U4xasQpGcQ== | |
11459 | + workbox-background-sync "^6.1.2" | |
11460 | + workbox-broadcast-update "^6.1.2" | |
11461 | + workbox-cacheable-response "^6.1.2" | |
11462 | + workbox-core "^6.1.2" | |
11463 | + workbox-expiration "^6.1.2" | |
11464 | + workbox-google-analytics "^6.1.2" | |
11465 | + workbox-navigation-preload "^6.1.2" | |
11466 | + workbox-precaching "^6.1.2" | |
11467 | + workbox-range-requests "^6.1.2" | |
11468 | + workbox-recipes "^6.1.2" | |
11469 | + workbox-routing "^6.1.2" | |
11470 | + workbox-strategies "^6.1.2" | |
11471 | + workbox-streams "^6.1.2" | |
11472 | + workbox-sw "^6.1.2" | |
11473 | + workbox-window "^6.1.2" | |
11474 | + | |
11475 | +workbox-cacheable-response@^6.1.2: | |
11476 | + version "6.1.2" | |
11477 | + resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.2.tgz#926d08ec79f99d773f1c5763ba287b17eef0c760" | |
11478 | + integrity sha512-zSTQWJU+CBHC90N/Dccb9n0IzbTsmnl28usKOlVYbfHS5wit3izpD7djqqHzgzyS+gdemRjY4s02VV9WvyeD1w== | |
11479 | + dependencies: | |
11480 | + workbox-core "^6.1.2" | |
11481 | + | |
11482 | +workbox-core@^6.1.2: | |
11483 | + version "6.1.2" | |
11484 | + resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.2.tgz#b694ca77e1cdf43c330f8fb29122946aa7e6a7a1" | |
11485 | + integrity sha512-69rch7EyPsNAx5Y5YlSoHV39/EEE1oDeb5zmLIy6+mgB4BnaG6u/tlDtvjvKqHcPM0gz2L5SzYtTEvWmk5WRTQ== | |
11486 | + | |
11487 | +workbox-expiration@^6.1.2: | |
11488 | + version "6.1.2" | |
11489 | + resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.2.tgz#0e31ff9cc12a2982430226cd7f34f7b16b3ddbae" | |
11490 | + integrity sha512-86cXz8Ae5cAJMgJ6aD/8E1NMNON4qGnE4ir1G3VuOu1xLsx2ItbbXmz6b0BB2dZ+kX6BDwqE0wkgS5As5Sds7g== | |
11491 | + dependencies: | |
11492 | + workbox-core "^6.1.2" | |
11493 | + | |
11494 | +workbox-google-analytics@^6.1.2: | |
11495 | + version "6.1.2" | |
11496 | + resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.2.tgz#723bc0f03671027afbce5f10f18843907276ff59" | |
11497 | + integrity sha512-7mO/gMms1yivnoVPnm8LXYHV2SsHBxTijYNXx032nzMX0gpBKJfRHmNvZDVRvn2L6YRxFiMg0x9JuHe2b2wSeg== | |
11498 | + dependencies: | |
11499 | + workbox-background-sync "^6.1.2" | |
11500 | + workbox-core "^6.1.2" | |
11501 | + workbox-routing "^6.1.2" | |
11502 | + workbox-strategies "^6.1.2" | |
11503 | + | |
11504 | +workbox-navigation-preload@^6.1.2: | |
11505 | + version "6.1.2" | |
11506 | + resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.2.tgz#442d085035f9d2f57cd123e8e2a9f1fa1f0ec3b2" | |
11507 | + integrity sha512-A41yO/mLjHMNV1EGWFTDExYAYkNvdtu2U0deRNL3HKKEMomqhLfFHJVg/b2jyarMf9Iosm7jHFbbTr8hiaMWwA== | |
11508 | + dependencies: | |
11509 | + workbox-core "^6.1.2" | |
11510 | + | |
11511 | +workbox-precaching@^6.1.2: | |
11512 | + version "6.1.2" | |
11513 | + resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.2.tgz#5d8d5d13793feb8119acfaa54b1a627bc766c881" | |
11514 | + integrity sha512-jGwv6tMdIecsyBSdVCgXoD7bHxLRI972lvYOfvcosGjP3oFKe8p2DVPsn3TIzEVYTl+b3j59utC7yrOP9oEHSg== | |
11515 | + dependencies: | |
11516 | + workbox-core "^6.1.2" | |
11517 | + workbox-routing "^6.1.2" | |
11518 | + workbox-strategies "^6.1.2" | |
11519 | + | |
11520 | +workbox-range-requests@^6.1.2: | |
11521 | + version "6.1.2" | |
11522 | + resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.2.tgz#d6b75f19652db62a74c73c4b052fd46d2a462738" | |
11523 | + integrity sha512-VNwg8DKpQtIRBQ+3GPAv7/OFjs1AdJDt06BJOnNxy4NiY3/Abhjry5P7SJ8uXMNwxiSHKpcLY8nAF+YVYlLuRQ== | |
11524 | + dependencies: | |
11525 | + workbox-core "^6.1.2" | |
11526 | + | |
11527 | +workbox-recipes@^6.1.2: | |
11528 | + version "6.1.2" | |
11529 | + resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.2.tgz#35586e9074f6e66033f6ceede850588a0a446dca" | |
11530 | + integrity sha512-KT9qome7svIajmXP6/4kmZYr8UzWua6MO2GIeM0Th+mr28WzrHfw2iCeo3362hCW/yMiNMlP5uuXiqsaFxUjHg== | |
11531 | + dependencies: | |
11532 | + workbox-cacheable-response "^6.1.2" | |
11533 | + workbox-core "^6.1.2" | |
11534 | + workbox-expiration "^6.1.2" | |
11535 | + workbox-precaching "^6.1.2" | |
11536 | + workbox-routing "^6.1.2" | |
11537 | + workbox-strategies "^6.1.2" | |
11538 | + | |
11539 | +workbox-routing@^6.1.2: | |
11540 | + version "6.1.2" | |
11541 | + resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.2.tgz#e0e6a745bb2fb9110eafaeed0d35fdece0f589b8" | |
11542 | + integrity sha512-aRcqO+KX9A0J5W6hEeEpGhT6Lesqd3WfgaqlSD5LRajm0vAgYnlQzY37w6uC55Ev7M5Gh/xg0lA99qKc6ozsEA== | |
11543 | + dependencies: | |
11544 | + workbox-core "^6.1.2" | |
11545 | + | |
11546 | +workbox-strategies@^6.1.2: | |
11547 | + version "6.1.2" | |
11548 | + resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.2.tgz#3547eb17ebada31d095db98316913e1031b12352" | |
11549 | + integrity sha512-IX7UNePHmmfb1dcXSxgcephYShnLc0pmP3MRT/TZGjv8f0qcZYH7Sr/lTmwaxGXQL8yCSCrQICZwJnHLw2G5Ng== | |
11550 | + dependencies: | |
11551 | + workbox-core "^6.1.2" | |
11552 | + | |
11553 | +workbox-streams@^6.1.2: | |
11554 | + version "6.1.2" | |
11555 | + resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.2.tgz#d7c2fd49bca6e0594e046144248730a245294c6d" | |
11556 | + integrity sha512-iAHamHNZPSfN8k2QMrfei6/2FrReSHCkQUi4gU4B+tDXi4lY33/iU3+xlWLsMunLzoJhtPChDLG10s+EU5egvQ== | |
11557 | + dependencies: | |
11558 | + workbox-core "^6.1.2" | |
11559 | + workbox-routing "^6.1.2" | |
11560 | + | |
11561 | +workbox-sw@^6.1.2: | |
11562 | + version "6.1.2" | |
11563 | + resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.2.tgz#0db44f0625ffb53c0e6e9a056a61dda57f066f45" | |
11564 | + integrity sha512-daxYjELQlNmGLeQolz29vkiVKMcAzZrSv5MLPAghvid6sajpq9x+FfMGriWaZcpyGZVKStAf6XzUbvvm0sJ/HA== | |
11565 | + | |
11566 | +workbox-window@^6.1.2: | |
11567 | + version "6.1.2" | |
11568 | + resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.2.tgz#6db9a3b1eebf6470513d916852bfd1b1c918fe05" | |
11569 | + integrity sha512-SXOAv56PWHzLhJcyQGPio1OXGzSza814lc2D42+go8CmeNIJDb03nzUi1FGMF4Tt1F7h5q8IYzq5bPQLTZ7IKQ== | |
12100 | 11570 | dependencies: |
12101 | - workbox-core "^6.1.1" | |
11571 | + workbox-core "^6.1.2" | |
12102 | 11572 | |
12103 | 11573 | wrap-ansi@^5.1.0: |
12104 | 11574 | version "5.1.0" |
... | ... | @@ -12204,11 +11674,11 @@ yallist@^4.0.0: |
12204 | 11674 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== |
12205 | 11675 | |
12206 | 11676 | yaml@^1.10.0: |
12207 | - version "1.10.0" | |
12208 | - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" | |
12209 | - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== | |
11677 | + version "1.10.2" | |
11678 | + resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" | |
11679 | + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== | |
12210 | 11680 | |
12211 | -yargs-parser@20.x: | |
11681 | +yargs-parser@20.x, yargs-parser@^20.2.2, yargs-parser@^20.2.3: | |
12212 | 11682 | version "20.2.7" |
12213 | 11683 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" |
12214 | 11684 | integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== |
... | ... | @@ -12229,11 +11699,6 @@ yargs-parser@^18.1.2: |
12229 | 11699 | camelcase "^5.0.0" |
12230 | 11700 | decamelize "^1.2.0" |
12231 | 11701 | |
12232 | -yargs-parser@^20.2.2, yargs-parser@^20.2.3: | |
12233 | - version "20.2.4" | |
12234 | - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" | |
12235 | - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== | |
12236 | - | |
12237 | 11702 | yargs@^13.2.4: |
12238 | 11703 | version "13.3.2" |
12239 | 11704 | resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" | ... | ... |