├── src
├── images
│ ├── icon.xcf
│ ├── icon128.png
│ ├── icon16.png
│ ├── icon19.png
│ ├── icon32.png
│ ├── icon38.png
│ └── icon48.png
├── js
│ ├── constants
│ │ └── menuId.js
│ ├── util
│ │ └── iter.js
│ └── background.entry.js
└── manifest.json
├── README.md
├── deploy.js
├── .gitignore
├── webpack.config.js
├── .github
└── workflows
│ └── ci.yml
├── package.json
├── LICENSE
└── yarn.lock
/src/images/icon.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon.xcf
--------------------------------------------------------------------------------
/src/images/icon128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon128.png
--------------------------------------------------------------------------------
/src/images/icon16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon16.png
--------------------------------------------------------------------------------
/src/images/icon19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon19.png
--------------------------------------------------------------------------------
/src/images/icon32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon32.png
--------------------------------------------------------------------------------
/src/images/icon38.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon38.png
--------------------------------------------------------------------------------
/src/images/icon48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikdesjardins/the-lesser-discarder/master/src/images/icon48.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # the-lesser-discarder
2 |
3 | Surfaces the chrome.tabs.discard API.
4 |
5 | Right-click on the browser action to use.
6 |
--------------------------------------------------------------------------------
/src/js/constants/menuId.js:
--------------------------------------------------------------------------------
1 | export const OTHER = 'discard-other';
2 | export const RIGHT = 'discard-right';
3 | export const LEFT = 'discard-left';
4 |
--------------------------------------------------------------------------------
/src/js/util/iter.js:
--------------------------------------------------------------------------------
1 | export function* takeWhile(iterable, predicate) {
2 | for (const x of iterable) {
3 | if (!predicate(x)) return;
4 | yield x;
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/deploy.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const fs = require('fs');
4 | const path = require('path');
5 | const deployChrome = require('chrome-extension-deploy');
6 |
7 | deployChrome({
8 | clientId: process.env.CHROME_CLIENT_ID,
9 | clientSecret: process.env.CHROME_CLIENT_SECRET,
10 | refreshToken: process.env.CHROME_REFRESH_TOKEN,
11 | id: 'eihhlkhhliimeoekbacdagapnimpjpic',
12 | zip: fs.readFileSync(path.join(__dirname, 'dist/TLD.zip'))
13 | }).then(function() {
14 | console.log('Chrome deploy complete!');
15 | }, function(err) {
16 | console.error('Chrome failed:', err);
17 | process.exitCode = 1;
18 | });
19 |
--------------------------------------------------------------------------------
/src/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "manifest_version": 3,
3 | "name": "{{prop-loader?title!../package.json}}",
4 | "short_name": "TLD",
5 | "description": "{{prop-loader?description!../package.json}}",
6 | "version": "{{prop-loader?version!../package.json}}",
7 | "minimum_chrome_version": "92",
8 | "permissions": [
9 | "contextMenus"
10 | ],
11 | "content_security_policy": {
12 | "extension_pages": "default-src 'self'"
13 | },
14 | "background": {
15 | "service_worker": "{{./js/background.entry.js}}"
16 | },
17 | "icons": {
18 | "16": "{{./images/icon16.png}}",
19 | "32": "{{./images/icon32.png}}",
20 | "48": "{{./images/icon48.png}}",
21 | "128": "{{./images/icon128.png}}"
22 | },
23 | "action": {
24 | "default_icon": {
25 | "19": "{{./images/icon19.png}}",
26 | "38": "{{./images/icon38.png}}"
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 |
8 | # Runtime data
9 | pids
10 | *.pid
11 | *.seed
12 | *.pid.lock
13 |
14 | # Directory for instrumented libs generated by jscoverage/JSCover
15 | lib-cov
16 |
17 | # Coverage directory used by tools like istanbul
18 | coverage
19 |
20 | # nyc test coverage
21 | .nyc_output
22 |
23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24 | .grunt
25 |
26 | # node-waf configuration
27 | .lock-wscript
28 |
29 | # Compiled binary addons (http://nodejs.org/api/addons.html)
30 | build/Release
31 |
32 | # Dependency directories
33 | node_modules
34 | jspm_packages
35 |
36 | # Optional npm cache directory
37 | .npm
38 |
39 | # Optional REPL history
40 | .node_repl_history
41 |
42 | # IntelliJ
43 | .idea
44 | *.iml
45 |
46 | # output
47 | /dist
48 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 |
3 | const InertEntryPlugin = require('inert-entry-webpack-plugin');
4 | const ZipPlugin = require('zip-webpack-plugin');
5 |
6 | module.exports = {
7 | entry: 'extricate-loader!interpolate-loader!./src/manifest.json',
8 | output: {
9 | path: path.join(__dirname, 'dist'),
10 | filename: 'manifest.json',
11 | },
12 | module: {
13 | rules: [{
14 | test: /\.entry\.js$/,
15 | use: [
16 | { loader: 'file-loader', options: { name: '[name].js', esModule: false } },
17 | { loader: 'webpack-rollup-loader' },
18 | ],
19 | }, {
20 | test: /\.(png)$/,
21 | use: [
22 | { loader: 'file-loader', options: { name: '[name].[ext]', esModule: false } },
23 | ],
24 | }],
25 | },
26 | optimization: {
27 | minimize: false,
28 | },
29 | plugins: [
30 | new InertEntryPlugin(),
31 | new ZipPlugin({ filename: 'TLD.zip' }),
32 | ],
33 | };
34 |
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 |
3 | on:
4 | push:
5 | branches:
6 | - master
7 | tags:
8 | - v*.*.*
9 | pull_request:
10 |
11 | jobs:
12 | build:
13 | runs-on: ubuntu-latest
14 | steps:
15 | - uses: actions/checkout@v1
16 | - uses: actions/setup-node@v1
17 | with:
18 | node-version: '12.x'
19 | registry-url: 'https://registry.npmjs.org'
20 | - run: yarn install
21 | - run: yarn build
22 | - uses: softprops/action-gh-release@v1
23 | if: startsWith(github.ref, 'refs/tags/')
24 | with:
25 | files: dist/TLD.zip
26 | env:
27 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 | - run: node deploy.js
29 | if: startsWith(github.ref, 'refs/tags/')
30 | env:
31 | CHROME_CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
32 | CHROME_CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
33 | CHROME_REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
34 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "The Lesser Discarder",
3 | "name": "the-lesser-discarder",
4 | "version": "0.4.0",
5 | "description": "Surfaces the chrome.tabs.discard API.",
6 | "private": true,
7 | "repository": {
8 | "type": "git",
9 | "url": "https://github.com/erikdesjardins/the-lesser-discarder.git"
10 | },
11 | "license": "GPL-3.0",
12 | "scripts": {
13 | "prestart": "rimraf dist",
14 | "start": "webpack --watch --progress --mode development",
15 | "preonce": "rimraf dist",
16 | "once": "webpack --progress --mode development",
17 | "prebuild": "rimraf dist",
18 | "build": "webpack --progress --mode production"
19 | },
20 | "devDependencies": {
21 | "chrome-extension-deploy": "3.0.0",
22 | "extricate-loader": "3.0.0",
23 | "file-loader": "6.2.0",
24 | "inert-entry-webpack-plugin": "4.0.2",
25 | "interpolate-loader": "2.0.1",
26 | "prop-loader": "1.0.0",
27 | "rimraf": "3.0.2",
28 | "rollup": "2.57.0",
29 | "webpack": "4.46.0",
30 | "webpack-cli": "4.8.0",
31 | "webpack-rollup-loader": "0.8.1",
32 | "zip-webpack-plugin": "4.0.1"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/src/js/background.entry.js:
--------------------------------------------------------------------------------
1 | import { OTHER, RIGHT, LEFT } from './constants/menuId';
2 | import { takeWhile } from './util/iter';
3 |
4 | for (const [id, title] of [
5 | [OTHER, 'Discard other tabs'],
6 | [RIGHT, 'Discard tabs to the right'],
7 | [LEFT, 'Discard tabs to the left'],
8 | ]) {
9 | chrome.contextMenus.create({ id, title, contexts: ['action'] });
10 | }
11 |
12 | chrome.contextMenus.onClicked.addListener(async ({ menuItemId }, { id: activeTabId, windowId }) => {
13 | const tabsInCurrentWindow = await chrome.tabs.query({ windowId });
14 |
15 | let tabIds = tabsInCurrentWindow
16 | .filter(({ audible }) => !audible)
17 | .map(({ id }) => id);
18 |
19 | switch (menuItemId) {
20 | case OTHER:
21 | tabIds = tabIds.filter(id => id !== activeTabId);
22 | break;
23 | case RIGHT:
24 | tabIds = tabIds.reverse();
25 | /* fall through */
26 | case LEFT:
27 | tabIds = takeWhile(tabIds, id => id !== activeTabId);
28 | break;
29 | }
30 |
31 | for (const id of tabIds) {
32 | chrome.tabs.discard(id);
33 | }
34 | });
35 |
36 | chrome.action.onClicked.addListener(async ({ windowId }) => {
37 | const highlightedInCurrentWindow = await chrome.tabs.query({ windowId, highlighted: true });
38 |
39 | const tabIds = highlightedInCurrentWindow.map(({ id }) => id);
40 |
41 | for (const id of tabIds) {
42 | chrome.tabs.discard(id);
43 | }
44 | });
45 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@discoveryjs/json-ext@^0.5.0":
6 | version "0.5.5"
7 | resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz#9283c9ce5b289a3c4f61c12757469e59377f81f3"
8 | integrity sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==
9 |
10 | "@types/json-schema@^7.0.8":
11 | version "7.0.9"
12 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
13 | integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
14 |
15 | "@webassemblyjs/ast@1.9.0":
16 | version "1.9.0"
17 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
18 | integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
19 | dependencies:
20 | "@webassemblyjs/helper-module-context" "1.9.0"
21 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
22 | "@webassemblyjs/wast-parser" "1.9.0"
23 |
24 | "@webassemblyjs/floating-point-hex-parser@1.9.0":
25 | version "1.9.0"
26 | resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
27 | integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
28 |
29 | "@webassemblyjs/helper-api-error@1.9.0":
30 | version "1.9.0"
31 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
32 | integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
33 |
34 | "@webassemblyjs/helper-buffer@1.9.0":
35 | version "1.9.0"
36 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
37 | integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
38 |
39 | "@webassemblyjs/helper-code-frame@1.9.0":
40 | version "1.9.0"
41 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
42 | integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
43 | dependencies:
44 | "@webassemblyjs/wast-printer" "1.9.0"
45 |
46 | "@webassemblyjs/helper-fsm@1.9.0":
47 | version "1.9.0"
48 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
49 | integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
50 |
51 | "@webassemblyjs/helper-module-context@1.9.0":
52 | version "1.9.0"
53 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
54 | integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
55 | dependencies:
56 | "@webassemblyjs/ast" "1.9.0"
57 |
58 | "@webassemblyjs/helper-wasm-bytecode@1.9.0":
59 | version "1.9.0"
60 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
61 | integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
62 |
63 | "@webassemblyjs/helper-wasm-section@1.9.0":
64 | version "1.9.0"
65 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
66 | integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
67 | dependencies:
68 | "@webassemblyjs/ast" "1.9.0"
69 | "@webassemblyjs/helper-buffer" "1.9.0"
70 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
71 | "@webassemblyjs/wasm-gen" "1.9.0"
72 |
73 | "@webassemblyjs/ieee754@1.9.0":
74 | version "1.9.0"
75 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
76 | integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
77 | dependencies:
78 | "@xtuc/ieee754" "^1.2.0"
79 |
80 | "@webassemblyjs/leb128@1.9.0":
81 | version "1.9.0"
82 | resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
83 | integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
84 | dependencies:
85 | "@xtuc/long" "4.2.2"
86 |
87 | "@webassemblyjs/utf8@1.9.0":
88 | version "1.9.0"
89 | resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
90 | integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
91 |
92 | "@webassemblyjs/wasm-edit@1.9.0":
93 | version "1.9.0"
94 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
95 | integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
96 | dependencies:
97 | "@webassemblyjs/ast" "1.9.0"
98 | "@webassemblyjs/helper-buffer" "1.9.0"
99 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
100 | "@webassemblyjs/helper-wasm-section" "1.9.0"
101 | "@webassemblyjs/wasm-gen" "1.9.0"
102 | "@webassemblyjs/wasm-opt" "1.9.0"
103 | "@webassemblyjs/wasm-parser" "1.9.0"
104 | "@webassemblyjs/wast-printer" "1.9.0"
105 |
106 | "@webassemblyjs/wasm-gen@1.9.0":
107 | version "1.9.0"
108 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
109 | integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
110 | dependencies:
111 | "@webassemblyjs/ast" "1.9.0"
112 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
113 | "@webassemblyjs/ieee754" "1.9.0"
114 | "@webassemblyjs/leb128" "1.9.0"
115 | "@webassemblyjs/utf8" "1.9.0"
116 |
117 | "@webassemblyjs/wasm-opt@1.9.0":
118 | version "1.9.0"
119 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
120 | integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
121 | dependencies:
122 | "@webassemblyjs/ast" "1.9.0"
123 | "@webassemblyjs/helper-buffer" "1.9.0"
124 | "@webassemblyjs/wasm-gen" "1.9.0"
125 | "@webassemblyjs/wasm-parser" "1.9.0"
126 |
127 | "@webassemblyjs/wasm-parser@1.9.0":
128 | version "1.9.0"
129 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
130 | integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
131 | dependencies:
132 | "@webassemblyjs/ast" "1.9.0"
133 | "@webassemblyjs/helper-api-error" "1.9.0"
134 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
135 | "@webassemblyjs/ieee754" "1.9.0"
136 | "@webassemblyjs/leb128" "1.9.0"
137 | "@webassemblyjs/utf8" "1.9.0"
138 |
139 | "@webassemblyjs/wast-parser@1.9.0":
140 | version "1.9.0"
141 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
142 | integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
143 | dependencies:
144 | "@webassemblyjs/ast" "1.9.0"
145 | "@webassemblyjs/floating-point-hex-parser" "1.9.0"
146 | "@webassemblyjs/helper-api-error" "1.9.0"
147 | "@webassemblyjs/helper-code-frame" "1.9.0"
148 | "@webassemblyjs/helper-fsm" "1.9.0"
149 | "@xtuc/long" "4.2.2"
150 |
151 | "@webassemblyjs/wast-printer@1.9.0":
152 | version "1.9.0"
153 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
154 | integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
155 | dependencies:
156 | "@webassemblyjs/ast" "1.9.0"
157 | "@webassemblyjs/wast-parser" "1.9.0"
158 | "@xtuc/long" "4.2.2"
159 |
160 | "@webpack-cli/configtest@^1.0.4":
161 | version "1.0.4"
162 | resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.4.tgz#f03ce6311c0883a83d04569e2c03c6238316d2aa"
163 | integrity sha512-cs3XLy+UcxiP6bj0A6u7MLLuwdXJ1c3Dtc0RkKg+wiI1g/Ti1om8+/2hc2A2B60NbBNAbMgyBMHvyymWm/j4wQ==
164 |
165 | "@webpack-cli/info@^1.3.0":
166 | version "1.3.0"
167 | resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.3.0.tgz#9d78a31101a960997a4acd41ffd9b9300627fe2b"
168 | integrity sha512-ASiVB3t9LOKHs5DyVUcxpraBXDOKubYu/ihHhU+t1UPpxsivg6Od2E2qU4gJCekfEddzRBzHhzA/Acyw/mlK/w==
169 | dependencies:
170 | envinfo "^7.7.3"
171 |
172 | "@webpack-cli/serve@^1.5.2":
173 | version "1.5.2"
174 | resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.5.2.tgz#ea584b637ff63c5a477f6f21604b5a205b72c9ec"
175 | integrity sha512-vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw==
176 |
177 | "@xtuc/ieee754@^1.2.0":
178 | version "1.2.0"
179 | resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
180 | integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
181 |
182 | "@xtuc/long@4.2.2":
183 | version "4.2.2"
184 | resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
185 | integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
186 |
187 | acorn@^6.4.1:
188 | version "6.4.2"
189 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
190 | integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
191 |
192 | ajv-errors@^1.0.0:
193 | version "1.0.1"
194 | resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
195 | integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
196 |
197 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
198 | version "3.5.2"
199 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
200 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
201 |
202 | ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.5:
203 | version "6.12.6"
204 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
205 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
206 | dependencies:
207 | fast-deep-equal "^3.1.1"
208 | fast-json-stable-stringify "^2.0.0"
209 | json-schema-traverse "^0.4.1"
210 | uri-js "^4.2.2"
211 |
212 | anymatch@^2.0.0:
213 | version "2.0.0"
214 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
215 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
216 | dependencies:
217 | micromatch "^3.1.4"
218 | normalize-path "^2.1.1"
219 |
220 | anymatch@~3.1.2:
221 | version "3.1.2"
222 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
223 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
224 | dependencies:
225 | normalize-path "^3.0.0"
226 | picomatch "^2.0.4"
227 |
228 | aproba@^1.1.1:
229 | version "1.2.0"
230 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
231 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
232 |
233 | arr-diff@^4.0.0:
234 | version "4.0.0"
235 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
236 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
237 |
238 | arr-flatten@^1.1.0:
239 | version "1.1.0"
240 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
241 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
242 |
243 | arr-union@^3.1.0:
244 | version "3.1.0"
245 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
246 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
247 |
248 | array-unique@^0.3.2:
249 | version "0.3.2"
250 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
251 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
252 |
253 | asn1.js@^5.2.0:
254 | version "5.4.1"
255 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
256 | integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
257 | dependencies:
258 | bn.js "^4.0.0"
259 | inherits "^2.0.1"
260 | minimalistic-assert "^1.0.0"
261 | safer-buffer "^2.1.0"
262 |
263 | assert@^1.1.1:
264 | version "1.5.0"
265 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
266 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
267 | dependencies:
268 | object-assign "^4.1.1"
269 | util "0.10.3"
270 |
271 | assign-symbols@^1.0.0:
272 | version "1.0.0"
273 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
274 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
275 |
276 | async-each@^1.0.1:
277 | version "1.0.3"
278 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
279 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
280 |
281 | asynckit@^0.4.0:
282 | version "0.4.0"
283 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
284 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
285 |
286 | atob@^2.1.2:
287 | version "2.1.2"
288 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
289 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
290 |
291 | balanced-match@^1.0.0:
292 | version "1.0.2"
293 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
294 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
295 |
296 | base64-js@^1.0.2:
297 | version "1.5.1"
298 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
299 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
300 |
301 | base@^0.11.1:
302 | version "0.11.2"
303 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
304 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
305 | dependencies:
306 | cache-base "^1.0.1"
307 | class-utils "^0.3.5"
308 | component-emitter "^1.2.1"
309 | define-property "^1.0.0"
310 | isobject "^3.0.1"
311 | mixin-deep "^1.2.0"
312 | pascalcase "^0.1.1"
313 |
314 | big.js@^5.2.2:
315 | version "5.2.2"
316 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
317 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
318 |
319 | binary-extensions@^1.0.0:
320 | version "1.13.1"
321 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
322 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
323 |
324 | binary-extensions@^2.0.0:
325 | version "2.2.0"
326 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
327 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
328 |
329 | bindings@^1.5.0:
330 | version "1.5.0"
331 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
332 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
333 | dependencies:
334 | file-uri-to-path "1.0.0"
335 |
336 | bluebird@^3.5.5:
337 | version "3.7.2"
338 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
339 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
340 |
341 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
342 | version "4.12.0"
343 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
344 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
345 |
346 | bn.js@^5.0.0, bn.js@^5.1.1:
347 | version "5.2.0"
348 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
349 | integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
350 |
351 | brace-expansion@^1.1.7:
352 | version "1.1.11"
353 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
354 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
355 | dependencies:
356 | balanced-match "^1.0.0"
357 | concat-map "0.0.1"
358 |
359 | braces@^2.3.1, braces@^2.3.2:
360 | version "2.3.2"
361 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
362 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
363 | dependencies:
364 | arr-flatten "^1.1.0"
365 | array-unique "^0.3.2"
366 | extend-shallow "^2.0.1"
367 | fill-range "^4.0.0"
368 | isobject "^3.0.1"
369 | repeat-element "^1.1.2"
370 | snapdragon "^0.8.1"
371 | snapdragon-node "^2.0.1"
372 | split-string "^3.0.2"
373 | to-regex "^3.0.1"
374 |
375 | braces@~3.0.2:
376 | version "3.0.2"
377 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
378 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
379 | dependencies:
380 | fill-range "^7.0.1"
381 |
382 | brorand@^1.0.1, brorand@^1.1.0:
383 | version "1.1.0"
384 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
385 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
386 |
387 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
388 | version "1.2.0"
389 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
390 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
391 | dependencies:
392 | buffer-xor "^1.0.3"
393 | cipher-base "^1.0.0"
394 | create-hash "^1.1.0"
395 | evp_bytestokey "^1.0.3"
396 | inherits "^2.0.1"
397 | safe-buffer "^5.0.1"
398 |
399 | browserify-cipher@^1.0.0:
400 | version "1.0.1"
401 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
402 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
403 | dependencies:
404 | browserify-aes "^1.0.4"
405 | browserify-des "^1.0.0"
406 | evp_bytestokey "^1.0.0"
407 |
408 | browserify-des@^1.0.0:
409 | version "1.0.2"
410 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
411 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
412 | dependencies:
413 | cipher-base "^1.0.1"
414 | des.js "^1.0.0"
415 | inherits "^2.0.1"
416 | safe-buffer "^5.1.2"
417 |
418 | browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
419 | version "4.1.0"
420 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
421 | integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
422 | dependencies:
423 | bn.js "^5.0.0"
424 | randombytes "^2.0.1"
425 |
426 | browserify-sign@^4.0.0:
427 | version "4.2.1"
428 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
429 | integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
430 | dependencies:
431 | bn.js "^5.1.1"
432 | browserify-rsa "^4.0.1"
433 | create-hash "^1.2.0"
434 | create-hmac "^1.1.7"
435 | elliptic "^6.5.3"
436 | inherits "^2.0.4"
437 | parse-asn1 "^5.1.5"
438 | readable-stream "^3.6.0"
439 | safe-buffer "^5.2.0"
440 |
441 | browserify-zlib@^0.2.0:
442 | version "0.2.0"
443 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
444 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
445 | dependencies:
446 | pako "~1.0.5"
447 |
448 | buffer-crc32@~0.2.3:
449 | version "0.2.13"
450 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
451 | integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
452 |
453 | buffer-from@^1.0.0:
454 | version "1.1.2"
455 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
456 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
457 |
458 | buffer-xor@^1.0.3:
459 | version "1.0.3"
460 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
461 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
462 |
463 | buffer@^4.3.0:
464 | version "4.9.2"
465 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
466 | integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
467 | dependencies:
468 | base64-js "^1.0.2"
469 | ieee754 "^1.1.4"
470 | isarray "^1.0.0"
471 |
472 | builtin-status-codes@^3.0.0:
473 | version "3.0.0"
474 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
475 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
476 |
477 | cacache@^12.0.2:
478 | version "12.0.4"
479 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
480 | integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
481 | dependencies:
482 | bluebird "^3.5.5"
483 | chownr "^1.1.1"
484 | figgy-pudding "^3.5.1"
485 | glob "^7.1.4"
486 | graceful-fs "^4.1.15"
487 | infer-owner "^1.0.3"
488 | lru-cache "^5.1.1"
489 | mississippi "^3.0.0"
490 | mkdirp "^0.5.1"
491 | move-concurrently "^1.0.1"
492 | promise-inflight "^1.0.1"
493 | rimraf "^2.6.3"
494 | ssri "^6.0.1"
495 | unique-filename "^1.1.1"
496 | y18n "^4.0.0"
497 |
498 | cache-base@^1.0.1:
499 | version "1.0.1"
500 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
501 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
502 | dependencies:
503 | collection-visit "^1.0.0"
504 | component-emitter "^1.2.1"
505 | get-value "^2.0.6"
506 | has-value "^1.0.0"
507 | isobject "^3.0.1"
508 | set-value "^2.0.0"
509 | to-object-path "^0.3.0"
510 | union-value "^1.0.0"
511 | unset-value "^1.0.0"
512 |
513 | call-bind@^1.0.0:
514 | version "1.0.2"
515 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
516 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
517 | dependencies:
518 | function-bind "^1.1.1"
519 | get-intrinsic "^1.0.2"
520 |
521 | chokidar@^2.1.8:
522 | version "2.1.8"
523 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
524 | integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
525 | dependencies:
526 | anymatch "^2.0.0"
527 | async-each "^1.0.1"
528 | braces "^2.3.2"
529 | glob-parent "^3.1.0"
530 | inherits "^2.0.3"
531 | is-binary-path "^1.0.0"
532 | is-glob "^4.0.0"
533 | normalize-path "^3.0.0"
534 | path-is-absolute "^1.0.0"
535 | readdirp "^2.2.1"
536 | upath "^1.1.1"
537 | optionalDependencies:
538 | fsevents "^1.2.7"
539 |
540 | chokidar@^3.4.1:
541 | version "3.5.2"
542 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
543 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
544 | dependencies:
545 | anymatch "~3.1.2"
546 | braces "~3.0.2"
547 | glob-parent "~5.1.2"
548 | is-binary-path "~2.1.0"
549 | is-glob "~4.0.1"
550 | normalize-path "~3.0.0"
551 | readdirp "~3.6.0"
552 | optionalDependencies:
553 | fsevents "~2.3.2"
554 |
555 | chownr@^1.1.1:
556 | version "1.1.4"
557 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
558 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
559 |
560 | chrome-extension-deploy@3.0.0:
561 | version "3.0.0"
562 | resolved "https://registry.yarnpkg.com/chrome-extension-deploy/-/chrome-extension-deploy-3.0.0.tgz#f85e496bf8cfd28077d11f59573e2fa8cb16a96f"
563 | integrity sha1-+F5Ja/jP0oB30R9ZVz4vqMsWqW8=
564 | dependencies:
565 | superagent "^3.4.1"
566 |
567 | chrome-trace-event@^1.0.2:
568 | version "1.0.3"
569 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
570 | integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
571 |
572 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
573 | version "1.0.4"
574 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
575 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
576 | dependencies:
577 | inherits "^2.0.1"
578 | safe-buffer "^5.0.1"
579 |
580 | class-utils@^0.3.5:
581 | version "0.3.6"
582 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
583 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
584 | dependencies:
585 | arr-union "^3.1.0"
586 | define-property "^0.2.5"
587 | isobject "^3.0.0"
588 | static-extend "^0.1.1"
589 |
590 | clone-deep@^4.0.1:
591 | version "4.0.1"
592 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
593 | integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
594 | dependencies:
595 | is-plain-object "^2.0.4"
596 | kind-of "^6.0.2"
597 | shallow-clone "^3.0.0"
598 |
599 | collection-visit@^1.0.0:
600 | version "1.0.0"
601 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
602 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
603 | dependencies:
604 | map-visit "^1.0.0"
605 | object-visit "^1.0.0"
606 |
607 | colorette@^1.2.1:
608 | version "1.4.0"
609 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
610 | integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==
611 |
612 | combined-stream@^1.0.6:
613 | version "1.0.8"
614 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
615 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
616 | dependencies:
617 | delayed-stream "~1.0.0"
618 |
619 | commander@^2.20.0:
620 | version "2.20.3"
621 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
622 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
623 |
624 | commander@^7.0.0:
625 | version "7.2.0"
626 | resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
627 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
628 |
629 | commondir@^1.0.1:
630 | version "1.0.1"
631 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
632 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
633 |
634 | component-emitter@^1.2.0, component-emitter@^1.2.1:
635 | version "1.3.0"
636 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
637 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
638 |
639 | concat-map@0.0.1:
640 | version "0.0.1"
641 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
642 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
643 |
644 | concat-stream@^1.5.0:
645 | version "1.6.2"
646 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
647 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
648 | dependencies:
649 | buffer-from "^1.0.0"
650 | inherits "^2.0.3"
651 | readable-stream "^2.2.2"
652 | typedarray "^0.0.6"
653 |
654 | console-browserify@^1.1.0:
655 | version "1.2.0"
656 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
657 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
658 |
659 | constants-browserify@^1.0.0:
660 | version "1.0.0"
661 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
662 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
663 |
664 | cookiejar@^2.1.0:
665 | version "2.1.2"
666 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c"
667 | integrity sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==
668 |
669 | copy-concurrently@^1.0.0:
670 | version "1.0.5"
671 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
672 | integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
673 | dependencies:
674 | aproba "^1.1.1"
675 | fs-write-stream-atomic "^1.0.8"
676 | iferr "^0.1.5"
677 | mkdirp "^0.5.1"
678 | rimraf "^2.5.4"
679 | run-queue "^1.0.0"
680 |
681 | copy-descriptor@^0.1.0:
682 | version "0.1.1"
683 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
684 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
685 |
686 | core-util-is@~1.0.0:
687 | version "1.0.3"
688 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
689 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
690 |
691 | create-ecdh@^4.0.0:
692 | version "4.0.4"
693 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
694 | integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
695 | dependencies:
696 | bn.js "^4.1.0"
697 | elliptic "^6.5.3"
698 |
699 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
700 | version "1.2.0"
701 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
702 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
703 | dependencies:
704 | cipher-base "^1.0.1"
705 | inherits "^2.0.1"
706 | md5.js "^1.3.4"
707 | ripemd160 "^2.0.1"
708 | sha.js "^2.4.0"
709 |
710 | create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
711 | version "1.1.7"
712 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
713 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
714 | dependencies:
715 | cipher-base "^1.0.3"
716 | create-hash "^1.1.0"
717 | inherits "^2.0.1"
718 | ripemd160 "^2.0.0"
719 | safe-buffer "^5.0.1"
720 | sha.js "^2.4.8"
721 |
722 | cross-spawn@^7.0.3:
723 | version "7.0.3"
724 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
725 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
726 | dependencies:
727 | path-key "^3.1.0"
728 | shebang-command "^2.0.0"
729 | which "^2.0.1"
730 |
731 | crypto-browserify@^3.11.0:
732 | version "3.12.0"
733 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
734 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
735 | dependencies:
736 | browserify-cipher "^1.0.0"
737 | browserify-sign "^4.0.0"
738 | create-ecdh "^4.0.0"
739 | create-hash "^1.1.0"
740 | create-hmac "^1.1.0"
741 | diffie-hellman "^5.0.0"
742 | inherits "^2.0.1"
743 | pbkdf2 "^3.0.3"
744 | public-encrypt "^4.0.0"
745 | randombytes "^2.0.0"
746 | randomfill "^1.0.3"
747 |
748 | cyclist@^1.0.1:
749 | version "1.0.1"
750 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
751 | integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
752 |
753 | debug@^2.2.0, debug@^2.3.3:
754 | version "2.6.9"
755 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
756 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
757 | dependencies:
758 | ms "2.0.0"
759 |
760 | debug@^3.1.0:
761 | version "3.2.7"
762 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
763 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
764 | dependencies:
765 | ms "^2.1.1"
766 |
767 | decode-uri-component@^0.2.0:
768 | version "0.2.0"
769 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
770 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
771 |
772 | define-property@^0.2.5:
773 | version "0.2.5"
774 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
775 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
776 | dependencies:
777 | is-descriptor "^0.1.0"
778 |
779 | define-property@^1.0.0:
780 | version "1.0.0"
781 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
782 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
783 | dependencies:
784 | is-descriptor "^1.0.0"
785 |
786 | define-property@^2.0.2:
787 | version "2.0.2"
788 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
789 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
790 | dependencies:
791 | is-descriptor "^1.0.2"
792 | isobject "^3.0.1"
793 |
794 | delayed-stream@~1.0.0:
795 | version "1.0.0"
796 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
797 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
798 |
799 | des.js@^1.0.0:
800 | version "1.0.1"
801 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
802 | integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
803 | dependencies:
804 | inherits "^2.0.1"
805 | minimalistic-assert "^1.0.0"
806 |
807 | diffie-hellman@^5.0.0:
808 | version "5.0.3"
809 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
810 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
811 | dependencies:
812 | bn.js "^4.1.0"
813 | miller-rabin "^4.0.0"
814 | randombytes "^2.0.0"
815 |
816 | domain-browser@^1.1.1:
817 | version "1.2.0"
818 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
819 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
820 |
821 | duplexify@^3.4.2, duplexify@^3.6.0:
822 | version "3.7.1"
823 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
824 | integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
825 | dependencies:
826 | end-of-stream "^1.0.0"
827 | inherits "^2.0.1"
828 | readable-stream "^2.0.0"
829 | stream-shift "^1.0.0"
830 |
831 | elliptic@^6.5.3:
832 | version "6.5.4"
833 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
834 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
835 | dependencies:
836 | bn.js "^4.11.9"
837 | brorand "^1.1.0"
838 | hash.js "^1.0.0"
839 | hmac-drbg "^1.0.1"
840 | inherits "^2.0.4"
841 | minimalistic-assert "^1.0.1"
842 | minimalistic-crypto-utils "^1.0.1"
843 |
844 | emojis-list@^3.0.0:
845 | version "3.0.0"
846 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
847 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
848 |
849 | end-of-stream@^1.0.0, end-of-stream@^1.1.0:
850 | version "1.4.4"
851 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
852 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
853 | dependencies:
854 | once "^1.4.0"
855 |
856 | enhanced-resolve@^4.5.0:
857 | version "4.5.0"
858 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
859 | integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
860 | dependencies:
861 | graceful-fs "^4.1.2"
862 | memory-fs "^0.5.0"
863 | tapable "^1.0.0"
864 |
865 | envinfo@^7.7.3:
866 | version "7.8.1"
867 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
868 | integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
869 |
870 | errno@^0.1.3, errno@~0.1.7:
871 | version "0.1.8"
872 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
873 | integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
874 | dependencies:
875 | prr "~1.0.1"
876 |
877 | escape-string-regexp@^2.0.0:
878 | version "2.0.0"
879 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
880 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
881 |
882 | eslint-scope@^4.0.3:
883 | version "4.0.3"
884 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
885 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
886 | dependencies:
887 | esrecurse "^4.1.0"
888 | estraverse "^4.1.1"
889 |
890 | esrecurse@^4.1.0:
891 | version "4.3.0"
892 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
893 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
894 | dependencies:
895 | estraverse "^5.2.0"
896 |
897 | estraverse@^4.1.1:
898 | version "4.3.0"
899 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
900 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
901 |
902 | estraverse@^5.2.0:
903 | version "5.2.0"
904 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
905 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
906 |
907 | events@^3.0.0:
908 | version "3.3.0"
909 | resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
910 | integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
911 |
912 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
913 | version "1.0.3"
914 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
915 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
916 | dependencies:
917 | md5.js "^1.3.4"
918 | safe-buffer "^5.1.1"
919 |
920 | execa@^5.0.0:
921 | version "5.1.1"
922 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
923 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
924 | dependencies:
925 | cross-spawn "^7.0.3"
926 | get-stream "^6.0.0"
927 | human-signals "^2.1.0"
928 | is-stream "^2.0.0"
929 | merge-stream "^2.0.0"
930 | npm-run-path "^4.0.1"
931 | onetime "^5.1.2"
932 | signal-exit "^3.0.3"
933 | strip-final-newline "^2.0.0"
934 |
935 | expand-brackets@^2.1.4:
936 | version "2.1.4"
937 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
938 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
939 | dependencies:
940 | debug "^2.3.3"
941 | define-property "^0.2.5"
942 | extend-shallow "^2.0.1"
943 | posix-character-classes "^0.1.0"
944 | regex-not "^1.0.0"
945 | snapdragon "^0.8.1"
946 | to-regex "^3.0.1"
947 |
948 | extend-shallow@^2.0.1:
949 | version "2.0.1"
950 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
951 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
952 | dependencies:
953 | is-extendable "^0.1.0"
954 |
955 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
956 | version "3.0.2"
957 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
958 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
959 | dependencies:
960 | assign-symbols "^1.0.0"
961 | is-extendable "^1.0.1"
962 |
963 | extend@^3.0.0:
964 | version "3.0.2"
965 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
966 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
967 |
968 | extglob@^2.0.4:
969 | version "2.0.4"
970 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
971 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
972 | dependencies:
973 | array-unique "^0.3.2"
974 | define-property "^1.0.0"
975 | expand-brackets "^2.1.4"
976 | extend-shallow "^2.0.1"
977 | fragment-cache "^0.2.1"
978 | regex-not "^1.0.0"
979 | snapdragon "^0.8.1"
980 | to-regex "^3.0.1"
981 |
982 | extricate-loader@3.0.0:
983 | version "3.0.0"
984 | resolved "https://registry.yarnpkg.com/extricate-loader/-/extricate-loader-3.0.0.tgz#7a9998e885046d5d6991d62d4887ee113ca1e0bd"
985 | integrity sha512-Ts6BIh25xhFpeGaG0La345bYQdRXWv3ZvUwmJB6/QsXRywWrZmM1hGz8eZfQaBwy/HsmGOZevzGLesVtsrrmyg==
986 | dependencies:
987 | loader-utils "^1.1.0"
988 |
989 | fast-deep-equal@^3.1.1:
990 | version "3.1.3"
991 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
992 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
993 |
994 | fast-json-stable-stringify@^2.0.0:
995 | version "2.1.0"
996 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
997 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
998 |
999 | fastest-levenshtein@^1.0.12:
1000 | version "1.0.12"
1001 | resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2"
1002 | integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
1003 |
1004 | figgy-pudding@^3.5.1:
1005 | version "3.5.2"
1006 | resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
1007 | integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
1008 |
1009 | file-loader@6.2.0:
1010 | version "6.2.0"
1011 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
1012 | integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
1013 | dependencies:
1014 | loader-utils "^2.0.0"
1015 | schema-utils "^3.0.0"
1016 |
1017 | file-uri-to-path@1.0.0:
1018 | version "1.0.0"
1019 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
1020 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
1021 |
1022 | fill-range@^4.0.0:
1023 | version "4.0.0"
1024 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1025 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
1026 | dependencies:
1027 | extend-shallow "^2.0.1"
1028 | is-number "^3.0.0"
1029 | repeat-string "^1.6.1"
1030 | to-regex-range "^2.1.0"
1031 |
1032 | fill-range@^7.0.1:
1033 | version "7.0.1"
1034 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1035 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1036 | dependencies:
1037 | to-regex-range "^5.0.1"
1038 |
1039 | find-cache-dir@^2.1.0:
1040 | version "2.1.0"
1041 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
1042 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
1043 | dependencies:
1044 | commondir "^1.0.1"
1045 | make-dir "^2.0.0"
1046 | pkg-dir "^3.0.0"
1047 |
1048 | find-up@^3.0.0:
1049 | version "3.0.0"
1050 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1051 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
1052 | dependencies:
1053 | locate-path "^3.0.0"
1054 |
1055 | find-up@^4.0.0:
1056 | version "4.1.0"
1057 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1058 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1059 | dependencies:
1060 | locate-path "^5.0.0"
1061 | path-exists "^4.0.0"
1062 |
1063 | flush-write-stream@^1.0.0:
1064 | version "1.1.1"
1065 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
1066 | integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
1067 | dependencies:
1068 | inherits "^2.0.3"
1069 | readable-stream "^2.3.6"
1070 |
1071 | for-in@^1.0.2:
1072 | version "1.0.2"
1073 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1074 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
1075 |
1076 | form-data@^2.3.1:
1077 | version "2.5.1"
1078 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4"
1079 | integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==
1080 | dependencies:
1081 | asynckit "^0.4.0"
1082 | combined-stream "^1.0.6"
1083 | mime-types "^2.1.12"
1084 |
1085 | formidable@^1.2.0:
1086 | version "1.2.2"
1087 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.2.tgz#bf69aea2972982675f00865342b982986f6b8dd9"
1088 | integrity sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q==
1089 |
1090 | fragment-cache@^0.2.1:
1091 | version "0.2.1"
1092 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1093 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
1094 | dependencies:
1095 | map-cache "^0.2.2"
1096 |
1097 | from2@^2.1.0:
1098 | version "2.3.0"
1099 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
1100 | integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
1101 | dependencies:
1102 | inherits "^2.0.1"
1103 | readable-stream "^2.0.0"
1104 |
1105 | fs-write-stream-atomic@^1.0.8:
1106 | version "1.0.10"
1107 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
1108 | integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
1109 | dependencies:
1110 | graceful-fs "^4.1.2"
1111 | iferr "^0.1.5"
1112 | imurmurhash "^0.1.4"
1113 | readable-stream "1 || 2"
1114 |
1115 | fs.realpath@^1.0.0:
1116 | version "1.0.0"
1117 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1118 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1119 |
1120 | fsevents@^1.2.7:
1121 | version "1.2.13"
1122 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
1123 | integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
1124 | dependencies:
1125 | bindings "^1.5.0"
1126 | nan "^2.12.1"
1127 |
1128 | fsevents@~2.3.2:
1129 | version "2.3.2"
1130 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1131 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1132 |
1133 | function-bind@^1.1.1:
1134 | version "1.1.1"
1135 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1136 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1137 |
1138 | get-intrinsic@^1.0.2:
1139 | version "1.1.1"
1140 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1141 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1142 | dependencies:
1143 | function-bind "^1.1.1"
1144 | has "^1.0.3"
1145 | has-symbols "^1.0.1"
1146 |
1147 | get-stream@^6.0.0:
1148 | version "6.0.1"
1149 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
1150 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
1151 |
1152 | get-value@^2.0.3, get-value@^2.0.6:
1153 | version "2.0.6"
1154 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1155 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
1156 |
1157 | glob-parent@^3.1.0:
1158 | version "3.1.0"
1159 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1160 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
1161 | dependencies:
1162 | is-glob "^3.1.0"
1163 | path-dirname "^1.0.0"
1164 |
1165 | glob-parent@~5.1.2:
1166 | version "5.1.2"
1167 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1168 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1169 | dependencies:
1170 | is-glob "^4.0.1"
1171 |
1172 | glob@^7.1.3, glob@^7.1.4:
1173 | version "7.2.0"
1174 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
1175 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
1176 | dependencies:
1177 | fs.realpath "^1.0.0"
1178 | inflight "^1.0.4"
1179 | inherits "2"
1180 | minimatch "^3.0.4"
1181 | once "^1.3.0"
1182 | path-is-absolute "^1.0.0"
1183 |
1184 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2:
1185 | version "4.2.8"
1186 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
1187 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==
1188 |
1189 | has-symbols@^1.0.1:
1190 | version "1.0.2"
1191 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
1192 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
1193 |
1194 | has-value@^0.3.1:
1195 | version "0.3.1"
1196 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1197 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
1198 | dependencies:
1199 | get-value "^2.0.3"
1200 | has-values "^0.1.4"
1201 | isobject "^2.0.0"
1202 |
1203 | has-value@^1.0.0:
1204 | version "1.0.0"
1205 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1206 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
1207 | dependencies:
1208 | get-value "^2.0.6"
1209 | has-values "^1.0.0"
1210 | isobject "^3.0.0"
1211 |
1212 | has-values@^0.1.4:
1213 | version "0.1.4"
1214 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1215 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
1216 |
1217 | has-values@^1.0.0:
1218 | version "1.0.0"
1219 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1220 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
1221 | dependencies:
1222 | is-number "^3.0.0"
1223 | kind-of "^4.0.0"
1224 |
1225 | has@^1.0.3:
1226 | version "1.0.3"
1227 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1228 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1229 | dependencies:
1230 | function-bind "^1.1.1"
1231 |
1232 | hash-base@^3.0.0:
1233 | version "3.1.0"
1234 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
1235 | integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
1236 | dependencies:
1237 | inherits "^2.0.4"
1238 | readable-stream "^3.6.0"
1239 | safe-buffer "^5.2.0"
1240 |
1241 | hash.js@^1.0.0, hash.js@^1.0.3:
1242 | version "1.1.7"
1243 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
1244 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
1245 | dependencies:
1246 | inherits "^2.0.3"
1247 | minimalistic-assert "^1.0.1"
1248 |
1249 | hmac-drbg@^1.0.1:
1250 | version "1.0.1"
1251 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1252 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
1253 | dependencies:
1254 | hash.js "^1.0.3"
1255 | minimalistic-assert "^1.0.0"
1256 | minimalistic-crypto-utils "^1.0.1"
1257 |
1258 | https-browserify@^1.0.0:
1259 | version "1.0.0"
1260 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
1261 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
1262 |
1263 | human-signals@^2.1.0:
1264 | version "2.1.0"
1265 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
1266 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
1267 |
1268 | ieee754@^1.1.4:
1269 | version "1.2.1"
1270 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
1271 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
1272 |
1273 | iferr@^0.1.5:
1274 | version "0.1.5"
1275 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
1276 | integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
1277 |
1278 | import-local@^3.0.2:
1279 | version "3.0.2"
1280 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
1281 | integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
1282 | dependencies:
1283 | pkg-dir "^4.2.0"
1284 | resolve-cwd "^3.0.0"
1285 |
1286 | imurmurhash@^0.1.4:
1287 | version "0.1.4"
1288 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1289 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1290 |
1291 | inert-entry-webpack-plugin@4.0.2:
1292 | version "4.0.2"
1293 | resolved "https://registry.yarnpkg.com/inert-entry-webpack-plugin/-/inert-entry-webpack-plugin-4.0.2.tgz#b9baa3d8e8a19222ca3523afef2db3adef48939d"
1294 | integrity sha512-OrZGqX17UJ2c8G+6YGIlhb3CeAHhhXzt7JioUlqQJY9fgq6/A3eqh9ZqnUT7DMVDEyLZA4ETZlnc0tniSluEqw==
1295 | dependencies:
1296 | webpack-sources "^1.1.0"
1297 |
1298 | infer-owner@^1.0.3:
1299 | version "1.0.4"
1300 | resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
1301 | integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
1302 |
1303 | inflight@^1.0.4:
1304 | version "1.0.6"
1305 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1306 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1307 | dependencies:
1308 | once "^1.3.0"
1309 | wrappy "1"
1310 |
1311 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
1312 | version "2.0.4"
1313 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1314 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1315 |
1316 | inherits@2.0.1:
1317 | version "2.0.1"
1318 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1319 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
1320 |
1321 | inherits@2.0.3:
1322 | version "2.0.3"
1323 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1324 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
1325 |
1326 | interpolate-loader@2.0.1:
1327 | version "2.0.1"
1328 | resolved "https://registry.yarnpkg.com/interpolate-loader/-/interpolate-loader-2.0.1.tgz#bdf0092a3d4732842ac29c20bd03f1fb34891705"
1329 | integrity sha512-X5/cKHUnAS5gV/oK9Z6pEjg2xVH5EGgnC5QmaOPwK/o7qMOMyyafwFL1mtH3yAK+COCjyaH56MOs9G8uXG12yA==
1330 | dependencies:
1331 | escape-string-regexp "^2.0.0"
1332 | loader-utils "^1.1.0"
1333 |
1334 | interpret@^2.2.0:
1335 | version "2.2.0"
1336 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
1337 | integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
1338 |
1339 | is-accessor-descriptor@^0.1.6:
1340 | version "0.1.6"
1341 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1342 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
1343 | dependencies:
1344 | kind-of "^3.0.2"
1345 |
1346 | is-accessor-descriptor@^1.0.0:
1347 | version "1.0.0"
1348 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1349 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
1350 | dependencies:
1351 | kind-of "^6.0.0"
1352 |
1353 | is-binary-path@^1.0.0:
1354 | version "1.0.1"
1355 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1356 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
1357 | dependencies:
1358 | binary-extensions "^1.0.0"
1359 |
1360 | is-binary-path@~2.1.0:
1361 | version "2.1.0"
1362 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1363 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1364 | dependencies:
1365 | binary-extensions "^2.0.0"
1366 |
1367 | is-buffer@^1.1.5:
1368 | version "1.1.6"
1369 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1370 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
1371 |
1372 | is-core-module@^2.2.0:
1373 | version "2.6.0"
1374 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19"
1375 | integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==
1376 | dependencies:
1377 | has "^1.0.3"
1378 |
1379 | is-data-descriptor@^0.1.4:
1380 | version "0.1.4"
1381 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1382 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
1383 | dependencies:
1384 | kind-of "^3.0.2"
1385 |
1386 | is-data-descriptor@^1.0.0:
1387 | version "1.0.0"
1388 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1389 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
1390 | dependencies:
1391 | kind-of "^6.0.0"
1392 |
1393 | is-descriptor@^0.1.0:
1394 | version "0.1.6"
1395 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1396 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
1397 | dependencies:
1398 | is-accessor-descriptor "^0.1.6"
1399 | is-data-descriptor "^0.1.4"
1400 | kind-of "^5.0.0"
1401 |
1402 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1403 | version "1.0.2"
1404 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1405 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
1406 | dependencies:
1407 | is-accessor-descriptor "^1.0.0"
1408 | is-data-descriptor "^1.0.0"
1409 | kind-of "^6.0.2"
1410 |
1411 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1412 | version "0.1.1"
1413 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1414 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
1415 |
1416 | is-extendable@^1.0.1:
1417 | version "1.0.1"
1418 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1419 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
1420 | dependencies:
1421 | is-plain-object "^2.0.4"
1422 |
1423 | is-extglob@^2.1.0, is-extglob@^2.1.1:
1424 | version "2.1.1"
1425 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1426 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1427 |
1428 | is-glob@^3.1.0:
1429 | version "3.1.0"
1430 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1431 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
1432 | dependencies:
1433 | is-extglob "^2.1.0"
1434 |
1435 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
1436 | version "4.0.1"
1437 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1438 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
1439 | dependencies:
1440 | is-extglob "^2.1.1"
1441 |
1442 | is-number@^3.0.0:
1443 | version "3.0.0"
1444 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1445 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
1446 | dependencies:
1447 | kind-of "^3.0.2"
1448 |
1449 | is-number@^7.0.0:
1450 | version "7.0.0"
1451 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1452 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1453 |
1454 | is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1455 | version "2.0.4"
1456 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1457 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
1458 | dependencies:
1459 | isobject "^3.0.1"
1460 |
1461 | is-stream@^2.0.0:
1462 | version "2.0.1"
1463 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
1464 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
1465 |
1466 | is-windows@^1.0.2:
1467 | version "1.0.2"
1468 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1469 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
1470 |
1471 | is-wsl@^1.1.0:
1472 | version "1.1.0"
1473 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
1474 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
1475 |
1476 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1477 | version "1.0.0"
1478 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1479 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
1480 |
1481 | isexe@^2.0.0:
1482 | version "2.0.0"
1483 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1484 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1485 |
1486 | isobject@^2.0.0:
1487 | version "2.1.0"
1488 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1489 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
1490 | dependencies:
1491 | isarray "1.0.0"
1492 |
1493 | isobject@^3.0.0, isobject@^3.0.1:
1494 | version "3.0.1"
1495 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1496 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
1497 |
1498 | json-parse-better-errors@^1.0.2:
1499 | version "1.0.2"
1500 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
1501 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
1502 |
1503 | json-schema-traverse@^0.4.1:
1504 | version "0.4.1"
1505 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1506 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1507 |
1508 | json5@^1.0.1:
1509 | version "1.0.1"
1510 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1511 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1512 | dependencies:
1513 | minimist "^1.2.0"
1514 |
1515 | json5@^2.1.2:
1516 | version "2.2.0"
1517 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
1518 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
1519 | dependencies:
1520 | minimist "^1.2.5"
1521 |
1522 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1523 | version "3.2.2"
1524 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1525 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
1526 | dependencies:
1527 | is-buffer "^1.1.5"
1528 |
1529 | kind-of@^4.0.0:
1530 | version "4.0.0"
1531 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1532 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
1533 | dependencies:
1534 | is-buffer "^1.1.5"
1535 |
1536 | kind-of@^5.0.0:
1537 | version "5.1.0"
1538 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1539 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
1540 |
1541 | kind-of@^6.0.0, kind-of@^6.0.2:
1542 | version "6.0.3"
1543 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
1544 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
1545 |
1546 | loader-runner@^2.4.0:
1547 | version "2.4.0"
1548 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
1549 | integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
1550 |
1551 | loader-utils@^1.1.0, loader-utils@^1.2.3:
1552 | version "1.4.0"
1553 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
1554 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
1555 | dependencies:
1556 | big.js "^5.2.2"
1557 | emojis-list "^3.0.0"
1558 | json5 "^1.0.1"
1559 |
1560 | loader-utils@^2.0.0:
1561 | version "2.0.0"
1562 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
1563 | integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
1564 | dependencies:
1565 | big.js "^5.2.2"
1566 | emojis-list "^3.0.0"
1567 | json5 "^2.1.2"
1568 |
1569 | locate-path@^3.0.0:
1570 | version "3.0.0"
1571 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
1572 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
1573 | dependencies:
1574 | p-locate "^3.0.0"
1575 | path-exists "^3.0.0"
1576 |
1577 | locate-path@^5.0.0:
1578 | version "5.0.0"
1579 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
1580 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
1581 | dependencies:
1582 | p-locate "^4.1.0"
1583 |
1584 | lru-cache@^5.1.1:
1585 | version "5.1.1"
1586 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
1587 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
1588 | dependencies:
1589 | yallist "^3.0.2"
1590 |
1591 | make-dir@^2.0.0:
1592 | version "2.1.0"
1593 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
1594 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
1595 | dependencies:
1596 | pify "^4.0.1"
1597 | semver "^5.6.0"
1598 |
1599 | map-cache@^0.2.2:
1600 | version "0.2.2"
1601 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1602 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
1603 |
1604 | map-visit@^1.0.0:
1605 | version "1.0.0"
1606 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1607 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
1608 | dependencies:
1609 | object-visit "^1.0.0"
1610 |
1611 | md5.js@^1.3.4:
1612 | version "1.3.5"
1613 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
1614 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
1615 | dependencies:
1616 | hash-base "^3.0.0"
1617 | inherits "^2.0.1"
1618 | safe-buffer "^5.1.2"
1619 |
1620 | memory-fs@^0.4.1:
1621 | version "0.4.1"
1622 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1623 | integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
1624 | dependencies:
1625 | errno "^0.1.3"
1626 | readable-stream "^2.0.1"
1627 |
1628 | memory-fs@^0.5.0:
1629 | version "0.5.0"
1630 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
1631 | integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
1632 | dependencies:
1633 | errno "^0.1.3"
1634 | readable-stream "^2.0.1"
1635 |
1636 | merge-stream@^2.0.0:
1637 | version "2.0.0"
1638 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
1639 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
1640 |
1641 | methods@^1.1.1:
1642 | version "1.1.2"
1643 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
1644 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
1645 |
1646 | micromatch@^3.1.10, micromatch@^3.1.4:
1647 | version "3.1.10"
1648 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
1649 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
1650 | dependencies:
1651 | arr-diff "^4.0.0"
1652 | array-unique "^0.3.2"
1653 | braces "^2.3.1"
1654 | define-property "^2.0.2"
1655 | extend-shallow "^3.0.2"
1656 | extglob "^2.0.4"
1657 | fragment-cache "^0.2.1"
1658 | kind-of "^6.0.2"
1659 | nanomatch "^1.2.9"
1660 | object.pick "^1.3.0"
1661 | regex-not "^1.0.0"
1662 | snapdragon "^0.8.1"
1663 | to-regex "^3.0.2"
1664 |
1665 | miller-rabin@^4.0.0:
1666 | version "4.0.1"
1667 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
1668 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
1669 | dependencies:
1670 | bn.js "^4.0.0"
1671 | brorand "^1.0.1"
1672 |
1673 | mime-db@1.49.0:
1674 | version "1.49.0"
1675 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed"
1676 | integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==
1677 |
1678 | mime-types@^2.1.12:
1679 | version "2.1.32"
1680 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5"
1681 | integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==
1682 | dependencies:
1683 | mime-db "1.49.0"
1684 |
1685 | mime@^1.4.1:
1686 | version "1.6.0"
1687 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
1688 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
1689 |
1690 | mimic-fn@^2.1.0:
1691 | version "2.1.0"
1692 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
1693 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
1694 |
1695 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
1696 | version "1.0.1"
1697 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
1698 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
1699 |
1700 | minimalistic-crypto-utils@^1.0.1:
1701 | version "1.0.1"
1702 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1703 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
1704 |
1705 | minimatch@^3.0.4:
1706 | version "3.0.4"
1707 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1708 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
1709 | dependencies:
1710 | brace-expansion "^1.1.7"
1711 |
1712 | minimist@^1.2.0, minimist@^1.2.5:
1713 | version "1.2.5"
1714 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1715 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1716 |
1717 | mississippi@^3.0.0:
1718 | version "3.0.0"
1719 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
1720 | integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
1721 | dependencies:
1722 | concat-stream "^1.5.0"
1723 | duplexify "^3.4.2"
1724 | end-of-stream "^1.1.0"
1725 | flush-write-stream "^1.0.0"
1726 | from2 "^2.1.0"
1727 | parallel-transform "^1.1.0"
1728 | pump "^3.0.0"
1729 | pumpify "^1.3.3"
1730 | stream-each "^1.1.0"
1731 | through2 "^2.0.0"
1732 |
1733 | mixin-deep@^1.2.0:
1734 | version "1.3.2"
1735 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
1736 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
1737 | dependencies:
1738 | for-in "^1.0.2"
1739 | is-extendable "^1.0.1"
1740 |
1741 | mkdirp@^0.5.1, mkdirp@^0.5.3:
1742 | version "0.5.5"
1743 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
1744 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
1745 | dependencies:
1746 | minimist "^1.2.5"
1747 |
1748 | move-concurrently@^1.0.1:
1749 | version "1.0.1"
1750 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
1751 | integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
1752 | dependencies:
1753 | aproba "^1.1.1"
1754 | copy-concurrently "^1.0.0"
1755 | fs-write-stream-atomic "^1.0.8"
1756 | mkdirp "^0.5.1"
1757 | rimraf "^2.5.4"
1758 | run-queue "^1.0.3"
1759 |
1760 | ms@2.0.0:
1761 | version "2.0.0"
1762 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1763 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1764 |
1765 | ms@^2.1.1:
1766 | version "2.1.3"
1767 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1768 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1769 |
1770 | nan@^2.12.1:
1771 | version "2.15.0"
1772 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee"
1773 | integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==
1774 |
1775 | nanomatch@^1.2.9:
1776 | version "1.2.13"
1777 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
1778 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
1779 | dependencies:
1780 | arr-diff "^4.0.0"
1781 | array-unique "^0.3.2"
1782 | define-property "^2.0.2"
1783 | extend-shallow "^3.0.2"
1784 | fragment-cache "^0.2.1"
1785 | is-windows "^1.0.2"
1786 | kind-of "^6.0.2"
1787 | object.pick "^1.3.0"
1788 | regex-not "^1.0.0"
1789 | snapdragon "^0.8.1"
1790 | to-regex "^3.0.1"
1791 |
1792 | neo-async@^2.5.0, neo-async@^2.6.1:
1793 | version "2.6.2"
1794 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
1795 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
1796 |
1797 | node-libs-browser@^2.2.1:
1798 | version "2.2.1"
1799 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
1800 | integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
1801 | dependencies:
1802 | assert "^1.1.1"
1803 | browserify-zlib "^0.2.0"
1804 | buffer "^4.3.0"
1805 | console-browserify "^1.1.0"
1806 | constants-browserify "^1.0.0"
1807 | crypto-browserify "^3.11.0"
1808 | domain-browser "^1.1.1"
1809 | events "^3.0.0"
1810 | https-browserify "^1.0.0"
1811 | os-browserify "^0.3.0"
1812 | path-browserify "0.0.1"
1813 | process "^0.11.10"
1814 | punycode "^1.2.4"
1815 | querystring-es3 "^0.2.0"
1816 | readable-stream "^2.3.3"
1817 | stream-browserify "^2.0.1"
1818 | stream-http "^2.7.2"
1819 | string_decoder "^1.0.0"
1820 | timers-browserify "^2.0.4"
1821 | tty-browserify "0.0.0"
1822 | url "^0.11.0"
1823 | util "^0.11.0"
1824 | vm-browserify "^1.0.1"
1825 |
1826 | normalize-path@^2.1.1:
1827 | version "2.1.1"
1828 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1829 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
1830 | dependencies:
1831 | remove-trailing-separator "^1.0.1"
1832 |
1833 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1834 | version "3.0.0"
1835 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1836 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1837 |
1838 | npm-run-path@^4.0.1:
1839 | version "4.0.1"
1840 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
1841 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
1842 | dependencies:
1843 | path-key "^3.0.0"
1844 |
1845 | object-assign@^4.1.1:
1846 | version "4.1.1"
1847 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1848 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1849 |
1850 | object-copy@^0.1.0:
1851 | version "0.1.0"
1852 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
1853 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
1854 | dependencies:
1855 | copy-descriptor "^0.1.0"
1856 | define-property "^0.2.5"
1857 | kind-of "^3.0.3"
1858 |
1859 | object-inspect@^1.9.0:
1860 | version "1.11.0"
1861 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1"
1862 | integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==
1863 |
1864 | object-visit@^1.0.0:
1865 | version "1.0.1"
1866 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
1867 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
1868 | dependencies:
1869 | isobject "^3.0.0"
1870 |
1871 | object.pick@^1.3.0:
1872 | version "1.3.0"
1873 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
1874 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
1875 | dependencies:
1876 | isobject "^3.0.1"
1877 |
1878 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
1879 | version "1.4.0"
1880 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1881 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1882 | dependencies:
1883 | wrappy "1"
1884 |
1885 | onetime@^5.1.2:
1886 | version "5.1.2"
1887 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
1888 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
1889 | dependencies:
1890 | mimic-fn "^2.1.0"
1891 |
1892 | os-browserify@^0.3.0:
1893 | version "0.3.0"
1894 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
1895 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
1896 |
1897 | p-limit@^2.0.0, p-limit@^2.2.0:
1898 | version "2.3.0"
1899 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
1900 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
1901 | dependencies:
1902 | p-try "^2.0.0"
1903 |
1904 | p-locate@^3.0.0:
1905 | version "3.0.0"
1906 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
1907 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
1908 | dependencies:
1909 | p-limit "^2.0.0"
1910 |
1911 | p-locate@^4.1.0:
1912 | version "4.1.0"
1913 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
1914 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
1915 | dependencies:
1916 | p-limit "^2.2.0"
1917 |
1918 | p-try@^2.0.0:
1919 | version "2.2.0"
1920 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
1921 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
1922 |
1923 | pako@~1.0.5:
1924 | version "1.0.11"
1925 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
1926 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
1927 |
1928 | parallel-transform@^1.1.0:
1929 | version "1.2.0"
1930 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
1931 | integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
1932 | dependencies:
1933 | cyclist "^1.0.1"
1934 | inherits "^2.0.3"
1935 | readable-stream "^2.1.5"
1936 |
1937 | parse-asn1@^5.0.0, parse-asn1@^5.1.5:
1938 | version "5.1.6"
1939 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
1940 | integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
1941 | dependencies:
1942 | asn1.js "^5.2.0"
1943 | browserify-aes "^1.0.0"
1944 | evp_bytestokey "^1.0.0"
1945 | pbkdf2 "^3.0.3"
1946 | safe-buffer "^5.1.1"
1947 |
1948 | pascalcase@^0.1.1:
1949 | version "0.1.1"
1950 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
1951 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
1952 |
1953 | path-browserify@0.0.1:
1954 | version "0.0.1"
1955 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
1956 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
1957 |
1958 | path-dirname@^1.0.0:
1959 | version "1.0.2"
1960 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
1961 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
1962 |
1963 | path-exists@^3.0.0:
1964 | version "3.0.0"
1965 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1966 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1967 |
1968 | path-exists@^4.0.0:
1969 | version "4.0.0"
1970 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1971 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1972 |
1973 | path-is-absolute@^1.0.0:
1974 | version "1.0.1"
1975 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1976 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1977 |
1978 | path-key@^3.0.0, path-key@^3.1.0:
1979 | version "3.1.1"
1980 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1981 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1982 |
1983 | path-parse@^1.0.6:
1984 | version "1.0.7"
1985 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1986 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1987 |
1988 | pbkdf2@^3.0.3:
1989 | version "3.1.2"
1990 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
1991 | integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
1992 | dependencies:
1993 | create-hash "^1.1.2"
1994 | create-hmac "^1.1.4"
1995 | ripemd160 "^2.0.1"
1996 | safe-buffer "^5.0.1"
1997 | sha.js "^2.4.8"
1998 |
1999 | picomatch@^2.0.4, picomatch@^2.2.1:
2000 | version "2.3.0"
2001 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
2002 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
2003 |
2004 | pify@^4.0.1:
2005 | version "4.0.1"
2006 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
2007 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
2008 |
2009 | pkg-dir@^3.0.0:
2010 | version "3.0.0"
2011 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
2012 | integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
2013 | dependencies:
2014 | find-up "^3.0.0"
2015 |
2016 | pkg-dir@^4.2.0:
2017 | version "4.2.0"
2018 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
2019 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2020 | dependencies:
2021 | find-up "^4.0.0"
2022 |
2023 | posix-character-classes@^0.1.0:
2024 | version "0.1.1"
2025 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2026 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
2027 |
2028 | process-nextick-args@~2.0.0:
2029 | version "2.0.1"
2030 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
2031 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
2032 |
2033 | process@^0.11.10:
2034 | version "0.11.10"
2035 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2036 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
2037 |
2038 | promise-inflight@^1.0.1:
2039 | version "1.0.1"
2040 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
2041 | integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
2042 |
2043 | prop-loader@1.0.0:
2044 | version "1.0.0"
2045 | resolved "https://registry.yarnpkg.com/prop-loader/-/prop-loader-1.0.0.tgz#033b210a96ab7a0bc295cb1d35753b71e79f4008"
2046 | integrity sha1-AzshCparegvClcsdNXU7ceefQAg=
2047 |
2048 | prr@~1.0.1:
2049 | version "1.0.1"
2050 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
2051 | integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
2052 |
2053 | public-encrypt@^4.0.0:
2054 | version "4.0.3"
2055 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
2056 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
2057 | dependencies:
2058 | bn.js "^4.1.0"
2059 | browserify-rsa "^4.0.0"
2060 | create-hash "^1.1.0"
2061 | parse-asn1 "^5.0.0"
2062 | randombytes "^2.0.1"
2063 | safe-buffer "^5.1.2"
2064 |
2065 | pump@^2.0.0:
2066 | version "2.0.1"
2067 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
2068 | integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
2069 | dependencies:
2070 | end-of-stream "^1.1.0"
2071 | once "^1.3.1"
2072 |
2073 | pump@^3.0.0:
2074 | version "3.0.0"
2075 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
2076 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
2077 | dependencies:
2078 | end-of-stream "^1.1.0"
2079 | once "^1.3.1"
2080 |
2081 | pumpify@^1.3.3:
2082 | version "1.5.1"
2083 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
2084 | integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
2085 | dependencies:
2086 | duplexify "^3.6.0"
2087 | inherits "^2.0.3"
2088 | pump "^2.0.0"
2089 |
2090 | punycode@1.3.2:
2091 | version "1.3.2"
2092 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2093 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
2094 |
2095 | punycode@^1.2.4:
2096 | version "1.4.1"
2097 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2098 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
2099 |
2100 | punycode@^2.1.0:
2101 | version "2.1.1"
2102 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2103 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2104 |
2105 | qs@^6.5.1:
2106 | version "6.10.1"
2107 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a"
2108 | integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==
2109 | dependencies:
2110 | side-channel "^1.0.4"
2111 |
2112 | querystring-es3@^0.2.0:
2113 | version "0.2.1"
2114 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2115 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
2116 |
2117 | querystring@0.2.0:
2118 | version "0.2.0"
2119 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2120 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
2121 |
2122 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
2123 | version "2.1.0"
2124 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
2125 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
2126 | dependencies:
2127 | safe-buffer "^5.1.0"
2128 |
2129 | randomfill@^1.0.3:
2130 | version "1.0.4"
2131 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
2132 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
2133 | dependencies:
2134 | randombytes "^2.0.5"
2135 | safe-buffer "^5.1.0"
2136 |
2137 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6:
2138 | version "2.3.7"
2139 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
2140 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
2141 | dependencies:
2142 | core-util-is "~1.0.0"
2143 | inherits "~2.0.3"
2144 | isarray "~1.0.0"
2145 | process-nextick-args "~2.0.0"
2146 | safe-buffer "~5.1.1"
2147 | string_decoder "~1.1.1"
2148 | util-deprecate "~1.0.1"
2149 |
2150 | readable-stream@^3.6.0:
2151 | version "3.6.0"
2152 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
2153 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
2154 | dependencies:
2155 | inherits "^2.0.3"
2156 | string_decoder "^1.1.1"
2157 | util-deprecate "^1.0.1"
2158 |
2159 | readdirp@^2.2.1:
2160 | version "2.2.1"
2161 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
2162 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
2163 | dependencies:
2164 | graceful-fs "^4.1.11"
2165 | micromatch "^3.1.10"
2166 | readable-stream "^2.0.2"
2167 |
2168 | readdirp@~3.6.0:
2169 | version "3.6.0"
2170 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
2171 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
2172 | dependencies:
2173 | picomatch "^2.2.1"
2174 |
2175 | rechoir@^0.7.0:
2176 | version "0.7.1"
2177 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686"
2178 | integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==
2179 | dependencies:
2180 | resolve "^1.9.0"
2181 |
2182 | regex-not@^1.0.0, regex-not@^1.0.2:
2183 | version "1.0.2"
2184 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2185 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
2186 | dependencies:
2187 | extend-shallow "^3.0.2"
2188 | safe-regex "^1.1.0"
2189 |
2190 | remove-trailing-separator@^1.0.1:
2191 | version "1.1.0"
2192 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2193 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
2194 |
2195 | repeat-element@^1.1.2:
2196 | version "1.1.4"
2197 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
2198 | integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
2199 |
2200 | repeat-string@^1.6.1:
2201 | version "1.6.1"
2202 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2203 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
2204 |
2205 | resolve-cwd@^3.0.0:
2206 | version "3.0.0"
2207 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
2208 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
2209 | dependencies:
2210 | resolve-from "^5.0.0"
2211 |
2212 | resolve-from@^5.0.0:
2213 | version "5.0.0"
2214 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
2215 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2216 |
2217 | resolve-url@^0.2.1:
2218 | version "0.2.1"
2219 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2220 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
2221 |
2222 | resolve@^1.9.0:
2223 | version "1.20.0"
2224 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
2225 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
2226 | dependencies:
2227 | is-core-module "^2.2.0"
2228 | path-parse "^1.0.6"
2229 |
2230 | ret@~0.1.10:
2231 | version "0.1.15"
2232 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
2233 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
2234 |
2235 | rimraf@3.0.2:
2236 | version "3.0.2"
2237 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2238 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2239 | dependencies:
2240 | glob "^7.1.3"
2241 |
2242 | rimraf@^2.5.4, rimraf@^2.6.3:
2243 | version "2.7.1"
2244 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
2245 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
2246 | dependencies:
2247 | glob "^7.1.3"
2248 |
2249 | ripemd160@^2.0.0, ripemd160@^2.0.1:
2250 | version "2.0.2"
2251 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
2252 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
2253 | dependencies:
2254 | hash-base "^3.0.0"
2255 | inherits "^2.0.1"
2256 |
2257 | rollup@2.57.0:
2258 | version "2.57.0"
2259 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.57.0.tgz#c1694475eb22e1022477c0f4635fd0ac80713173"
2260 | integrity sha512-bKQIh1rWKofRee6mv8SrF2HdP6pea5QkwBZSMImJysFj39gQuiV8MEPBjXOCpzk3wSYp63M2v2wkWBmFC8O/rg==
2261 | optionalDependencies:
2262 | fsevents "~2.3.2"
2263 |
2264 | run-queue@^1.0.0, run-queue@^1.0.3:
2265 | version "1.0.3"
2266 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
2267 | integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
2268 | dependencies:
2269 | aproba "^1.1.1"
2270 |
2271 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
2272 | version "5.2.1"
2273 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
2274 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
2275 |
2276 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2277 | version "5.1.2"
2278 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2279 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2280 |
2281 | safe-regex@^1.1.0:
2282 | version "1.1.0"
2283 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
2284 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
2285 | dependencies:
2286 | ret "~0.1.10"
2287 |
2288 | safer-buffer@^2.1.0:
2289 | version "2.1.2"
2290 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2291 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
2292 |
2293 | schema-utils@^1.0.0:
2294 | version "1.0.0"
2295 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
2296 | integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
2297 | dependencies:
2298 | ajv "^6.1.0"
2299 | ajv-errors "^1.0.0"
2300 | ajv-keywords "^3.1.0"
2301 |
2302 | schema-utils@^3.0.0:
2303 | version "3.1.1"
2304 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
2305 | integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
2306 | dependencies:
2307 | "@types/json-schema" "^7.0.8"
2308 | ajv "^6.12.5"
2309 | ajv-keywords "^3.5.2"
2310 |
2311 | semver@^5.6.0:
2312 | version "5.7.1"
2313 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2314 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2315 |
2316 | serialize-javascript@^4.0.0:
2317 | version "4.0.0"
2318 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
2319 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
2320 | dependencies:
2321 | randombytes "^2.1.0"
2322 |
2323 | set-value@^2.0.0, set-value@^2.0.1:
2324 | version "2.0.1"
2325 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
2326 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
2327 | dependencies:
2328 | extend-shallow "^2.0.1"
2329 | is-extendable "^0.1.1"
2330 | is-plain-object "^2.0.3"
2331 | split-string "^3.0.1"
2332 |
2333 | setimmediate@^1.0.4:
2334 | version "1.0.5"
2335 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2336 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
2337 |
2338 | sha.js@^2.4.0, sha.js@^2.4.8:
2339 | version "2.4.11"
2340 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
2341 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
2342 | dependencies:
2343 | inherits "^2.0.1"
2344 | safe-buffer "^5.0.1"
2345 |
2346 | shallow-clone@^3.0.0:
2347 | version "3.0.1"
2348 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
2349 | integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
2350 | dependencies:
2351 | kind-of "^6.0.2"
2352 |
2353 | shebang-command@^2.0.0:
2354 | version "2.0.0"
2355 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2356 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2357 | dependencies:
2358 | shebang-regex "^3.0.0"
2359 |
2360 | shebang-regex@^3.0.0:
2361 | version "3.0.0"
2362 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2363 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2364 |
2365 | side-channel@^1.0.4:
2366 | version "1.0.4"
2367 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
2368 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
2369 | dependencies:
2370 | call-bind "^1.0.0"
2371 | get-intrinsic "^1.0.2"
2372 | object-inspect "^1.9.0"
2373 |
2374 | signal-exit@^3.0.3:
2375 | version "3.0.4"
2376 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.4.tgz#366a4684d175b9cab2081e3681fda3747b6c51d7"
2377 | integrity sha512-rqYhcAnZ6d/vTPGghdrw7iumdcbXpsk1b8IG/rz+VWV51DM0p7XCtMoJ3qhPLIbp3tvyt3pKRbaaEMZYpHto8Q==
2378 |
2379 | snapdragon-node@^2.0.1:
2380 | version "2.1.1"
2381 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
2382 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
2383 | dependencies:
2384 | define-property "^1.0.0"
2385 | isobject "^3.0.0"
2386 | snapdragon-util "^3.0.1"
2387 |
2388 | snapdragon-util@^3.0.1:
2389 | version "3.0.1"
2390 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
2391 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
2392 | dependencies:
2393 | kind-of "^3.2.0"
2394 |
2395 | snapdragon@^0.8.1:
2396 | version "0.8.2"
2397 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
2398 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
2399 | dependencies:
2400 | base "^0.11.1"
2401 | debug "^2.2.0"
2402 | define-property "^0.2.5"
2403 | extend-shallow "^2.0.1"
2404 | map-cache "^0.2.2"
2405 | source-map "^0.5.6"
2406 | source-map-resolve "^0.5.0"
2407 | use "^3.1.0"
2408 |
2409 | source-list-map@^2.0.0:
2410 | version "2.0.1"
2411 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
2412 | integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
2413 |
2414 | source-map-resolve@^0.5.0:
2415 | version "0.5.3"
2416 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
2417 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
2418 | dependencies:
2419 | atob "^2.1.2"
2420 | decode-uri-component "^0.2.0"
2421 | resolve-url "^0.2.1"
2422 | source-map-url "^0.4.0"
2423 | urix "^0.1.0"
2424 |
2425 | source-map-support@~0.5.12:
2426 | version "0.5.20"
2427 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
2428 | integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==
2429 | dependencies:
2430 | buffer-from "^1.0.0"
2431 | source-map "^0.6.0"
2432 |
2433 | source-map-url@^0.4.0:
2434 | version "0.4.1"
2435 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
2436 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
2437 |
2438 | source-map@^0.5.6:
2439 | version "0.5.7"
2440 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2441 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2442 |
2443 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
2444 | version "0.6.1"
2445 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2446 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
2447 |
2448 | split-string@^3.0.1, split-string@^3.0.2:
2449 | version "3.1.0"
2450 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
2451 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
2452 | dependencies:
2453 | extend-shallow "^3.0.0"
2454 |
2455 | ssri@^6.0.1:
2456 | version "6.0.2"
2457 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
2458 | integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
2459 | dependencies:
2460 | figgy-pudding "^3.5.1"
2461 |
2462 | static-extend@^0.1.1:
2463 | version "0.1.2"
2464 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
2465 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
2466 | dependencies:
2467 | define-property "^0.2.5"
2468 | object-copy "^0.1.0"
2469 |
2470 | stream-browserify@^2.0.1:
2471 | version "2.0.2"
2472 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
2473 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
2474 | dependencies:
2475 | inherits "~2.0.1"
2476 | readable-stream "^2.0.2"
2477 |
2478 | stream-each@^1.1.0:
2479 | version "1.2.3"
2480 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
2481 | integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
2482 | dependencies:
2483 | end-of-stream "^1.1.0"
2484 | stream-shift "^1.0.0"
2485 |
2486 | stream-http@^2.7.2:
2487 | version "2.8.3"
2488 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
2489 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
2490 | dependencies:
2491 | builtin-status-codes "^3.0.0"
2492 | inherits "^2.0.1"
2493 | readable-stream "^2.3.6"
2494 | to-arraybuffer "^1.0.0"
2495 | xtend "^4.0.0"
2496 |
2497 | stream-shift@^1.0.0:
2498 | version "1.0.1"
2499 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
2500 | integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
2501 |
2502 | string_decoder@^1.0.0, string_decoder@^1.1.1:
2503 | version "1.3.0"
2504 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
2505 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
2506 | dependencies:
2507 | safe-buffer "~5.2.0"
2508 |
2509 | string_decoder@~1.1.1:
2510 | version "1.1.1"
2511 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
2512 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
2513 | dependencies:
2514 | safe-buffer "~5.1.0"
2515 |
2516 | strip-final-newline@^2.0.0:
2517 | version "2.0.0"
2518 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
2519 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
2520 |
2521 | superagent@^3.4.1:
2522 | version "3.8.3"
2523 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128"
2524 | integrity sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==
2525 | dependencies:
2526 | component-emitter "^1.2.0"
2527 | cookiejar "^2.1.0"
2528 | debug "^3.1.0"
2529 | extend "^3.0.0"
2530 | form-data "^2.3.1"
2531 | formidable "^1.2.0"
2532 | methods "^1.1.1"
2533 | mime "^1.4.1"
2534 | qs "^6.5.1"
2535 | readable-stream "^2.3.5"
2536 |
2537 | tapable@^1.0.0, tapable@^1.1.3:
2538 | version "1.1.3"
2539 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
2540 | integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
2541 |
2542 | terser-webpack-plugin@^1.4.3:
2543 | version "1.4.5"
2544 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
2545 | integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
2546 | dependencies:
2547 | cacache "^12.0.2"
2548 | find-cache-dir "^2.1.0"
2549 | is-wsl "^1.1.0"
2550 | schema-utils "^1.0.0"
2551 | serialize-javascript "^4.0.0"
2552 | source-map "^0.6.1"
2553 | terser "^4.1.2"
2554 | webpack-sources "^1.4.0"
2555 | worker-farm "^1.7.0"
2556 |
2557 | terser@^4.1.2:
2558 | version "4.8.0"
2559 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
2560 | integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
2561 | dependencies:
2562 | commander "^2.20.0"
2563 | source-map "~0.6.1"
2564 | source-map-support "~0.5.12"
2565 |
2566 | through2@^2.0.0:
2567 | version "2.0.5"
2568 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
2569 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
2570 | dependencies:
2571 | readable-stream "~2.3.6"
2572 | xtend "~4.0.1"
2573 |
2574 | timers-browserify@^2.0.4:
2575 | version "2.0.12"
2576 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
2577 | integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
2578 | dependencies:
2579 | setimmediate "^1.0.4"
2580 |
2581 | to-arraybuffer@^1.0.0:
2582 | version "1.0.1"
2583 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2584 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
2585 |
2586 | to-object-path@^0.3.0:
2587 | version "0.3.0"
2588 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
2589 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
2590 | dependencies:
2591 | kind-of "^3.0.2"
2592 |
2593 | to-regex-range@^2.1.0:
2594 | version "2.1.1"
2595 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
2596 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
2597 | dependencies:
2598 | is-number "^3.0.0"
2599 | repeat-string "^1.6.1"
2600 |
2601 | to-regex-range@^5.0.1:
2602 | version "5.0.1"
2603 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2604 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2605 | dependencies:
2606 | is-number "^7.0.0"
2607 |
2608 | to-regex@^3.0.1, to-regex@^3.0.2:
2609 | version "3.0.2"
2610 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
2611 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
2612 | dependencies:
2613 | define-property "^2.0.2"
2614 | extend-shallow "^3.0.2"
2615 | regex-not "^1.0.2"
2616 | safe-regex "^1.1.0"
2617 |
2618 | tty-browserify@0.0.0:
2619 | version "0.0.0"
2620 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2621 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
2622 |
2623 | typedarray@^0.0.6:
2624 | version "0.0.6"
2625 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2626 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
2627 |
2628 | union-value@^1.0.0:
2629 | version "1.0.1"
2630 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
2631 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
2632 | dependencies:
2633 | arr-union "^3.1.0"
2634 | get-value "^2.0.6"
2635 | is-extendable "^0.1.1"
2636 | set-value "^2.0.1"
2637 |
2638 | unique-filename@^1.1.1:
2639 | version "1.1.1"
2640 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
2641 | integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
2642 | dependencies:
2643 | unique-slug "^2.0.0"
2644 |
2645 | unique-slug@^2.0.0:
2646 | version "2.0.2"
2647 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
2648 | integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
2649 | dependencies:
2650 | imurmurhash "^0.1.4"
2651 |
2652 | unset-value@^1.0.0:
2653 | version "1.0.0"
2654 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
2655 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
2656 | dependencies:
2657 | has-value "^0.3.1"
2658 | isobject "^3.0.0"
2659 |
2660 | upath@^1.1.1:
2661 | version "1.2.0"
2662 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
2663 | integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
2664 |
2665 | uri-js@^4.2.2:
2666 | version "4.4.1"
2667 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2668 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2669 | dependencies:
2670 | punycode "^2.1.0"
2671 |
2672 | urix@^0.1.0:
2673 | version "0.1.0"
2674 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
2675 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
2676 |
2677 | url@^0.11.0:
2678 | version "0.11.0"
2679 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
2680 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
2681 | dependencies:
2682 | punycode "1.3.2"
2683 | querystring "0.2.0"
2684 |
2685 | use@^3.1.0:
2686 | version "3.1.1"
2687 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
2688 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
2689 |
2690 | util-deprecate@^1.0.1, util-deprecate@~1.0.1:
2691 | version "1.0.2"
2692 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2693 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
2694 |
2695 | util@0.10.3:
2696 | version "0.10.3"
2697 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
2698 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
2699 | dependencies:
2700 | inherits "2.0.1"
2701 |
2702 | util@^0.11.0:
2703 | version "0.11.1"
2704 | resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
2705 | integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
2706 | dependencies:
2707 | inherits "2.0.3"
2708 |
2709 | v8-compile-cache@^2.2.0:
2710 | version "2.3.0"
2711 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2712 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2713 |
2714 | vm-browserify@^1.0.1:
2715 | version "1.1.2"
2716 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
2717 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
2718 |
2719 | watchpack-chokidar2@^2.0.1:
2720 | version "2.0.1"
2721 | resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
2722 | integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
2723 | dependencies:
2724 | chokidar "^2.1.8"
2725 |
2726 | watchpack@^1.7.4:
2727 | version "1.7.5"
2728 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
2729 | integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
2730 | dependencies:
2731 | graceful-fs "^4.1.2"
2732 | neo-async "^2.5.0"
2733 | optionalDependencies:
2734 | chokidar "^3.4.1"
2735 | watchpack-chokidar2 "^2.0.1"
2736 |
2737 | webpack-cli@4.8.0:
2738 | version "4.8.0"
2739 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.8.0.tgz#5fc3c8b9401d3c8a43e2afceacfa8261962338d1"
2740 | integrity sha512-+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw==
2741 | dependencies:
2742 | "@discoveryjs/json-ext" "^0.5.0"
2743 | "@webpack-cli/configtest" "^1.0.4"
2744 | "@webpack-cli/info" "^1.3.0"
2745 | "@webpack-cli/serve" "^1.5.2"
2746 | colorette "^1.2.1"
2747 | commander "^7.0.0"
2748 | execa "^5.0.0"
2749 | fastest-levenshtein "^1.0.12"
2750 | import-local "^3.0.2"
2751 | interpret "^2.2.0"
2752 | rechoir "^0.7.0"
2753 | v8-compile-cache "^2.2.0"
2754 | webpack-merge "^5.7.3"
2755 |
2756 | webpack-merge@^5.7.3:
2757 | version "5.8.0"
2758 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61"
2759 | integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==
2760 | dependencies:
2761 | clone-deep "^4.0.1"
2762 | wildcard "^2.0.0"
2763 |
2764 | webpack-rollup-loader@0.8.1:
2765 | version "0.8.1"
2766 | resolved "https://registry.yarnpkg.com/webpack-rollup-loader/-/webpack-rollup-loader-0.8.1.tgz#485f2da8b24962b433cc4b80f4950bbc115926ba"
2767 | integrity sha512-y2Y5d9PjVZ3R+AWfFBTu4nZ6kEOVjTWRv/UIdbgxE9EHfxFWcpUJ4jJ4HSrLTv17d6Gp2rWxv8n/fahmsGvRNQ==
2768 |
2769 | webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1:
2770 | version "1.4.3"
2771 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
2772 | integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
2773 | dependencies:
2774 | source-list-map "^2.0.0"
2775 | source-map "~0.6.1"
2776 |
2777 | webpack@4.46.0:
2778 | version "4.46.0"
2779 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
2780 | integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
2781 | dependencies:
2782 | "@webassemblyjs/ast" "1.9.0"
2783 | "@webassemblyjs/helper-module-context" "1.9.0"
2784 | "@webassemblyjs/wasm-edit" "1.9.0"
2785 | "@webassemblyjs/wasm-parser" "1.9.0"
2786 | acorn "^6.4.1"
2787 | ajv "^6.10.2"
2788 | ajv-keywords "^3.4.1"
2789 | chrome-trace-event "^1.0.2"
2790 | enhanced-resolve "^4.5.0"
2791 | eslint-scope "^4.0.3"
2792 | json-parse-better-errors "^1.0.2"
2793 | loader-runner "^2.4.0"
2794 | loader-utils "^1.2.3"
2795 | memory-fs "^0.4.1"
2796 | micromatch "^3.1.10"
2797 | mkdirp "^0.5.3"
2798 | neo-async "^2.6.1"
2799 | node-libs-browser "^2.2.1"
2800 | schema-utils "^1.0.0"
2801 | tapable "^1.1.3"
2802 | terser-webpack-plugin "^1.4.3"
2803 | watchpack "^1.7.4"
2804 | webpack-sources "^1.4.1"
2805 |
2806 | which@^2.0.1:
2807 | version "2.0.2"
2808 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2809 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2810 | dependencies:
2811 | isexe "^2.0.0"
2812 |
2813 | wildcard@^2.0.0:
2814 | version "2.0.0"
2815 | resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
2816 | integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
2817 |
2818 | worker-farm@^1.7.0:
2819 | version "1.7.0"
2820 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
2821 | integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
2822 | dependencies:
2823 | errno "~0.1.7"
2824 |
2825 | wrappy@1:
2826 | version "1.0.2"
2827 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2828 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2829 |
2830 | xtend@^4.0.0, xtend@~4.0.1:
2831 | version "4.0.2"
2832 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
2833 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
2834 |
2835 | y18n@^4.0.0:
2836 | version "4.0.3"
2837 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
2838 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
2839 |
2840 | yallist@^3.0.2:
2841 | version "3.1.1"
2842 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
2843 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
2844 |
2845 | yazl@^2.5.1:
2846 | version "2.5.1"
2847 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35"
2848 | integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==
2849 | dependencies:
2850 | buffer-crc32 "~0.2.3"
2851 |
2852 | zip-webpack-plugin@4.0.1:
2853 | version "4.0.1"
2854 | resolved "https://registry.yarnpkg.com/zip-webpack-plugin/-/zip-webpack-plugin-4.0.1.tgz#95f09716ecf73e53d949443017cfb03afe597dd3"
2855 | integrity sha512-G041Q4qUaog44Ynit6gs4o+o3JIv0WWfOLvc8Q3IxvPfuqd2KBHhpJWAXUB9Cm1JcWHTIOp9vS3oGMWa1p1Ehw==
2856 | dependencies:
2857 | yazl "^2.5.1"
2858 |
--------------------------------------------------------------------------------