├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── bot-appointment.js ├── bot-survey.js └── json │ ├── bot-appointment.json │ └── bot-survey.json ├── jsconfig.json ├── nodemon.json ├── package.json ├── src ├── events │ ├── index.js │ ├── make-http-request.js │ ├── send-message.js │ ├── split-based-on.js │ └── trigger.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ], 5 | "plugins": [ 6 | [ 7 | "@babel/plugin-proposal-class-properties" 8 | ], 9 | [ 10 | "@babel/transform-runtime" 11 | ], 12 | [ 13 | "module-resolver", 14 | { 15 | "alias": { 16 | "@root": [ 17 | "./bin", 18 | "./src" 19 | ] 20 | } 21 | } 22 | ] 23 | ], 24 | "env": { 25 | "production": { 26 | "presets": [ 27 | "minify" 28 | ] 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { "parserOptions": { "ecmaVersion": 9, "sourceType": "module" } } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin 3 | *.log -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BotFlow 2 | 3 | ### Features 4 | - Data gathering over a bot-conversation & sending to remotes; 5 | - Sending message to client & awaiting for response to continue the flow; 6 | - Message templating and variable injection using handlebars; 7 | - Action Triggers `split-based-on`, `send-message`, `make-http-request` (see usecases at `/examples/*`); 8 | - Condition triggers `regex`, `equal_to`, `not_equal_to`, `matches_any_of` (see usecases at `/examples/json/*`); 9 | - Populates remote response data into scope; 10 | 11 | ### How to? 12 | - Install yarn globally with `npm i -g yarn`; 13 | - Ideally you'd like to build it with `yarn build` and import from `/bin`; 14 | - Run example survey: `yarn test:survey`; 15 | - Run example appointment: `yarn test:appointment`; 16 | 17 | - You can also `npm i botflow` then use following example: 18 | ``` 19 | const BotFlow = require('botflow'); 20 | const Configuration = require('./JSON_CONFIG_FILE_PATH.json'); 21 | 22 | const instance = new BotFlow( 23 | { 24 | From: 'SENDER_ID/NAME/REFERENCE', 25 | To: 'RECEIVER_ID/NAME/REFERENCE' 26 | }, 27 | Configuration 28 | ); 29 | 30 | (async () => { 31 | 32 | const reply = await instance.query('start'); 33 | 34 | console.log(reply); 35 | 36 | console.log(instance); 37 | 38 | })(); 39 | ``` 40 | 41 | #### Libraries used: 42 | - `node-fetch` https://www.npmjs.com/package/node-fetch 43 | - `node-cache` https://www.npmjs.com/package/node-cache 44 | - `handlebars` https://handlebarsjs.com/ 45 | 46 | 47 | #### TODO's: 48 | - Write more specific documentation 49 | - Improvements 50 | 51 | Notes: 52 | - Project is heavily inspired by Twilio Studio and Chatflows as on https://www.twilio.com/console/studio. 53 | - _This is a a hobby project & early version therefore slight changes will/might be applied anytime._ 54 | - _You can always make a pull request in case of a good contribution._ 55 | 56 | Built with ♥ by https://github.com/artuuro 57 | -------------------------------------------------------------------------------- /examples/bot-appointment.js: -------------------------------------------------------------------------------- 1 | const BotFlow = require('../bin'); 2 | const Configuration = require('./json/bot-appointment.json'); 3 | 4 | const instance = new BotFlow( 5 | { 6 | From: 'SenderID', 7 | To: 'ReceiverID' 8 | }, 9 | Configuration 10 | ); 11 | 12 | const send = async function(message, data = {}) { 13 | console.log(`Client:`, message); 14 | const response = await instance.query(message, data); 15 | console.log(`Server:`, response.reply); 16 | return response; 17 | }; 18 | 19 | (async () => { 20 | // Start the chat: 21 | await send('Appointment', { 22 | appointment_time: new Date().toLocaleString() 23 | }); 24 | 25 | // Send reply to the previous question from server: 26 | await send ('2'); 27 | 28 | })(); -------------------------------------------------------------------------------- /examples/bot-survey.js: -------------------------------------------------------------------------------- 1 | const BotFlow = require('../bin'); 2 | const Configuration = require('./json/bot-survey.json'); 3 | 4 | const instance = new BotFlow( 5 | { 6 | From: 'SenderID', 7 | To: 'ReceiverID' 8 | }, 9 | Configuration 10 | ); 11 | 12 | (async () => { 13 | // Initial message from client: 14 | console.log(`---\nServer:`, await instance.query('Start')); 15 | 16 | 17 | // Replies to the questions 18 | console.log(`---\nServer:`, await instance.query('10')); 19 | console.log(`---\nServer:`, await instance.query('5')); 20 | console.log(`---\nServer:`, await instance.query('Complete!')); 21 | 22 | // Final state: 23 | console.log(`---\nSummary:`, instance.data); 24 | })(); -------------------------------------------------------------------------------- /examples/json/bot-appointment.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Bot Appointment", 3 | "states": [ 4 | { 5 | "name": "Trigger", 6 | "type": "trigger", 7 | "transitions": [ 8 | { 9 | "next": "confirm_appt", 10 | "event": "incomingMessage" 11 | }, 12 | { 13 | "event": "incomingCall" 14 | }, 15 | { 16 | "event": "incomingRequest" 17 | } 18 | ], 19 | "properties": {} 20 | }, 21 | { 22 | "name": "confirm_appt", 23 | "type": "send-and-wait-for-reply", 24 | "transitions": [ 25 | { 26 | "next": "split_confirmation", 27 | "event": "incomingMessage" 28 | }, 29 | { 30 | "event": "timeout" 31 | }, 32 | { 33 | "event": "deliveryFailure" 34 | } 35 | ], 36 | "properties": { 37 | "from": "{{flow.channel.address}}", 38 | "body": "Your appointment is coming up on {{flow.data.appointment_time}}. Please reply 1 to confirm and 2 to cancel.", 39 | "timeout": "3600" 40 | } 41 | }, 42 | { 43 | "name": "split_confirmation", 44 | "type": "split-based-on", 45 | "transitions": [ 46 | { 47 | "next": "send_no_match", 48 | "event": "noMatch" 49 | }, 50 | { 51 | "next": "confirmation_webhook", 52 | "event": "match", 53 | "conditions": [ 54 | { 55 | "friendly_name": "1", 56 | "arguments": [ 57 | "{{widgets.confirm_appt.inbound.Body}}" 58 | ], 59 | "type": "equal_to", 60 | "value": "1" 61 | } 62 | ] 63 | }, 64 | { 65 | "next": "cancellation_webhook", 66 | "event": "match", 67 | "conditions": [ 68 | { 69 | "friendly_name": "2", 70 | "arguments": [ 71 | "{{widgets.confirm_appt.inbound.Body}}" 72 | ], 73 | "type": "equal_to", 74 | "value": "2" 75 | } 76 | ] 77 | } 78 | ], 79 | "properties": { 80 | "input": "{{widgets.confirm_appt.inbound.Body}}" 81 | } 82 | }, 83 | { 84 | "name": "send_confirmation_sms", 85 | "type": "send-message", 86 | "transitions": [ 87 | { 88 | "event": "sent" 89 | }, 90 | { 91 | "event": "failed" 92 | } 93 | ], 94 | "properties": { 95 | "from": "{{flow.channel.address}}", 96 | "to": "{{contact.channel.address}}", 97 | "body": "Thanks! See you at the office." 98 | } 99 | }, 100 | { 101 | "name": "send_cancellation_sms", 102 | "type": "send-message", 103 | "transitions": [ 104 | { 105 | "event": "sent" 106 | }, 107 | { 108 | "event": "failed" 109 | } 110 | ], 111 | "properties": { 112 | "from": "{{flow.channel.address}}", 113 | "to": "{{contact.channel.address}}", 114 | "body": "We understand that plans change. Thanks for letting us know!" 115 | } 116 | }, 117 | { 118 | "name": "send_no_match", 119 | "type": "send-message", 120 | "transitions": [ 121 | { 122 | "next": "confirm_appt", 123 | "event": "sent" 124 | }, 125 | { 126 | "event": "failed" 127 | } 128 | ], 129 | "properties": { 130 | "from": "{{flow.channel.address}}", 131 | "to": "{{contact.channel.address}}", 132 | "body": "We're sorry, we couldn't understand your response." 133 | } 134 | }, 135 | { 136 | "name": "confirmation_webhook", 137 | "type": "make-http-request", 138 | "transitions": [ 139 | { 140 | "next": "send_confirmation_sms", 141 | "event": "success" 142 | }, 143 | { 144 | "event": "failed" 145 | } 146 | ], 147 | "properties": { 148 | "method": "POST", 149 | "url": "https://jsonplaceholder.typicode.com/posts", 150 | "timeout": 3600 151 | } 152 | }, 153 | { 154 | "name": "cancellation_webhook", 155 | "type": "make-http-request", 156 | "transitions": [ 157 | { 158 | "next": "send_cancellation_sms", 159 | "event": "success" 160 | }, 161 | { 162 | "event": "failed" 163 | } 164 | ], 165 | "properties": { 166 | "method": "POST", 167 | "url": "https://jsonplaceholder.typicode.com/posts", 168 | "timeout": 3600 169 | } 170 | } 171 | ], 172 | "initial_state": "Trigger" 173 | } -------------------------------------------------------------------------------- /examples/json/bot-survey.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "description": "Bot Survey", 4 | "states": [ 5 | { 6 | "name": "Trigger", 7 | "type": "trigger", 8 | "transitions": [ 9 | { 10 | "next": "first_question", 11 | "event": "incomingMessage" 12 | }, 13 | { 14 | "event": "incomingCall" 15 | }, 16 | { 17 | "event": "incomingRequest" 18 | } 19 | ], 20 | "properties": {} 21 | }, 22 | { 23 | "name": "first_question", 24 | "type": "send-and-wait-for-reply", 25 | "transitions": [ 26 | { 27 | "next": "check_response_1", 28 | "event": "incomingMessage" 29 | }, 30 | { 31 | "event": "timeout" 32 | }, 33 | { 34 | "event": "deliveryFailure" 35 | } 36 | ], 37 | "properties": { 38 | "from": "{{flow.channel.address}}", 39 | "body": "On a scale of 1-10, how would you rate today's session overall?", 40 | "timeout": "3600" 41 | } 42 | }, 43 | { 44 | "name": "check_response_1", 45 | "type": "split-based-on", 46 | "transitions": [ 47 | { 48 | "next": "unknown_answer_1", 49 | "event": "noMatch" 50 | }, 51 | { 52 | "next": "second_question", 53 | "event": "match", 54 | "conditions": [ 55 | { 56 | "friendly_name": "1-10", 57 | "arguments": [ 58 | "{{widgets.first_question.inbound.Body}}" 59 | ], 60 | "type": "regex", 61 | "value": "^(?:[1-9]|0[1-9]|10)$" 62 | } 63 | ] 64 | } 65 | ], 66 | "properties": { 67 | "input": "{{widgets.first_question.inbound.Body}}" 68 | } 69 | }, 70 | { 71 | "name": "unknown_answer_1", 72 | "type": "send-message", 73 | "transitions": [ 74 | { 75 | "next": "first_question", 76 | "event": "sent" 77 | }, 78 | { 79 | "event": "failed" 80 | } 81 | ], 82 | "properties": { 83 | "from": "{{flow.channel.address}}", 84 | "to": "{{contact.channel.address}}", 85 | "body": "I'm sorry, I didn't understand. Please enter a number from 1 - 10." 86 | } 87 | }, 88 | { 89 | "name": "second_question", 90 | "type": "send-and-wait-for-reply", 91 | "transitions": [ 92 | { 93 | "next": "check_response_2", 94 | "event": "incomingMessage" 95 | }, 96 | { 97 | "event": "timeout" 98 | }, 99 | { 100 | "event": "deliveryFailure" 101 | } 102 | ], 103 | "properties": { 104 | "from": "{{flow.channel.address}}", 105 | "body": "On a scale of 1-10, how likely are you to recommend this workshop to a friend?", 106 | "timeout": "3600" 107 | } 108 | }, 109 | { 110 | "name": "check_response_2", 111 | "type": "split-based-on", 112 | "transitions": [ 113 | { 114 | "next": "unknown_answer_2", 115 | "event": "noMatch" 116 | }, 117 | { 118 | "next": "third_question", 119 | "event": "match", 120 | "conditions": [ 121 | { 122 | "friendly_name": "1-10", 123 | "arguments": [ 124 | "{{widgets.second_question.inbound.Body}}" 125 | ], 126 | "type": "regex", 127 | "value": "^(?:[1-9]|0[1-9]|10)$" 128 | } 129 | ] 130 | } 131 | ], 132 | "properties": { 133 | "input": "{{widgets.second_question.inbound.Body}}" 134 | } 135 | }, 136 | { 137 | "name": "unknown_answer_2", 138 | "type": "send-message", 139 | "transitions": [ 140 | { 141 | "next": "second_question", 142 | "event": "sent" 143 | }, 144 | { 145 | "event": "failed" 146 | } 147 | ], 148 | "properties": { 149 | "from": "{{flow.channel.address}}", 150 | "to": "{{contact.channel.address}}", 151 | "body": "I'm sorry, I didn't understand. Please enter a number from 1 - 10." 152 | } 153 | }, 154 | { 155 | "name": "third_question", 156 | "type": "send-and-wait-for-reply", 157 | "transitions": [ 158 | { 159 | "next": "send_results_to_server", 160 | "event": "incomingMessage" 161 | }, 162 | { 163 | "next": "send_results_to_server", 164 | "event": "timeout" 165 | }, 166 | { 167 | "event": "deliveryFailure" 168 | } 169 | ], 170 | "properties": { 171 | "from": "{{flow.channel.address}}", 172 | "body": "Is there any other feedback you would like to share with us today?", 173 | "timeout": "3600" 174 | } 175 | }, 176 | { 177 | "name": "thank_you", 178 | "type": "send-message", 179 | "transitions": [ 180 | { 181 | "event": "sent" 182 | }, 183 | { 184 | "event": "failed" 185 | } 186 | ], 187 | "properties": { 188 | "from": "{{flow.channel.address}}", 189 | "to": "{{contact.channel.address}}", 190 | "body": "Thank you so much for your feedback!" 191 | } 192 | }, 193 | { 194 | "name": "send_results_to_server", 195 | "type": "make-http-request", 196 | "transitions": [ 197 | { 198 | "next": "thank_you", 199 | "event": "success" 200 | }, 201 | { 202 | "event": "failed" 203 | } 204 | ], 205 | "properties": { 206 | "method": "POST", 207 | "parameters": [ 208 | { 209 | "value": "{{widgets.first_question.inbound.Body}} ", 210 | "key": "question1" 211 | }, 212 | { 213 | "value": "{{widgets.second_question.inbound.Body}} ", 214 | "key": "question2" 215 | }, 216 | { 217 | "value": "{{widgets.third_question.inbound.Body}} ", 218 | "key": "question3" 219 | } 220 | ], 221 | "url": "https://jsonplaceholder.typicode.com/posts" 222 | } 223 | } 224 | ], 225 | "initial_state": "Trigger" 226 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": "./", 4 | "paths": { 5 | "@root/*": [ 6 | "src/*" 7 | ] 8 | } 9 | }, 10 | "exclude": [ 11 | "node_modules", 12 | "dist" 13 | ] 14 | } -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "exec": "yarn start", 3 | "watch": [ 4 | "src/*" 5 | ], 6 | "ext": "js" 7 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "botflow", 3 | "version": "1.0.7", 4 | "description": "JavaScript (nodejs) library that accepts `Twilio Studio` alike JSON configuration files and provides the same functionality on an independent back-end service.", 5 | "main": "bin/index.js", 6 | "author": "Arthur G", 7 | "license": "AGPL-3.0-only", 8 | "repository": "https://github.com/artuuro/botflow", 9 | "scripts": { 10 | "prepare": "npm run build", 11 | "dev": "nodemon", 12 | "test:survey": "yarn build && node ./examples/bot-survey.js", 13 | "test:appointment": "yarn build && node ./examples/bot-appointment.js", 14 | "clean": "rimraf bin", 15 | "build": "babel ./src --out-dir bin" 16 | }, 17 | "dependencies": { 18 | "handlebars": "^4.7.6", 19 | "node-cache": "^5.1.2", 20 | "node-fetch": "^2.6.1", 21 | "@babel/cli": "^7.7.0", 22 | "@babel/core": "^7.7.2", 23 | "@babel/node": "^7.7.0", 24 | "@babel/plugin-transform-runtime": "^7.6.2", 25 | "@babel/preset-env": "^7.7.1", 26 | "@babel/runtime": "^7.7.2", 27 | "babel-plugin-module-resolver": "^4.0.0", 28 | "babel-preset-minify": "^0.5.1" 29 | }, 30 | "devDependencies": { 31 | "nodemon": "^1.19.4", 32 | "rimraf": "^3.0.0", 33 | "source-map": "^0.7.3" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/events/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'trigger': require('./trigger'), 3 | 'split-based-on': require('./split-based-on').default, 4 | 'make-http-request': require('./make-http-request').default, 5 | 'send-message': require('./send-message').default, 6 | 'send-and-wait-for-reply': require('./send-message').default, 7 | }; -------------------------------------------------------------------------------- /src/events/make-http-request.js: -------------------------------------------------------------------------------- 1 | import { compile } from 'handlebars'; 2 | import fetch from 'node-fetch'; 3 | 4 | export default async function (data, instance, widgetName) { 5 | let { transitions, properties } = instance; 6 | 7 | let { parameters, body } = properties; 8 | 9 | let internalEvent = 'failed'; 10 | let requestData = {}; 11 | 12 | if (parameters) { 13 | for (let i = 0; i < parameters.length; i++) { 14 | const template = compile(parameters[i].value); 15 | parameters[i].value = template(data); 16 | } 17 | requestData.parameters = parameters; 18 | } 19 | 20 | if (body) { 21 | const template = compile(body); 22 | body = template(data); 23 | requestData.body = body; 24 | } 25 | 26 | const response = await fetch(properties.url, { 27 | method: properties.method, 28 | body: requestData, 29 | headers: { 30 | 'Content-Type': properties.content_type 31 | } 32 | }); 33 | 34 | const statusCodes = new Set([200, 201]); 35 | 36 | if (statusCodes.has(response.status)) { 37 | internalEvent = 'success'; 38 | requestData = await response.json(); 39 | } 40 | 41 | const nextWidget = transitions.find(i => i.event == internalEvent); 42 | 43 | let outputData = { 44 | ...data 45 | }; 46 | 47 | if (requestData) { 48 | // do nothing 49 | } else { 50 | outputData.widgets[widgetName] = { 51 | parsed: { 52 | ...requestData 53 | } 54 | }; 55 | } 56 | 57 | return { 58 | ...data, 59 | ...outputData, 60 | ...nextWidget 61 | }; 62 | }; -------------------------------------------------------------------------------- /src/events/send-message.js: -------------------------------------------------------------------------------- 1 | import { compile } from 'handlebars'; 2 | 3 | export default function(data, instance) { 4 | const { transitions } = instance; 5 | const template = compile(instance.properties.body); 6 | const body = template(data); 7 | 8 | const nextWidget = transitions.find(i => new Set(Object.keys(i)).has('next')); 9 | 10 | return { 11 | ...data, 12 | ...nextWidget, 13 | reply: body 14 | }; 15 | }; -------------------------------------------------------------------------------- /src/events/split-based-on.js: -------------------------------------------------------------------------------- 1 | import { compile } from 'handlebars'; 2 | 3 | export default function (data, instance) { 4 | const { properties, transitions } = instance; 5 | const template = compile(properties.input); 6 | const userInput = template(data).toLowerCase(); 7 | 8 | const nextWidget = transitions && transitions.find(t => t.conditions && t.conditions.find(c => { 9 | let match = false; 10 | switch (c.type) { 11 | case 'matches_any_of': 12 | match = new Set(c.value.split(',')).has(userInput); 13 | break; 14 | case 'equal_to': 15 | match = c.value == userInput; 16 | break; 17 | case 'not_equal_to': 18 | match = c.value !== userInput; 19 | break; 20 | case 'regex': 21 | match = userInput.match(c.value); 22 | break; 23 | } 24 | return match; 25 | })); 26 | 27 | if (nextWidget) { 28 | return { 29 | ...data, 30 | ...nextWidget 31 | }; 32 | } else { 33 | return; 34 | } 35 | }; -------------------------------------------------------------------------------- /src/events/trigger.js: -------------------------------------------------------------------------------- 1 | module.exports = function(data, instance, widgetName) { 2 | const { transitions } = instance; 3 | 4 | const nextWidget = transitions.find(i => i.event == data.event); 5 | 6 | return { 7 | ...data, 8 | ...nextWidget 9 | }; 10 | }; -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import events from '@root/events'; 2 | import NodeCache from 'node-cache'; 3 | 4 | class BotFlow { 5 | constructor(parties, flow) { 6 | this.parties = parties; 7 | 8 | Object.assign(this, flow); 9 | 10 | this.cache = new NodeCache(); 11 | this.canGoNext = new Set([ 12 | 'trigger', 13 | 'split-based-on', 14 | 'make-http-request', 15 | ]); 16 | } 17 | 18 | getState(name) { 19 | return this.states.find(i => i.name == name); 20 | } 21 | 22 | getInitialState(session) { 23 | const cached = this.cache.get(session); 24 | if (cached) { 25 | this.data = { 26 | ...this.data, 27 | ...cached.data 28 | }; 29 | 30 | this.data.widgets[cached.fromState] = { inbound: this.data.trigger.message }; 31 | 32 | return cached.toState; 33 | } else { 34 | return this.initial_state; 35 | } 36 | } 37 | 38 | async call(data = {}, state = null) { 39 | try { 40 | this.data = { 41 | widgets: {}, 42 | ...data 43 | }; 44 | 45 | //console.log(this.data) 46 | 47 | const stateName = state || this.getInitialState(this.data.trigger.message.From); 48 | 49 | this.currentState = this.getState(stateName); 50 | 51 | // Cleanup the cache as we already checked for it: 52 | this.cache.del(this.data.trigger.message.From); 53 | 54 | // Find out the next state: 55 | this.nextState = await events[this.currentState.type]( 56 | this.data, 57 | { 58 | properties: this.currentState.properties, 59 | transitions: this.currentState.transitions 60 | }, 61 | this.currentState.name 62 | ); 63 | 64 | // Update model with new data (if any) 65 | this.data = { 66 | ...this.data, 67 | ...this.nextState 68 | }; 69 | 70 | // Do we get the 'next' key ? 71 | const goNextState = this.nextState && new Set(Object.keys(this.nextState)).has('next'); 72 | 73 | 74 | if (goNextState && this.canGoNext.has(this.currentState.type)) { 75 | // Call me again: 76 | await this.call(this.data, this.nextState.next); 77 | } else { 78 | if (this.currentState.type == 'send-and-wait-for-reply') { 79 | this.cache.set( 80 | // ID reference: 81 | this.data.trigger.message.From, 82 | // Generated data: 83 | { 84 | fromState: this.currentState.name, 85 | toState: this.data.next, 86 | data: { 87 | widgets: this.data.widgets 88 | } 89 | }, 90 | // Time the return point will stay in cache (in seconds) 91 | this.currentState.properties.timeout 92 | ); 93 | } 94 | } 95 | 96 | } catch (error) { 97 | console.log(error); 98 | } 99 | } 100 | 101 | async query(message, data = {}) { 102 | try { 103 | await this.call({ 104 | flow: { 105 | data: data, 106 | }, 107 | trigger: { 108 | message: { 109 | ...this.parties, 110 | Body: message, 111 | } 112 | }, 113 | event: 'incomingMessage' 114 | }); 115 | return this.data; 116 | } catch (e) { 117 | throw e; 118 | } 119 | } 120 | 121 | } 122 | 123 | export default BotFlow; 124 | module.exports = BotFlow; -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/cli@^7.7.0": 6 | version "7.11.6" 7 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.11.6.tgz#1fcbe61c2a6900c3539c06ee58901141f3558482" 8 | integrity sha512-+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg== 9 | dependencies: 10 | commander "^4.0.1" 11 | convert-source-map "^1.1.0" 12 | fs-readdir-recursive "^1.1.0" 13 | glob "^7.0.0" 14 | lodash "^4.17.19" 15 | make-dir "^2.1.0" 16 | slash "^2.0.0" 17 | source-map "^0.5.0" 18 | optionalDependencies: 19 | chokidar "^2.1.8" 20 | 21 | "@babel/code-frame@^7.10.4": 22 | version "7.10.4" 23 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 24 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 25 | dependencies: 26 | "@babel/highlight" "^7.10.4" 27 | 28 | "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": 29 | version "7.11.0" 30 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" 31 | integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== 32 | dependencies: 33 | browserslist "^4.12.0" 34 | invariant "^2.2.4" 35 | semver "^5.5.0" 36 | 37 | "@babel/core@^7.7.2": 38 | version "7.11.6" 39 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" 40 | integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== 41 | dependencies: 42 | "@babel/code-frame" "^7.10.4" 43 | "@babel/generator" "^7.11.6" 44 | "@babel/helper-module-transforms" "^7.11.0" 45 | "@babel/helpers" "^7.10.4" 46 | "@babel/parser" "^7.11.5" 47 | "@babel/template" "^7.10.4" 48 | "@babel/traverse" "^7.11.5" 49 | "@babel/types" "^7.11.5" 50 | convert-source-map "^1.7.0" 51 | debug "^4.1.0" 52 | gensync "^1.0.0-beta.1" 53 | json5 "^2.1.2" 54 | lodash "^4.17.19" 55 | resolve "^1.3.2" 56 | semver "^5.4.1" 57 | source-map "^0.5.0" 58 | 59 | "@babel/generator@^7.11.5", "@babel/generator@^7.11.6": 60 | version "7.11.6" 61 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620" 62 | integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA== 63 | dependencies: 64 | "@babel/types" "^7.11.5" 65 | jsesc "^2.5.1" 66 | source-map "^0.5.0" 67 | 68 | "@babel/helper-annotate-as-pure@^7.10.4": 69 | version "7.10.4" 70 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 71 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 72 | dependencies: 73 | "@babel/types" "^7.10.4" 74 | 75 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 76 | version "7.10.4" 77 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 78 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 79 | dependencies: 80 | "@babel/helper-explode-assignable-expression" "^7.10.4" 81 | "@babel/types" "^7.10.4" 82 | 83 | "@babel/helper-compilation-targets@^7.10.4": 84 | version "7.10.4" 85 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" 86 | integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== 87 | dependencies: 88 | "@babel/compat-data" "^7.10.4" 89 | browserslist "^4.12.0" 90 | invariant "^2.2.4" 91 | levenary "^1.1.1" 92 | semver "^5.5.0" 93 | 94 | "@babel/helper-create-class-features-plugin@^7.10.4": 95 | version "7.10.5" 96 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d" 97 | integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== 98 | dependencies: 99 | "@babel/helper-function-name" "^7.10.4" 100 | "@babel/helper-member-expression-to-functions" "^7.10.5" 101 | "@babel/helper-optimise-call-expression" "^7.10.4" 102 | "@babel/helper-plugin-utils" "^7.10.4" 103 | "@babel/helper-replace-supers" "^7.10.4" 104 | "@babel/helper-split-export-declaration" "^7.10.4" 105 | 106 | "@babel/helper-create-regexp-features-plugin@^7.10.4": 107 | version "7.10.4" 108 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" 109 | integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== 110 | dependencies: 111 | "@babel/helper-annotate-as-pure" "^7.10.4" 112 | "@babel/helper-regex" "^7.10.4" 113 | regexpu-core "^4.7.0" 114 | 115 | "@babel/helper-define-map@^7.10.4": 116 | version "7.10.5" 117 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 118 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 119 | dependencies: 120 | "@babel/helper-function-name" "^7.10.4" 121 | "@babel/types" "^7.10.5" 122 | lodash "^4.17.19" 123 | 124 | "@babel/helper-explode-assignable-expression@^7.10.4": 125 | version "7.11.4" 126 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b" 127 | integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== 128 | dependencies: 129 | "@babel/types" "^7.10.4" 130 | 131 | "@babel/helper-function-name@^7.10.4": 132 | version "7.10.4" 133 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 134 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 135 | dependencies: 136 | "@babel/helper-get-function-arity" "^7.10.4" 137 | "@babel/template" "^7.10.4" 138 | "@babel/types" "^7.10.4" 139 | 140 | "@babel/helper-get-function-arity@^7.10.4": 141 | version "7.10.4" 142 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 143 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 144 | dependencies: 145 | "@babel/types" "^7.10.4" 146 | 147 | "@babel/helper-hoist-variables@^7.10.4": 148 | version "7.10.4" 149 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 150 | integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 151 | dependencies: 152 | "@babel/types" "^7.10.4" 153 | 154 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": 155 | version "7.11.0" 156 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" 157 | integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== 158 | dependencies: 159 | "@babel/types" "^7.11.0" 160 | 161 | "@babel/helper-module-imports@^7.10.4": 162 | version "7.10.4" 163 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" 164 | integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== 165 | dependencies: 166 | "@babel/types" "^7.10.4" 167 | 168 | "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": 169 | version "7.11.0" 170 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" 171 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== 172 | dependencies: 173 | "@babel/helper-module-imports" "^7.10.4" 174 | "@babel/helper-replace-supers" "^7.10.4" 175 | "@babel/helper-simple-access" "^7.10.4" 176 | "@babel/helper-split-export-declaration" "^7.11.0" 177 | "@babel/template" "^7.10.4" 178 | "@babel/types" "^7.11.0" 179 | lodash "^4.17.19" 180 | 181 | "@babel/helper-optimise-call-expression@^7.10.4": 182 | version "7.10.4" 183 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 184 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== 185 | dependencies: 186 | "@babel/types" "^7.10.4" 187 | 188 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 189 | version "7.10.4" 190 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 191 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 192 | 193 | "@babel/helper-regex@^7.10.4": 194 | version "7.10.5" 195 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" 196 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== 197 | dependencies: 198 | lodash "^4.17.19" 199 | 200 | "@babel/helper-remap-async-to-generator@^7.10.4": 201 | version "7.11.4" 202 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d" 203 | integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== 204 | dependencies: 205 | "@babel/helper-annotate-as-pure" "^7.10.4" 206 | "@babel/helper-wrap-function" "^7.10.4" 207 | "@babel/template" "^7.10.4" 208 | "@babel/types" "^7.10.4" 209 | 210 | "@babel/helper-replace-supers@^7.10.4": 211 | version "7.10.4" 212 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" 213 | integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== 214 | dependencies: 215 | "@babel/helper-member-expression-to-functions" "^7.10.4" 216 | "@babel/helper-optimise-call-expression" "^7.10.4" 217 | "@babel/traverse" "^7.10.4" 218 | "@babel/types" "^7.10.4" 219 | 220 | "@babel/helper-simple-access@^7.10.4": 221 | version "7.10.4" 222 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" 223 | integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== 224 | dependencies: 225 | "@babel/template" "^7.10.4" 226 | "@babel/types" "^7.10.4" 227 | 228 | "@babel/helper-skip-transparent-expression-wrappers@^7.11.0": 229 | version "7.11.0" 230 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" 231 | integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== 232 | dependencies: 233 | "@babel/types" "^7.11.0" 234 | 235 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": 236 | version "7.11.0" 237 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 238 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 239 | dependencies: 240 | "@babel/types" "^7.11.0" 241 | 242 | "@babel/helper-validator-identifier@^7.10.4": 243 | version "7.10.4" 244 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 245 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 246 | 247 | "@babel/helper-wrap-function@^7.10.4": 248 | version "7.10.4" 249 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" 250 | integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== 251 | dependencies: 252 | "@babel/helper-function-name" "^7.10.4" 253 | "@babel/template" "^7.10.4" 254 | "@babel/traverse" "^7.10.4" 255 | "@babel/types" "^7.10.4" 256 | 257 | "@babel/helpers@^7.10.4": 258 | version "7.10.4" 259 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" 260 | integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== 261 | dependencies: 262 | "@babel/template" "^7.10.4" 263 | "@babel/traverse" "^7.10.4" 264 | "@babel/types" "^7.10.4" 265 | 266 | "@babel/highlight@^7.10.4": 267 | version "7.10.4" 268 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 269 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 270 | dependencies: 271 | "@babel/helper-validator-identifier" "^7.10.4" 272 | chalk "^2.0.0" 273 | js-tokens "^4.0.0" 274 | 275 | "@babel/node@^7.7.0": 276 | version "7.10.5" 277 | resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.10.5.tgz#30866322aa2c0251a9bdd73d07a9167bd1f4ed64" 278 | integrity sha512-suosS7zZ2roj+fYVCnDuVezUbRc0sdoyF0Gj/1FzWxD4ebbGiBGtL5qyqHH4NO34B5m4vWWYWgyNhSsrqS8vwA== 279 | dependencies: 280 | "@babel/register" "^7.10.5" 281 | commander "^4.0.1" 282 | core-js "^3.2.1" 283 | lodash "^4.17.19" 284 | node-environment-flags "^1.0.5" 285 | regenerator-runtime "^0.13.4" 286 | resolve "^1.13.1" 287 | v8flags "^3.1.1" 288 | 289 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.5": 290 | version "7.11.5" 291 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" 292 | integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== 293 | 294 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": 295 | version "7.10.5" 296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" 297 | integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== 298 | dependencies: 299 | "@babel/helper-plugin-utils" "^7.10.4" 300 | "@babel/helper-remap-async-to-generator" "^7.10.4" 301 | "@babel/plugin-syntax-async-generators" "^7.8.0" 302 | 303 | "@babel/plugin-proposal-class-properties@^7.10.4": 304 | version "7.10.4" 305 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" 306 | integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== 307 | dependencies: 308 | "@babel/helper-create-class-features-plugin" "^7.10.4" 309 | "@babel/helper-plugin-utils" "^7.10.4" 310 | 311 | "@babel/plugin-proposal-dynamic-import@^7.10.4": 312 | version "7.10.4" 313 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" 314 | integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== 315 | dependencies: 316 | "@babel/helper-plugin-utils" "^7.10.4" 317 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 318 | 319 | "@babel/plugin-proposal-export-namespace-from@^7.10.4": 320 | version "7.10.4" 321 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54" 322 | integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== 323 | dependencies: 324 | "@babel/helper-plugin-utils" "^7.10.4" 325 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 326 | 327 | "@babel/plugin-proposal-json-strings@^7.10.4": 328 | version "7.10.4" 329 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" 330 | integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== 331 | dependencies: 332 | "@babel/helper-plugin-utils" "^7.10.4" 333 | "@babel/plugin-syntax-json-strings" "^7.8.0" 334 | 335 | "@babel/plugin-proposal-logical-assignment-operators@^7.11.0": 336 | version "7.11.0" 337 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8" 338 | integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== 339 | dependencies: 340 | "@babel/helper-plugin-utils" "^7.10.4" 341 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 342 | 343 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 344 | version "7.10.4" 345 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" 346 | integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== 347 | dependencies: 348 | "@babel/helper-plugin-utils" "^7.10.4" 349 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 350 | 351 | "@babel/plugin-proposal-numeric-separator@^7.10.4": 352 | version "7.10.4" 353 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" 354 | integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== 355 | dependencies: 356 | "@babel/helper-plugin-utils" "^7.10.4" 357 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 358 | 359 | "@babel/plugin-proposal-object-rest-spread@^7.11.0": 360 | version "7.11.0" 361 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" 362 | integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== 363 | dependencies: 364 | "@babel/helper-plugin-utils" "^7.10.4" 365 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 366 | "@babel/plugin-transform-parameters" "^7.10.4" 367 | 368 | "@babel/plugin-proposal-optional-catch-binding@^7.10.4": 369 | version "7.10.4" 370 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" 371 | integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== 372 | dependencies: 373 | "@babel/helper-plugin-utils" "^7.10.4" 374 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 375 | 376 | "@babel/plugin-proposal-optional-chaining@^7.11.0": 377 | version "7.11.0" 378 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" 379 | integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== 380 | dependencies: 381 | "@babel/helper-plugin-utils" "^7.10.4" 382 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 383 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 384 | 385 | "@babel/plugin-proposal-private-methods@^7.10.4": 386 | version "7.10.4" 387 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" 388 | integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== 389 | dependencies: 390 | "@babel/helper-create-class-features-plugin" "^7.10.4" 391 | "@babel/helper-plugin-utils" "^7.10.4" 392 | 393 | "@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 394 | version "7.10.4" 395 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" 396 | integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== 397 | dependencies: 398 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 399 | "@babel/helper-plugin-utils" "^7.10.4" 400 | 401 | "@babel/plugin-syntax-async-generators@^7.8.0": 402 | version "7.8.4" 403 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 404 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 405 | dependencies: 406 | "@babel/helper-plugin-utils" "^7.8.0" 407 | 408 | "@babel/plugin-syntax-class-properties@^7.10.4": 409 | version "7.10.4" 410 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" 411 | integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== 412 | dependencies: 413 | "@babel/helper-plugin-utils" "^7.10.4" 414 | 415 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 416 | version "7.8.3" 417 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 418 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 419 | dependencies: 420 | "@babel/helper-plugin-utils" "^7.8.0" 421 | 422 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 423 | version "7.8.3" 424 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 425 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 426 | dependencies: 427 | "@babel/helper-plugin-utils" "^7.8.3" 428 | 429 | "@babel/plugin-syntax-json-strings@^7.8.0": 430 | version "7.8.3" 431 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 432 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 433 | dependencies: 434 | "@babel/helper-plugin-utils" "^7.8.0" 435 | 436 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 437 | version "7.10.4" 438 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 439 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 440 | dependencies: 441 | "@babel/helper-plugin-utils" "^7.10.4" 442 | 443 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 444 | version "7.8.3" 445 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 446 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.8.0" 449 | 450 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 451 | version "7.10.4" 452 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 453 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 454 | dependencies: 455 | "@babel/helper-plugin-utils" "^7.10.4" 456 | 457 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 458 | version "7.8.3" 459 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 460 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 461 | dependencies: 462 | "@babel/helper-plugin-utils" "^7.8.0" 463 | 464 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 465 | version "7.8.3" 466 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 467 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 468 | dependencies: 469 | "@babel/helper-plugin-utils" "^7.8.0" 470 | 471 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 472 | version "7.8.3" 473 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 474 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 475 | dependencies: 476 | "@babel/helper-plugin-utils" "^7.8.0" 477 | 478 | "@babel/plugin-syntax-top-level-await@^7.10.4": 479 | version "7.10.4" 480 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" 481 | integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== 482 | dependencies: 483 | "@babel/helper-plugin-utils" "^7.10.4" 484 | 485 | "@babel/plugin-transform-arrow-functions@^7.10.4": 486 | version "7.10.4" 487 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" 488 | integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== 489 | dependencies: 490 | "@babel/helper-plugin-utils" "^7.10.4" 491 | 492 | "@babel/plugin-transform-async-to-generator@^7.10.4": 493 | version "7.10.4" 494 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" 495 | integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== 496 | dependencies: 497 | "@babel/helper-module-imports" "^7.10.4" 498 | "@babel/helper-plugin-utils" "^7.10.4" 499 | "@babel/helper-remap-async-to-generator" "^7.10.4" 500 | 501 | "@babel/plugin-transform-block-scoped-functions@^7.10.4": 502 | version "7.10.4" 503 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" 504 | integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== 505 | dependencies: 506 | "@babel/helper-plugin-utils" "^7.10.4" 507 | 508 | "@babel/plugin-transform-block-scoping@^7.10.4": 509 | version "7.11.1" 510 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" 511 | integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== 512 | dependencies: 513 | "@babel/helper-plugin-utils" "^7.10.4" 514 | 515 | "@babel/plugin-transform-classes@^7.10.4": 516 | version "7.10.4" 517 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" 518 | integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== 519 | dependencies: 520 | "@babel/helper-annotate-as-pure" "^7.10.4" 521 | "@babel/helper-define-map" "^7.10.4" 522 | "@babel/helper-function-name" "^7.10.4" 523 | "@babel/helper-optimise-call-expression" "^7.10.4" 524 | "@babel/helper-plugin-utils" "^7.10.4" 525 | "@babel/helper-replace-supers" "^7.10.4" 526 | "@babel/helper-split-export-declaration" "^7.10.4" 527 | globals "^11.1.0" 528 | 529 | "@babel/plugin-transform-computed-properties@^7.10.4": 530 | version "7.10.4" 531 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" 532 | integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== 533 | dependencies: 534 | "@babel/helper-plugin-utils" "^7.10.4" 535 | 536 | "@babel/plugin-transform-destructuring@^7.10.4": 537 | version "7.10.4" 538 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" 539 | integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== 540 | dependencies: 541 | "@babel/helper-plugin-utils" "^7.10.4" 542 | 543 | "@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": 544 | version "7.10.4" 545 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" 546 | integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== 547 | dependencies: 548 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 549 | "@babel/helper-plugin-utils" "^7.10.4" 550 | 551 | "@babel/plugin-transform-duplicate-keys@^7.10.4": 552 | version "7.10.4" 553 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" 554 | integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== 555 | dependencies: 556 | "@babel/helper-plugin-utils" "^7.10.4" 557 | 558 | "@babel/plugin-transform-exponentiation-operator@^7.10.4": 559 | version "7.10.4" 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" 561 | integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== 562 | dependencies: 563 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 564 | "@babel/helper-plugin-utils" "^7.10.4" 565 | 566 | "@babel/plugin-transform-for-of@^7.10.4": 567 | version "7.10.4" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" 569 | integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== 570 | dependencies: 571 | "@babel/helper-plugin-utils" "^7.10.4" 572 | 573 | "@babel/plugin-transform-function-name@^7.10.4": 574 | version "7.10.4" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" 576 | integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== 577 | dependencies: 578 | "@babel/helper-function-name" "^7.10.4" 579 | "@babel/helper-plugin-utils" "^7.10.4" 580 | 581 | "@babel/plugin-transform-literals@^7.10.4": 582 | version "7.10.4" 583 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" 584 | integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== 585 | dependencies: 586 | "@babel/helper-plugin-utils" "^7.10.4" 587 | 588 | "@babel/plugin-transform-member-expression-literals@^7.10.4": 589 | version "7.10.4" 590 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" 591 | integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== 592 | dependencies: 593 | "@babel/helper-plugin-utils" "^7.10.4" 594 | 595 | "@babel/plugin-transform-modules-amd@^7.10.4": 596 | version "7.10.5" 597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1" 598 | integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== 599 | dependencies: 600 | "@babel/helper-module-transforms" "^7.10.5" 601 | "@babel/helper-plugin-utils" "^7.10.4" 602 | babel-plugin-dynamic-import-node "^2.3.3" 603 | 604 | "@babel/plugin-transform-modules-commonjs@^7.10.4": 605 | version "7.10.4" 606 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" 607 | integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== 608 | dependencies: 609 | "@babel/helper-module-transforms" "^7.10.4" 610 | "@babel/helper-plugin-utils" "^7.10.4" 611 | "@babel/helper-simple-access" "^7.10.4" 612 | babel-plugin-dynamic-import-node "^2.3.3" 613 | 614 | "@babel/plugin-transform-modules-systemjs@^7.10.4": 615 | version "7.10.5" 616 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85" 617 | integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== 618 | dependencies: 619 | "@babel/helper-hoist-variables" "^7.10.4" 620 | "@babel/helper-module-transforms" "^7.10.5" 621 | "@babel/helper-plugin-utils" "^7.10.4" 622 | babel-plugin-dynamic-import-node "^2.3.3" 623 | 624 | "@babel/plugin-transform-modules-umd@^7.10.4": 625 | version "7.10.4" 626 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" 627 | integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== 628 | dependencies: 629 | "@babel/helper-module-transforms" "^7.10.4" 630 | "@babel/helper-plugin-utils" "^7.10.4" 631 | 632 | "@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": 633 | version "7.10.4" 634 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" 635 | integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== 636 | dependencies: 637 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 638 | 639 | "@babel/plugin-transform-new-target@^7.10.4": 640 | version "7.10.4" 641 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" 642 | integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== 643 | dependencies: 644 | "@babel/helper-plugin-utils" "^7.10.4" 645 | 646 | "@babel/plugin-transform-object-super@^7.10.4": 647 | version "7.10.4" 648 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" 649 | integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== 650 | dependencies: 651 | "@babel/helper-plugin-utils" "^7.10.4" 652 | "@babel/helper-replace-supers" "^7.10.4" 653 | 654 | "@babel/plugin-transform-parameters@^7.10.4": 655 | version "7.10.5" 656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" 657 | integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== 658 | dependencies: 659 | "@babel/helper-get-function-arity" "^7.10.4" 660 | "@babel/helper-plugin-utils" "^7.10.4" 661 | 662 | "@babel/plugin-transform-property-literals@^7.10.4": 663 | version "7.10.4" 664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" 665 | integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== 666 | dependencies: 667 | "@babel/helper-plugin-utils" "^7.10.4" 668 | 669 | "@babel/plugin-transform-regenerator@^7.10.4": 670 | version "7.10.4" 671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" 672 | integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== 673 | dependencies: 674 | regenerator-transform "^0.14.2" 675 | 676 | "@babel/plugin-transform-reserved-words@^7.10.4": 677 | version "7.10.4" 678 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" 679 | integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== 680 | dependencies: 681 | "@babel/helper-plugin-utils" "^7.10.4" 682 | 683 | "@babel/plugin-transform-runtime@^7.6.2": 684 | version "7.11.5" 685 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc" 686 | integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg== 687 | dependencies: 688 | "@babel/helper-module-imports" "^7.10.4" 689 | "@babel/helper-plugin-utils" "^7.10.4" 690 | resolve "^1.8.1" 691 | semver "^5.5.1" 692 | 693 | "@babel/plugin-transform-shorthand-properties@^7.10.4": 694 | version "7.10.4" 695 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" 696 | integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== 697 | dependencies: 698 | "@babel/helper-plugin-utils" "^7.10.4" 699 | 700 | "@babel/plugin-transform-spread@^7.11.0": 701 | version "7.11.0" 702 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" 703 | integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== 704 | dependencies: 705 | "@babel/helper-plugin-utils" "^7.10.4" 706 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 707 | 708 | "@babel/plugin-transform-sticky-regex@^7.10.4": 709 | version "7.10.4" 710 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" 711 | integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== 712 | dependencies: 713 | "@babel/helper-plugin-utils" "^7.10.4" 714 | "@babel/helper-regex" "^7.10.4" 715 | 716 | "@babel/plugin-transform-template-literals@^7.10.4": 717 | version "7.10.5" 718 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" 719 | integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== 720 | dependencies: 721 | "@babel/helper-annotate-as-pure" "^7.10.4" 722 | "@babel/helper-plugin-utils" "^7.10.4" 723 | 724 | "@babel/plugin-transform-typeof-symbol@^7.10.4": 725 | version "7.10.4" 726 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" 727 | integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== 728 | dependencies: 729 | "@babel/helper-plugin-utils" "^7.10.4" 730 | 731 | "@babel/plugin-transform-unicode-escapes@^7.10.4": 732 | version "7.10.4" 733 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" 734 | integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== 735 | dependencies: 736 | "@babel/helper-plugin-utils" "^7.10.4" 737 | 738 | "@babel/plugin-transform-unicode-regex@^7.10.4": 739 | version "7.10.4" 740 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" 741 | integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== 742 | dependencies: 743 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 744 | "@babel/helper-plugin-utils" "^7.10.4" 745 | 746 | "@babel/preset-env@^7.7.1": 747 | version "7.11.5" 748 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272" 749 | integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== 750 | dependencies: 751 | "@babel/compat-data" "^7.11.0" 752 | "@babel/helper-compilation-targets" "^7.10.4" 753 | "@babel/helper-module-imports" "^7.10.4" 754 | "@babel/helper-plugin-utils" "^7.10.4" 755 | "@babel/plugin-proposal-async-generator-functions" "^7.10.4" 756 | "@babel/plugin-proposal-class-properties" "^7.10.4" 757 | "@babel/plugin-proposal-dynamic-import" "^7.10.4" 758 | "@babel/plugin-proposal-export-namespace-from" "^7.10.4" 759 | "@babel/plugin-proposal-json-strings" "^7.10.4" 760 | "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0" 761 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" 762 | "@babel/plugin-proposal-numeric-separator" "^7.10.4" 763 | "@babel/plugin-proposal-object-rest-spread" "^7.11.0" 764 | "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" 765 | "@babel/plugin-proposal-optional-chaining" "^7.11.0" 766 | "@babel/plugin-proposal-private-methods" "^7.10.4" 767 | "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" 768 | "@babel/plugin-syntax-async-generators" "^7.8.0" 769 | "@babel/plugin-syntax-class-properties" "^7.10.4" 770 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 771 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 772 | "@babel/plugin-syntax-json-strings" "^7.8.0" 773 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 774 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 775 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 776 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 777 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 778 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 779 | "@babel/plugin-syntax-top-level-await" "^7.10.4" 780 | "@babel/plugin-transform-arrow-functions" "^7.10.4" 781 | "@babel/plugin-transform-async-to-generator" "^7.10.4" 782 | "@babel/plugin-transform-block-scoped-functions" "^7.10.4" 783 | "@babel/plugin-transform-block-scoping" "^7.10.4" 784 | "@babel/plugin-transform-classes" "^7.10.4" 785 | "@babel/plugin-transform-computed-properties" "^7.10.4" 786 | "@babel/plugin-transform-destructuring" "^7.10.4" 787 | "@babel/plugin-transform-dotall-regex" "^7.10.4" 788 | "@babel/plugin-transform-duplicate-keys" "^7.10.4" 789 | "@babel/plugin-transform-exponentiation-operator" "^7.10.4" 790 | "@babel/plugin-transform-for-of" "^7.10.4" 791 | "@babel/plugin-transform-function-name" "^7.10.4" 792 | "@babel/plugin-transform-literals" "^7.10.4" 793 | "@babel/plugin-transform-member-expression-literals" "^7.10.4" 794 | "@babel/plugin-transform-modules-amd" "^7.10.4" 795 | "@babel/plugin-transform-modules-commonjs" "^7.10.4" 796 | "@babel/plugin-transform-modules-systemjs" "^7.10.4" 797 | "@babel/plugin-transform-modules-umd" "^7.10.4" 798 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" 799 | "@babel/plugin-transform-new-target" "^7.10.4" 800 | "@babel/plugin-transform-object-super" "^7.10.4" 801 | "@babel/plugin-transform-parameters" "^7.10.4" 802 | "@babel/plugin-transform-property-literals" "^7.10.4" 803 | "@babel/plugin-transform-regenerator" "^7.10.4" 804 | "@babel/plugin-transform-reserved-words" "^7.10.4" 805 | "@babel/plugin-transform-shorthand-properties" "^7.10.4" 806 | "@babel/plugin-transform-spread" "^7.11.0" 807 | "@babel/plugin-transform-sticky-regex" "^7.10.4" 808 | "@babel/plugin-transform-template-literals" "^7.10.4" 809 | "@babel/plugin-transform-typeof-symbol" "^7.10.4" 810 | "@babel/plugin-transform-unicode-escapes" "^7.10.4" 811 | "@babel/plugin-transform-unicode-regex" "^7.10.4" 812 | "@babel/preset-modules" "^0.1.3" 813 | "@babel/types" "^7.11.5" 814 | browserslist "^4.12.0" 815 | core-js-compat "^3.6.2" 816 | invariant "^2.2.2" 817 | levenary "^1.1.1" 818 | semver "^5.5.0" 819 | 820 | "@babel/preset-modules@^0.1.3": 821 | version "0.1.4" 822 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 823 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 824 | dependencies: 825 | "@babel/helper-plugin-utils" "^7.0.0" 826 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 827 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 828 | "@babel/types" "^7.4.4" 829 | esutils "^2.0.2" 830 | 831 | "@babel/register@^7.10.5": 832 | version "7.11.5" 833 | resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.11.5.tgz#79becf89e0ddd0fba8b92bc279bc0f5d2d7ce2ea" 834 | integrity sha512-CAml0ioKX+kOAvBQDHa/+t1fgOt3qkTIz0TrRtRAT6XY0m5qYZXR85k6/sLCNPMGhYDlCFHCYuU0ybTJbvlC6w== 835 | dependencies: 836 | find-cache-dir "^2.0.0" 837 | lodash "^4.17.19" 838 | make-dir "^2.1.0" 839 | pirates "^4.0.0" 840 | source-map-support "^0.5.16" 841 | 842 | "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": 843 | version "7.11.2" 844 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" 845 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== 846 | dependencies: 847 | regenerator-runtime "^0.13.4" 848 | 849 | "@babel/template@^7.10.4": 850 | version "7.10.4" 851 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 852 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 853 | dependencies: 854 | "@babel/code-frame" "^7.10.4" 855 | "@babel/parser" "^7.10.4" 856 | "@babel/types" "^7.10.4" 857 | 858 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5": 859 | version "7.11.5" 860 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" 861 | integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== 862 | dependencies: 863 | "@babel/code-frame" "^7.10.4" 864 | "@babel/generator" "^7.11.5" 865 | "@babel/helper-function-name" "^7.10.4" 866 | "@babel/helper-split-export-declaration" "^7.11.0" 867 | "@babel/parser" "^7.11.5" 868 | "@babel/types" "^7.11.5" 869 | debug "^4.1.0" 870 | globals "^11.1.0" 871 | lodash "^4.17.19" 872 | 873 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.4.4": 874 | version "7.11.5" 875 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" 876 | integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== 877 | dependencies: 878 | "@babel/helper-validator-identifier" "^7.10.4" 879 | lodash "^4.17.19" 880 | to-fast-properties "^2.0.0" 881 | 882 | abbrev@1: 883 | version "1.1.1" 884 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 885 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 886 | 887 | ansi-align@^2.0.0: 888 | version "2.0.0" 889 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 890 | integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 891 | dependencies: 892 | string-width "^2.0.0" 893 | 894 | ansi-regex@^3.0.0: 895 | version "3.0.0" 896 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 897 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 898 | 899 | ansi-styles@^3.2.1: 900 | version "3.2.1" 901 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 902 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 903 | dependencies: 904 | color-convert "^1.9.0" 905 | 906 | anymatch@^2.0.0: 907 | version "2.0.0" 908 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 909 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 910 | dependencies: 911 | micromatch "^3.1.4" 912 | normalize-path "^2.1.1" 913 | 914 | arr-diff@^4.0.0: 915 | version "4.0.0" 916 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 917 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 918 | 919 | arr-flatten@^1.1.0: 920 | version "1.1.0" 921 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 922 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 923 | 924 | arr-union@^3.1.0: 925 | version "3.1.0" 926 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 927 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 928 | 929 | array-unique@^0.3.2: 930 | version "0.3.2" 931 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 932 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 933 | 934 | assign-symbols@^1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 937 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 938 | 939 | async-each@^1.0.1: 940 | version "1.0.3" 941 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 942 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 943 | 944 | atob@^2.1.2: 945 | version "2.1.2" 946 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 947 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 948 | 949 | babel-helper-evaluate-path@^0.5.0: 950 | version "0.5.0" 951 | resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c" 952 | integrity sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA== 953 | 954 | babel-helper-flip-expressions@^0.4.3: 955 | version "0.4.3" 956 | resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd" 957 | integrity sha1-NpZzahKKwYvCUlS19AoizrPB0/0= 958 | 959 | babel-helper-is-nodes-equiv@^0.0.1: 960 | version "0.0.1" 961 | resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" 962 | integrity sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ= 963 | 964 | babel-helper-is-void-0@^0.4.3: 965 | version "0.4.3" 966 | resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e" 967 | integrity sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4= 968 | 969 | babel-helper-mark-eval-scopes@^0.4.3: 970 | version "0.4.3" 971 | resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562" 972 | integrity sha1-0kSjvvmESHJgP/tG4izorN9VFWI= 973 | 974 | babel-helper-remove-or-void@^0.4.3: 975 | version "0.4.3" 976 | resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60" 977 | integrity sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA= 978 | 979 | babel-helper-to-multiple-sequence-expressions@^0.5.0: 980 | version "0.5.0" 981 | resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" 982 | integrity sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== 983 | 984 | babel-plugin-dynamic-import-node@^2.3.3: 985 | version "2.3.3" 986 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 987 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 988 | dependencies: 989 | object.assign "^4.1.0" 990 | 991 | babel-plugin-minify-builtins@^0.5.0: 992 | version "0.5.0" 993 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b" 994 | integrity sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag== 995 | 996 | babel-plugin-minify-constant-folding@^0.5.0: 997 | version "0.5.0" 998 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e" 999 | integrity sha512-Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ== 1000 | dependencies: 1001 | babel-helper-evaluate-path "^0.5.0" 1002 | 1003 | babel-plugin-minify-dead-code-elimination@^0.5.1: 1004 | version "0.5.1" 1005 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f" 1006 | integrity sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg== 1007 | dependencies: 1008 | babel-helper-evaluate-path "^0.5.0" 1009 | babel-helper-mark-eval-scopes "^0.4.3" 1010 | babel-helper-remove-or-void "^0.4.3" 1011 | lodash "^4.17.11" 1012 | 1013 | babel-plugin-minify-flip-comparisons@^0.4.3: 1014 | version "0.4.3" 1015 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a" 1016 | integrity sha1-AMqHDLjxO0XAOLPB68DyJyk8llo= 1017 | dependencies: 1018 | babel-helper-is-void-0 "^0.4.3" 1019 | 1020 | babel-plugin-minify-guarded-expressions@^0.4.4: 1021 | version "0.4.4" 1022 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135" 1023 | integrity sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA== 1024 | dependencies: 1025 | babel-helper-evaluate-path "^0.5.0" 1026 | babel-helper-flip-expressions "^0.4.3" 1027 | 1028 | babel-plugin-minify-infinity@^0.4.3: 1029 | version "0.4.3" 1030 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca" 1031 | integrity sha1-37h2obCKBldjhO8/kuZTumB7Oco= 1032 | 1033 | babel-plugin-minify-mangle-names@^0.5.0: 1034 | version "0.5.0" 1035 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3" 1036 | integrity sha512-3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw== 1037 | dependencies: 1038 | babel-helper-mark-eval-scopes "^0.4.3" 1039 | 1040 | babel-plugin-minify-numeric-literals@^0.4.3: 1041 | version "0.4.3" 1042 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc" 1043 | integrity sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw= 1044 | 1045 | babel-plugin-minify-replace@^0.5.0: 1046 | version "0.5.0" 1047 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c" 1048 | integrity sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q== 1049 | 1050 | babel-plugin-minify-simplify@^0.5.1: 1051 | version "0.5.1" 1052 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a" 1053 | integrity sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A== 1054 | dependencies: 1055 | babel-helper-evaluate-path "^0.5.0" 1056 | babel-helper-flip-expressions "^0.4.3" 1057 | babel-helper-is-nodes-equiv "^0.0.1" 1058 | babel-helper-to-multiple-sequence-expressions "^0.5.0" 1059 | 1060 | babel-plugin-minify-type-constructors@^0.4.3: 1061 | version "0.4.3" 1062 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500" 1063 | integrity sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA= 1064 | dependencies: 1065 | babel-helper-is-void-0 "^0.4.3" 1066 | 1067 | babel-plugin-module-resolver@^4.0.0: 1068 | version "4.0.0" 1069 | resolved "https://registry.yarnpkg.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-4.0.0.tgz#8f3a3d9d48287dc1d3b0d5595113adabd36a847f" 1070 | integrity sha512-3pdEq3PXALilSJ6dnC4wMWr0AZixHRM4utpdpBR9g5QG7B7JwWyukQv7a9hVxkbGFl+nQbrHDqqQOIBtTXTP/Q== 1071 | dependencies: 1072 | find-babel-config "^1.2.0" 1073 | glob "^7.1.6" 1074 | pkg-up "^3.1.0" 1075 | reselect "^4.0.0" 1076 | resolve "^1.13.1" 1077 | 1078 | babel-plugin-transform-inline-consecutive-adds@^0.4.3: 1079 | version "0.4.3" 1080 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1" 1081 | integrity sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE= 1082 | 1083 | babel-plugin-transform-member-expression-literals@^6.9.4: 1084 | version "6.9.4" 1085 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf" 1086 | integrity sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8= 1087 | 1088 | babel-plugin-transform-merge-sibling-variables@^6.9.4: 1089 | version "6.9.4" 1090 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae" 1091 | integrity sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4= 1092 | 1093 | babel-plugin-transform-minify-booleans@^6.9.4: 1094 | version "6.9.4" 1095 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198" 1096 | integrity sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg= 1097 | 1098 | babel-plugin-transform-property-literals@^6.9.4: 1099 | version "6.9.4" 1100 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39" 1101 | integrity sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk= 1102 | dependencies: 1103 | esutils "^2.0.2" 1104 | 1105 | babel-plugin-transform-regexp-constructors@^0.4.3: 1106 | version "0.4.3" 1107 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965" 1108 | integrity sha1-WLd3W2OvzzMyj66aX4j71PsLSWU= 1109 | 1110 | babel-plugin-transform-remove-console@^6.9.4: 1111 | version "6.9.4" 1112 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780" 1113 | integrity sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A= 1114 | 1115 | babel-plugin-transform-remove-debugger@^6.9.4: 1116 | version "6.9.4" 1117 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2" 1118 | integrity sha1-QrcnYxyXl44estGZp67IShgznvI= 1119 | 1120 | babel-plugin-transform-remove-undefined@^0.5.0: 1121 | version "0.5.0" 1122 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd" 1123 | integrity sha512-+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ== 1124 | dependencies: 1125 | babel-helper-evaluate-path "^0.5.0" 1126 | 1127 | babel-plugin-transform-simplify-comparison-operators@^6.9.4: 1128 | version "6.9.4" 1129 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9" 1130 | integrity sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk= 1131 | 1132 | babel-plugin-transform-undefined-to-void@^6.9.4: 1133 | version "6.9.4" 1134 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" 1135 | integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= 1136 | 1137 | babel-preset-minify@^0.5.1: 1138 | version "0.5.1" 1139 | resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f" 1140 | integrity sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg== 1141 | dependencies: 1142 | babel-plugin-minify-builtins "^0.5.0" 1143 | babel-plugin-minify-constant-folding "^0.5.0" 1144 | babel-plugin-minify-dead-code-elimination "^0.5.1" 1145 | babel-plugin-minify-flip-comparisons "^0.4.3" 1146 | babel-plugin-minify-guarded-expressions "^0.4.4" 1147 | babel-plugin-minify-infinity "^0.4.3" 1148 | babel-plugin-minify-mangle-names "^0.5.0" 1149 | babel-plugin-minify-numeric-literals "^0.4.3" 1150 | babel-plugin-minify-replace "^0.5.0" 1151 | babel-plugin-minify-simplify "^0.5.1" 1152 | babel-plugin-minify-type-constructors "^0.4.3" 1153 | babel-plugin-transform-inline-consecutive-adds "^0.4.3" 1154 | babel-plugin-transform-member-expression-literals "^6.9.4" 1155 | babel-plugin-transform-merge-sibling-variables "^6.9.4" 1156 | babel-plugin-transform-minify-booleans "^6.9.4" 1157 | babel-plugin-transform-property-literals "^6.9.4" 1158 | babel-plugin-transform-regexp-constructors "^0.4.3" 1159 | babel-plugin-transform-remove-console "^6.9.4" 1160 | babel-plugin-transform-remove-debugger "^6.9.4" 1161 | babel-plugin-transform-remove-undefined "^0.5.0" 1162 | babel-plugin-transform-simplify-comparison-operators "^6.9.4" 1163 | babel-plugin-transform-undefined-to-void "^6.9.4" 1164 | lodash "^4.17.11" 1165 | 1166 | balanced-match@^1.0.0: 1167 | version "1.0.0" 1168 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1169 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1170 | 1171 | base@^0.11.1: 1172 | version "0.11.2" 1173 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 1174 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 1175 | dependencies: 1176 | cache-base "^1.0.1" 1177 | class-utils "^0.3.5" 1178 | component-emitter "^1.2.1" 1179 | define-property "^1.0.0" 1180 | isobject "^3.0.1" 1181 | mixin-deep "^1.2.0" 1182 | pascalcase "^0.1.1" 1183 | 1184 | binary-extensions@^1.0.0: 1185 | version "1.13.1" 1186 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 1187 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 1188 | 1189 | bindings@^1.5.0: 1190 | version "1.5.0" 1191 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 1192 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 1193 | dependencies: 1194 | file-uri-to-path "1.0.0" 1195 | 1196 | boxen@^1.2.1: 1197 | version "1.3.0" 1198 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 1199 | integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 1200 | dependencies: 1201 | ansi-align "^2.0.0" 1202 | camelcase "^4.0.0" 1203 | chalk "^2.0.1" 1204 | cli-boxes "^1.0.0" 1205 | string-width "^2.0.0" 1206 | term-size "^1.2.0" 1207 | widest-line "^2.0.0" 1208 | 1209 | brace-expansion@^1.1.7: 1210 | version "1.1.11" 1211 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1212 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1213 | dependencies: 1214 | balanced-match "^1.0.0" 1215 | concat-map "0.0.1" 1216 | 1217 | braces@^2.3.1, braces@^2.3.2: 1218 | version "2.3.2" 1219 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1220 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 1221 | dependencies: 1222 | arr-flatten "^1.1.0" 1223 | array-unique "^0.3.2" 1224 | extend-shallow "^2.0.1" 1225 | fill-range "^4.0.0" 1226 | isobject "^3.0.1" 1227 | repeat-element "^1.1.2" 1228 | snapdragon "^0.8.1" 1229 | snapdragon-node "^2.0.1" 1230 | split-string "^3.0.2" 1231 | to-regex "^3.0.1" 1232 | 1233 | browserslist@^4.12.0, browserslist@^4.8.5: 1234 | version "4.14.5" 1235 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015" 1236 | integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA== 1237 | dependencies: 1238 | caniuse-lite "^1.0.30001135" 1239 | electron-to-chromium "^1.3.571" 1240 | escalade "^3.1.0" 1241 | node-releases "^1.1.61" 1242 | 1243 | buffer-from@^1.0.0: 1244 | version "1.1.1" 1245 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1246 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1247 | 1248 | cache-base@^1.0.1: 1249 | version "1.0.1" 1250 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1251 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 1252 | dependencies: 1253 | collection-visit "^1.0.0" 1254 | component-emitter "^1.2.1" 1255 | get-value "^2.0.6" 1256 | has-value "^1.0.0" 1257 | isobject "^3.0.1" 1258 | set-value "^2.0.0" 1259 | to-object-path "^0.3.0" 1260 | union-value "^1.0.0" 1261 | unset-value "^1.0.0" 1262 | 1263 | camelcase@^4.0.0: 1264 | version "4.1.0" 1265 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1266 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 1267 | 1268 | caniuse-lite@^1.0.30001135: 1269 | version "1.0.30001142" 1270 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001142.tgz#a8518fdb5fee03ad95ac9f32a9a1e5999469c250" 1271 | integrity sha512-pDPpn9ankEpBFZXyCv2I4lh1v/ju+bqb78QfKf+w9XgDAFWBwSYPswXqprRdrgQWK0wQnpIbfwRjNHO1HWqvoQ== 1272 | 1273 | capture-stack-trace@^1.0.0: 1274 | version "1.0.1" 1275 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" 1276 | integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== 1277 | 1278 | chalk@^2.0.0, chalk@^2.0.1: 1279 | version "2.4.2" 1280 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1281 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1282 | dependencies: 1283 | ansi-styles "^3.2.1" 1284 | escape-string-regexp "^1.0.5" 1285 | supports-color "^5.3.0" 1286 | 1287 | chokidar@^2.1.8: 1288 | version "2.1.8" 1289 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" 1290 | integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== 1291 | dependencies: 1292 | anymatch "^2.0.0" 1293 | async-each "^1.0.1" 1294 | braces "^2.3.2" 1295 | glob-parent "^3.1.0" 1296 | inherits "^2.0.3" 1297 | is-binary-path "^1.0.0" 1298 | is-glob "^4.0.0" 1299 | normalize-path "^3.0.0" 1300 | path-is-absolute "^1.0.0" 1301 | readdirp "^2.2.1" 1302 | upath "^1.1.1" 1303 | optionalDependencies: 1304 | fsevents "^1.2.7" 1305 | 1306 | ci-info@^1.5.0: 1307 | version "1.6.0" 1308 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" 1309 | integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== 1310 | 1311 | class-utils@^0.3.5: 1312 | version "0.3.6" 1313 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1314 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1315 | dependencies: 1316 | arr-union "^3.1.0" 1317 | define-property "^0.2.5" 1318 | isobject "^3.0.0" 1319 | static-extend "^0.1.1" 1320 | 1321 | cli-boxes@^1.0.0: 1322 | version "1.0.0" 1323 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1324 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 1325 | 1326 | clone@2.x: 1327 | version "2.1.2" 1328 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 1329 | integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= 1330 | 1331 | collection-visit@^1.0.0: 1332 | version "1.0.0" 1333 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1334 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1335 | dependencies: 1336 | map-visit "^1.0.0" 1337 | object-visit "^1.0.0" 1338 | 1339 | color-convert@^1.9.0: 1340 | version "1.9.3" 1341 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1342 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1343 | dependencies: 1344 | color-name "1.1.3" 1345 | 1346 | color-name@1.1.3: 1347 | version "1.1.3" 1348 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1349 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1350 | 1351 | commander@^4.0.1: 1352 | version "4.1.1" 1353 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 1354 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 1355 | 1356 | commondir@^1.0.1: 1357 | version "1.0.1" 1358 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1359 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1360 | 1361 | component-emitter@^1.2.1: 1362 | version "1.3.0" 1363 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1364 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1365 | 1366 | concat-map@0.0.1: 1367 | version "0.0.1" 1368 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1369 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1370 | 1371 | configstore@^3.0.0: 1372 | version "3.1.5" 1373 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f" 1374 | integrity sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA== 1375 | dependencies: 1376 | dot-prop "^4.2.1" 1377 | graceful-fs "^4.1.2" 1378 | make-dir "^1.0.0" 1379 | unique-string "^1.0.0" 1380 | write-file-atomic "^2.0.0" 1381 | xdg-basedir "^3.0.0" 1382 | 1383 | convert-source-map@^1.1.0, convert-source-map@^1.7.0: 1384 | version "1.7.0" 1385 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1386 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1387 | dependencies: 1388 | safe-buffer "~5.1.1" 1389 | 1390 | copy-descriptor@^0.1.0: 1391 | version "0.1.1" 1392 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1393 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1394 | 1395 | core-js-compat@^3.6.2: 1396 | version "3.6.5" 1397 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" 1398 | integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== 1399 | dependencies: 1400 | browserslist "^4.8.5" 1401 | semver "7.0.0" 1402 | 1403 | core-js@^3.2.1: 1404 | version "3.6.5" 1405 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 1406 | integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 1407 | 1408 | core-util-is@~1.0.0: 1409 | version "1.0.2" 1410 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1411 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1412 | 1413 | create-error-class@^3.0.0: 1414 | version "3.0.2" 1415 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1416 | integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= 1417 | dependencies: 1418 | capture-stack-trace "^1.0.0" 1419 | 1420 | cross-spawn@^5.0.1: 1421 | version "5.1.0" 1422 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1423 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1424 | dependencies: 1425 | lru-cache "^4.0.1" 1426 | shebang-command "^1.2.0" 1427 | which "^1.2.9" 1428 | 1429 | crypto-random-string@^1.0.0: 1430 | version "1.0.0" 1431 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1432 | integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= 1433 | 1434 | debug@^2.2.0, debug@^2.3.3: 1435 | version "2.6.9" 1436 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1437 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1438 | dependencies: 1439 | ms "2.0.0" 1440 | 1441 | debug@^3.2.6: 1442 | version "3.2.6" 1443 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1444 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 1445 | dependencies: 1446 | ms "^2.1.1" 1447 | 1448 | debug@^4.1.0: 1449 | version "4.2.0" 1450 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" 1451 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== 1452 | dependencies: 1453 | ms "2.1.2" 1454 | 1455 | decode-uri-component@^0.2.0: 1456 | version "0.2.0" 1457 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1458 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1459 | 1460 | deep-extend@^0.6.0: 1461 | version "0.6.0" 1462 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1463 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1464 | 1465 | define-properties@^1.1.3: 1466 | version "1.1.3" 1467 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1468 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1469 | dependencies: 1470 | object-keys "^1.0.12" 1471 | 1472 | define-property@^0.2.5: 1473 | version "0.2.5" 1474 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1475 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1476 | dependencies: 1477 | is-descriptor "^0.1.0" 1478 | 1479 | define-property@^1.0.0: 1480 | version "1.0.0" 1481 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1482 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1483 | dependencies: 1484 | is-descriptor "^1.0.0" 1485 | 1486 | define-property@^2.0.2: 1487 | version "2.0.2" 1488 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1489 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1490 | dependencies: 1491 | is-descriptor "^1.0.2" 1492 | isobject "^3.0.1" 1493 | 1494 | dot-prop@^4.2.1: 1495 | version "4.2.1" 1496 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4" 1497 | integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ== 1498 | dependencies: 1499 | is-obj "^1.0.0" 1500 | 1501 | duplexer3@^0.1.4: 1502 | version "0.1.4" 1503 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1504 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 1505 | 1506 | electron-to-chromium@^1.3.571: 1507 | version "1.3.576" 1508 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.576.tgz#2e70234484e03d7c7e90310d7d79fd3775379c34" 1509 | integrity sha512-uSEI0XZ//5ic+0NdOqlxp0liCD44ck20OAGyLMSymIWTEAtHKVJi6JM18acOnRgUgX7Q65QqnI+sNncNvIy8ew== 1510 | 1511 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 1512 | version "1.17.7" 1513 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 1514 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 1515 | dependencies: 1516 | es-to-primitive "^1.2.1" 1517 | function-bind "^1.1.1" 1518 | has "^1.0.3" 1519 | has-symbols "^1.0.1" 1520 | is-callable "^1.2.2" 1521 | is-regex "^1.1.1" 1522 | object-inspect "^1.8.0" 1523 | object-keys "^1.1.1" 1524 | object.assign "^4.1.1" 1525 | string.prototype.trimend "^1.0.1" 1526 | string.prototype.trimstart "^1.0.1" 1527 | 1528 | es-abstract@^1.18.0-next.0: 1529 | version "1.18.0-next.1" 1530 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 1531 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 1532 | dependencies: 1533 | es-to-primitive "^1.2.1" 1534 | function-bind "^1.1.1" 1535 | has "^1.0.3" 1536 | has-symbols "^1.0.1" 1537 | is-callable "^1.2.2" 1538 | is-negative-zero "^2.0.0" 1539 | is-regex "^1.1.1" 1540 | object-inspect "^1.8.0" 1541 | object-keys "^1.1.1" 1542 | object.assign "^4.1.1" 1543 | string.prototype.trimend "^1.0.1" 1544 | string.prototype.trimstart "^1.0.1" 1545 | 1546 | es-to-primitive@^1.2.1: 1547 | version "1.2.1" 1548 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1549 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1550 | dependencies: 1551 | is-callable "^1.1.4" 1552 | is-date-object "^1.0.1" 1553 | is-symbol "^1.0.2" 1554 | 1555 | escalade@^3.1.0: 1556 | version "3.1.0" 1557 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e" 1558 | integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig== 1559 | 1560 | escape-string-regexp@^1.0.5: 1561 | version "1.0.5" 1562 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1563 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1564 | 1565 | esutils@^2.0.2: 1566 | version "2.0.3" 1567 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1568 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1569 | 1570 | execa@^0.7.0: 1571 | version "0.7.0" 1572 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1573 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 1574 | dependencies: 1575 | cross-spawn "^5.0.1" 1576 | get-stream "^3.0.0" 1577 | is-stream "^1.1.0" 1578 | npm-run-path "^2.0.0" 1579 | p-finally "^1.0.0" 1580 | signal-exit "^3.0.0" 1581 | strip-eof "^1.0.0" 1582 | 1583 | expand-brackets@^2.1.4: 1584 | version "2.1.4" 1585 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1586 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1587 | dependencies: 1588 | debug "^2.3.3" 1589 | define-property "^0.2.5" 1590 | extend-shallow "^2.0.1" 1591 | posix-character-classes "^0.1.0" 1592 | regex-not "^1.0.0" 1593 | snapdragon "^0.8.1" 1594 | to-regex "^3.0.1" 1595 | 1596 | extend-shallow@^2.0.1: 1597 | version "2.0.1" 1598 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1599 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1600 | dependencies: 1601 | is-extendable "^0.1.0" 1602 | 1603 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1604 | version "3.0.2" 1605 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1606 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1607 | dependencies: 1608 | assign-symbols "^1.0.0" 1609 | is-extendable "^1.0.1" 1610 | 1611 | extglob@^2.0.4: 1612 | version "2.0.4" 1613 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1614 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1615 | dependencies: 1616 | array-unique "^0.3.2" 1617 | define-property "^1.0.0" 1618 | expand-brackets "^2.1.4" 1619 | extend-shallow "^2.0.1" 1620 | fragment-cache "^0.2.1" 1621 | regex-not "^1.0.0" 1622 | snapdragon "^0.8.1" 1623 | to-regex "^3.0.1" 1624 | 1625 | file-uri-to-path@1.0.0: 1626 | version "1.0.0" 1627 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1628 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 1629 | 1630 | fill-range@^4.0.0: 1631 | version "4.0.0" 1632 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1633 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1634 | dependencies: 1635 | extend-shallow "^2.0.1" 1636 | is-number "^3.0.0" 1637 | repeat-string "^1.6.1" 1638 | to-regex-range "^2.1.0" 1639 | 1640 | find-babel-config@^1.2.0: 1641 | version "1.2.0" 1642 | resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2" 1643 | integrity sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA== 1644 | dependencies: 1645 | json5 "^0.5.1" 1646 | path-exists "^3.0.0" 1647 | 1648 | find-cache-dir@^2.0.0: 1649 | version "2.1.0" 1650 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 1651 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== 1652 | dependencies: 1653 | commondir "^1.0.1" 1654 | make-dir "^2.0.0" 1655 | pkg-dir "^3.0.0" 1656 | 1657 | find-up@^3.0.0: 1658 | version "3.0.0" 1659 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1660 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 1661 | dependencies: 1662 | locate-path "^3.0.0" 1663 | 1664 | for-in@^1.0.2: 1665 | version "1.0.2" 1666 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1667 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1668 | 1669 | fragment-cache@^0.2.1: 1670 | version "0.2.1" 1671 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1672 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1673 | dependencies: 1674 | map-cache "^0.2.2" 1675 | 1676 | fs-readdir-recursive@^1.1.0: 1677 | version "1.1.0" 1678 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1679 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== 1680 | 1681 | fs.realpath@^1.0.0: 1682 | version "1.0.0" 1683 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1684 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1685 | 1686 | fsevents@^1.2.7: 1687 | version "1.2.13" 1688 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" 1689 | integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== 1690 | dependencies: 1691 | bindings "^1.5.0" 1692 | nan "^2.12.1" 1693 | 1694 | function-bind@^1.1.1: 1695 | version "1.1.1" 1696 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1697 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1698 | 1699 | gensync@^1.0.0-beta.1: 1700 | version "1.0.0-beta.1" 1701 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 1702 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== 1703 | 1704 | get-stream@^3.0.0: 1705 | version "3.0.0" 1706 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1707 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1708 | 1709 | get-value@^2.0.3, get-value@^2.0.6: 1710 | version "2.0.6" 1711 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1712 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1713 | 1714 | glob-parent@^3.1.0: 1715 | version "3.1.0" 1716 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1717 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 1718 | dependencies: 1719 | is-glob "^3.1.0" 1720 | path-dirname "^1.0.0" 1721 | 1722 | glob@^7.0.0, glob@^7.1.3, glob@^7.1.6: 1723 | version "7.1.6" 1724 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1725 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1726 | dependencies: 1727 | fs.realpath "^1.0.0" 1728 | inflight "^1.0.4" 1729 | inherits "2" 1730 | minimatch "^3.0.4" 1731 | once "^1.3.0" 1732 | path-is-absolute "^1.0.0" 1733 | 1734 | global-dirs@^0.1.0: 1735 | version "0.1.1" 1736 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1737 | integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= 1738 | dependencies: 1739 | ini "^1.3.4" 1740 | 1741 | globals@^11.1.0: 1742 | version "11.12.0" 1743 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1744 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1745 | 1746 | got@^6.7.1: 1747 | version "6.7.1" 1748 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1749 | integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= 1750 | dependencies: 1751 | create-error-class "^3.0.0" 1752 | duplexer3 "^0.1.4" 1753 | get-stream "^3.0.0" 1754 | is-redirect "^1.0.0" 1755 | is-retry-allowed "^1.0.0" 1756 | is-stream "^1.0.0" 1757 | lowercase-keys "^1.0.0" 1758 | safe-buffer "^5.0.1" 1759 | timed-out "^4.0.0" 1760 | unzip-response "^2.0.1" 1761 | url-parse-lax "^1.0.0" 1762 | 1763 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1764 | version "4.2.4" 1765 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1766 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1767 | 1768 | handlebars@^4.7.6: 1769 | version "4.7.6" 1770 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 1771 | integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== 1772 | dependencies: 1773 | minimist "^1.2.5" 1774 | neo-async "^2.6.0" 1775 | source-map "^0.6.1" 1776 | wordwrap "^1.0.0" 1777 | optionalDependencies: 1778 | uglify-js "^3.1.4" 1779 | 1780 | has-flag@^3.0.0: 1781 | version "3.0.0" 1782 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1783 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1784 | 1785 | has-symbols@^1.0.1: 1786 | version "1.0.1" 1787 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1788 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1789 | 1790 | has-value@^0.3.1: 1791 | version "0.3.1" 1792 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1793 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1794 | dependencies: 1795 | get-value "^2.0.3" 1796 | has-values "^0.1.4" 1797 | isobject "^2.0.0" 1798 | 1799 | has-value@^1.0.0: 1800 | version "1.0.0" 1801 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1802 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1803 | dependencies: 1804 | get-value "^2.0.6" 1805 | has-values "^1.0.0" 1806 | isobject "^3.0.0" 1807 | 1808 | has-values@^0.1.4: 1809 | version "0.1.4" 1810 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1811 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1812 | 1813 | has-values@^1.0.0: 1814 | version "1.0.0" 1815 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1816 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1817 | dependencies: 1818 | is-number "^3.0.0" 1819 | kind-of "^4.0.0" 1820 | 1821 | has@^1.0.3: 1822 | version "1.0.3" 1823 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1824 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1825 | dependencies: 1826 | function-bind "^1.1.1" 1827 | 1828 | homedir-polyfill@^1.0.1: 1829 | version "1.0.3" 1830 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 1831 | integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 1832 | dependencies: 1833 | parse-passwd "^1.0.0" 1834 | 1835 | ignore-by-default@^1.0.1: 1836 | version "1.0.1" 1837 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1838 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 1839 | 1840 | import-lazy@^2.1.0: 1841 | version "2.1.0" 1842 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1843 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 1844 | 1845 | imurmurhash@^0.1.4: 1846 | version "0.1.4" 1847 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1848 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1849 | 1850 | inflight@^1.0.4: 1851 | version "1.0.6" 1852 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1853 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1854 | dependencies: 1855 | once "^1.3.0" 1856 | wrappy "1" 1857 | 1858 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1859 | version "2.0.4" 1860 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1861 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1862 | 1863 | ini@^1.3.4, ini@~1.3.0: 1864 | version "1.3.5" 1865 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1866 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1867 | 1868 | invariant@^2.2.2, invariant@^2.2.4: 1869 | version "2.2.4" 1870 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1871 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1872 | dependencies: 1873 | loose-envify "^1.0.0" 1874 | 1875 | is-accessor-descriptor@^0.1.6: 1876 | version "0.1.6" 1877 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1878 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1879 | dependencies: 1880 | kind-of "^3.0.2" 1881 | 1882 | is-accessor-descriptor@^1.0.0: 1883 | version "1.0.0" 1884 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1885 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1886 | dependencies: 1887 | kind-of "^6.0.0" 1888 | 1889 | is-binary-path@^1.0.0: 1890 | version "1.0.1" 1891 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1892 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1893 | dependencies: 1894 | binary-extensions "^1.0.0" 1895 | 1896 | is-buffer@^1.1.5: 1897 | version "1.1.6" 1898 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1899 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1900 | 1901 | is-callable@^1.1.4, is-callable@^1.2.2: 1902 | version "1.2.2" 1903 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 1904 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 1905 | 1906 | is-ci@^1.0.10: 1907 | version "1.2.1" 1908 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" 1909 | integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== 1910 | dependencies: 1911 | ci-info "^1.5.0" 1912 | 1913 | is-data-descriptor@^0.1.4: 1914 | version "0.1.4" 1915 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1916 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1917 | dependencies: 1918 | kind-of "^3.0.2" 1919 | 1920 | is-data-descriptor@^1.0.0: 1921 | version "1.0.0" 1922 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1923 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1924 | dependencies: 1925 | kind-of "^6.0.0" 1926 | 1927 | is-date-object@^1.0.1: 1928 | version "1.0.2" 1929 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1930 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1931 | 1932 | is-descriptor@^0.1.0: 1933 | version "0.1.6" 1934 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1935 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1936 | dependencies: 1937 | is-accessor-descriptor "^0.1.6" 1938 | is-data-descriptor "^0.1.4" 1939 | kind-of "^5.0.0" 1940 | 1941 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1942 | version "1.0.2" 1943 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1944 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1945 | dependencies: 1946 | is-accessor-descriptor "^1.0.0" 1947 | is-data-descriptor "^1.0.0" 1948 | kind-of "^6.0.2" 1949 | 1950 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1951 | version "0.1.1" 1952 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1953 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1954 | 1955 | is-extendable@^1.0.1: 1956 | version "1.0.1" 1957 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1958 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1959 | dependencies: 1960 | is-plain-object "^2.0.4" 1961 | 1962 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1963 | version "2.1.1" 1964 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1965 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1966 | 1967 | is-fullwidth-code-point@^2.0.0: 1968 | version "2.0.0" 1969 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1970 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1971 | 1972 | is-glob@^3.1.0: 1973 | version "3.1.0" 1974 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1975 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 1976 | dependencies: 1977 | is-extglob "^2.1.0" 1978 | 1979 | is-glob@^4.0.0: 1980 | version "4.0.1" 1981 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1982 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1983 | dependencies: 1984 | is-extglob "^2.1.1" 1985 | 1986 | is-installed-globally@^0.1.0: 1987 | version "0.1.0" 1988 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1989 | integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= 1990 | dependencies: 1991 | global-dirs "^0.1.0" 1992 | is-path-inside "^1.0.0" 1993 | 1994 | is-negative-zero@^2.0.0: 1995 | version "2.0.0" 1996 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 1997 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= 1998 | 1999 | is-npm@^1.0.0: 2000 | version "1.0.0" 2001 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2002 | integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= 2003 | 2004 | is-number@^3.0.0: 2005 | version "3.0.0" 2006 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2007 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 2008 | dependencies: 2009 | kind-of "^3.0.2" 2010 | 2011 | is-obj@^1.0.0: 2012 | version "1.0.1" 2013 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2014 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 2015 | 2016 | is-path-inside@^1.0.0: 2017 | version "1.0.1" 2018 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2019 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= 2020 | dependencies: 2021 | path-is-inside "^1.0.1" 2022 | 2023 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2024 | version "2.0.4" 2025 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2026 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 2027 | dependencies: 2028 | isobject "^3.0.1" 2029 | 2030 | is-redirect@^1.0.0: 2031 | version "1.0.0" 2032 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2033 | integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= 2034 | 2035 | is-regex@^1.1.1: 2036 | version "1.1.1" 2037 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 2038 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 2039 | dependencies: 2040 | has-symbols "^1.0.1" 2041 | 2042 | is-retry-allowed@^1.0.0: 2043 | version "1.2.0" 2044 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 2045 | integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== 2046 | 2047 | is-stream@^1.0.0, is-stream@^1.1.0: 2048 | version "1.1.0" 2049 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2050 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 2051 | 2052 | is-symbol@^1.0.2: 2053 | version "1.0.3" 2054 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 2055 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 2056 | dependencies: 2057 | has-symbols "^1.0.1" 2058 | 2059 | is-windows@^1.0.2: 2060 | version "1.0.2" 2061 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2062 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 2063 | 2064 | isarray@1.0.0, isarray@~1.0.0: 2065 | version "1.0.0" 2066 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2067 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 2068 | 2069 | isexe@^2.0.0: 2070 | version "2.0.0" 2071 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2072 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2073 | 2074 | isobject@^2.0.0: 2075 | version "2.1.0" 2076 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2077 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2078 | dependencies: 2079 | isarray "1.0.0" 2080 | 2081 | isobject@^3.0.0, isobject@^3.0.1: 2082 | version "3.0.1" 2083 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2084 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2085 | 2086 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2087 | version "4.0.0" 2088 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2089 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2090 | 2091 | jsesc@^2.5.1: 2092 | version "2.5.2" 2093 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2094 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2095 | 2096 | jsesc@~0.5.0: 2097 | version "0.5.0" 2098 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2099 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2100 | 2101 | json5@^0.5.1: 2102 | version "0.5.1" 2103 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2104 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= 2105 | 2106 | json5@^2.1.2: 2107 | version "2.1.3" 2108 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 2109 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 2110 | dependencies: 2111 | minimist "^1.2.5" 2112 | 2113 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2114 | version "3.2.2" 2115 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2116 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2117 | dependencies: 2118 | is-buffer "^1.1.5" 2119 | 2120 | kind-of@^4.0.0: 2121 | version "4.0.0" 2122 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2123 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2124 | dependencies: 2125 | is-buffer "^1.1.5" 2126 | 2127 | kind-of@^5.0.0: 2128 | version "5.1.0" 2129 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2130 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2131 | 2132 | kind-of@^6.0.0, kind-of@^6.0.2: 2133 | version "6.0.3" 2134 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2135 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2136 | 2137 | latest-version@^3.0.0: 2138 | version "3.1.0" 2139 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2140 | integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= 2141 | dependencies: 2142 | package-json "^4.0.0" 2143 | 2144 | leven@^3.1.0: 2145 | version "3.1.0" 2146 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2147 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2148 | 2149 | levenary@^1.1.1: 2150 | version "1.1.1" 2151 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" 2152 | integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== 2153 | dependencies: 2154 | leven "^3.1.0" 2155 | 2156 | locate-path@^3.0.0: 2157 | version "3.0.0" 2158 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2159 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 2160 | dependencies: 2161 | p-locate "^3.0.0" 2162 | path-exists "^3.0.0" 2163 | 2164 | lodash@^4.17.11, lodash@^4.17.19: 2165 | version "4.17.20" 2166 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 2167 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 2168 | 2169 | loose-envify@^1.0.0: 2170 | version "1.4.0" 2171 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2172 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2173 | dependencies: 2174 | js-tokens "^3.0.0 || ^4.0.0" 2175 | 2176 | lowercase-keys@^1.0.0: 2177 | version "1.0.1" 2178 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 2179 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 2180 | 2181 | lru-cache@^4.0.1: 2182 | version "4.1.5" 2183 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2184 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 2185 | dependencies: 2186 | pseudomap "^1.0.2" 2187 | yallist "^2.1.2" 2188 | 2189 | make-dir@^1.0.0: 2190 | version "1.3.0" 2191 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2192 | integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== 2193 | dependencies: 2194 | pify "^3.0.0" 2195 | 2196 | make-dir@^2.0.0, make-dir@^2.1.0: 2197 | version "2.1.0" 2198 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2199 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 2200 | dependencies: 2201 | pify "^4.0.1" 2202 | semver "^5.6.0" 2203 | 2204 | map-cache@^0.2.2: 2205 | version "0.2.2" 2206 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2207 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2208 | 2209 | map-visit@^1.0.0: 2210 | version "1.0.0" 2211 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2212 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2213 | dependencies: 2214 | object-visit "^1.0.0" 2215 | 2216 | micromatch@^3.1.10, micromatch@^3.1.4: 2217 | version "3.1.10" 2218 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2219 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2220 | dependencies: 2221 | arr-diff "^4.0.0" 2222 | array-unique "^0.3.2" 2223 | braces "^2.3.1" 2224 | define-property "^2.0.2" 2225 | extend-shallow "^3.0.2" 2226 | extglob "^2.0.4" 2227 | fragment-cache "^0.2.1" 2228 | kind-of "^6.0.2" 2229 | nanomatch "^1.2.9" 2230 | object.pick "^1.3.0" 2231 | regex-not "^1.0.0" 2232 | snapdragon "^0.8.1" 2233 | to-regex "^3.0.2" 2234 | 2235 | minimatch@^3.0.4: 2236 | version "3.0.4" 2237 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2238 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2239 | dependencies: 2240 | brace-expansion "^1.1.7" 2241 | 2242 | minimist@^1.2.0, minimist@^1.2.5: 2243 | version "1.2.5" 2244 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2245 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2246 | 2247 | mixin-deep@^1.2.0: 2248 | version "1.3.2" 2249 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2250 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2251 | dependencies: 2252 | for-in "^1.0.2" 2253 | is-extendable "^1.0.1" 2254 | 2255 | ms@2.0.0: 2256 | version "2.0.0" 2257 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2258 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2259 | 2260 | ms@2.1.2, ms@^2.1.1: 2261 | version "2.1.2" 2262 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2263 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2264 | 2265 | nan@^2.12.1: 2266 | version "2.14.1" 2267 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" 2268 | integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== 2269 | 2270 | nanomatch@^1.2.9: 2271 | version "1.2.13" 2272 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2273 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2274 | dependencies: 2275 | arr-diff "^4.0.0" 2276 | array-unique "^0.3.2" 2277 | define-property "^2.0.2" 2278 | extend-shallow "^3.0.2" 2279 | fragment-cache "^0.2.1" 2280 | is-windows "^1.0.2" 2281 | kind-of "^6.0.2" 2282 | object.pick "^1.3.0" 2283 | regex-not "^1.0.0" 2284 | snapdragon "^0.8.1" 2285 | to-regex "^3.0.1" 2286 | 2287 | neo-async@^2.6.0: 2288 | version "2.6.2" 2289 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2290 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 2291 | 2292 | node-cache@^5.1.2: 2293 | version "5.1.2" 2294 | resolved "https://registry.yarnpkg.com/node-cache/-/node-cache-5.1.2.tgz#f264dc2ccad0a780e76253a694e9fd0ed19c398d" 2295 | integrity sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg== 2296 | dependencies: 2297 | clone "2.x" 2298 | 2299 | node-environment-flags@^1.0.5: 2300 | version "1.0.6" 2301 | resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" 2302 | integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== 2303 | dependencies: 2304 | object.getownpropertydescriptors "^2.0.3" 2305 | semver "^5.7.0" 2306 | 2307 | node-fetch@^2.6.1: 2308 | version "2.6.1" 2309 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 2310 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 2311 | 2312 | node-modules-regexp@^1.0.0: 2313 | version "1.0.0" 2314 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2315 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 2316 | 2317 | node-releases@^1.1.61: 2318 | version "1.1.61" 2319 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e" 2320 | integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g== 2321 | 2322 | nodemon@^1.19.4: 2323 | version "1.19.4" 2324 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.19.4.tgz#56db5c607408e0fdf8920d2b444819af1aae0971" 2325 | integrity sha512-VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ== 2326 | dependencies: 2327 | chokidar "^2.1.8" 2328 | debug "^3.2.6" 2329 | ignore-by-default "^1.0.1" 2330 | minimatch "^3.0.4" 2331 | pstree.remy "^1.1.7" 2332 | semver "^5.7.1" 2333 | supports-color "^5.5.0" 2334 | touch "^3.1.0" 2335 | undefsafe "^2.0.2" 2336 | update-notifier "^2.5.0" 2337 | 2338 | nopt@~1.0.10: 2339 | version "1.0.10" 2340 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2341 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 2342 | dependencies: 2343 | abbrev "1" 2344 | 2345 | normalize-path@^2.1.1: 2346 | version "2.1.1" 2347 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2348 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2349 | dependencies: 2350 | remove-trailing-separator "^1.0.1" 2351 | 2352 | normalize-path@^3.0.0: 2353 | version "3.0.0" 2354 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2355 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2356 | 2357 | npm-run-path@^2.0.0: 2358 | version "2.0.2" 2359 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2360 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2361 | dependencies: 2362 | path-key "^2.0.0" 2363 | 2364 | object-copy@^0.1.0: 2365 | version "0.1.0" 2366 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2367 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2368 | dependencies: 2369 | copy-descriptor "^0.1.0" 2370 | define-property "^0.2.5" 2371 | kind-of "^3.0.3" 2372 | 2373 | object-inspect@^1.8.0: 2374 | version "1.8.0" 2375 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2376 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2377 | 2378 | object-keys@^1.0.12, object-keys@^1.1.1: 2379 | version "1.1.1" 2380 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2381 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2382 | 2383 | object-visit@^1.0.0: 2384 | version "1.0.1" 2385 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2386 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2387 | dependencies: 2388 | isobject "^3.0.0" 2389 | 2390 | object.assign@^4.1.0, object.assign@^4.1.1: 2391 | version "4.1.1" 2392 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" 2393 | integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA== 2394 | dependencies: 2395 | define-properties "^1.1.3" 2396 | es-abstract "^1.18.0-next.0" 2397 | has-symbols "^1.0.1" 2398 | object-keys "^1.1.1" 2399 | 2400 | object.getownpropertydescriptors@^2.0.3: 2401 | version "2.1.0" 2402 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" 2403 | integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== 2404 | dependencies: 2405 | define-properties "^1.1.3" 2406 | es-abstract "^1.17.0-next.1" 2407 | 2408 | object.pick@^1.3.0: 2409 | version "1.3.0" 2410 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2411 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2412 | dependencies: 2413 | isobject "^3.0.1" 2414 | 2415 | once@^1.3.0: 2416 | version "1.4.0" 2417 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2418 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2419 | dependencies: 2420 | wrappy "1" 2421 | 2422 | p-finally@^1.0.0: 2423 | version "1.0.0" 2424 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2425 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2426 | 2427 | p-limit@^2.0.0: 2428 | version "2.3.0" 2429 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2430 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2431 | dependencies: 2432 | p-try "^2.0.0" 2433 | 2434 | p-locate@^3.0.0: 2435 | version "3.0.0" 2436 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2437 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 2438 | dependencies: 2439 | p-limit "^2.0.0" 2440 | 2441 | p-try@^2.0.0: 2442 | version "2.2.0" 2443 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2444 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2445 | 2446 | package-json@^4.0.0: 2447 | version "4.0.1" 2448 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2449 | integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= 2450 | dependencies: 2451 | got "^6.7.1" 2452 | registry-auth-token "^3.0.1" 2453 | registry-url "^3.0.3" 2454 | semver "^5.1.0" 2455 | 2456 | parse-passwd@^1.0.0: 2457 | version "1.0.0" 2458 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2459 | integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= 2460 | 2461 | pascalcase@^0.1.1: 2462 | version "0.1.1" 2463 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2464 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2465 | 2466 | path-dirname@^1.0.0: 2467 | version "1.0.2" 2468 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2469 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2470 | 2471 | path-exists@^3.0.0: 2472 | version "3.0.0" 2473 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2474 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2475 | 2476 | path-is-absolute@^1.0.0: 2477 | version "1.0.1" 2478 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2479 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2480 | 2481 | path-is-inside@^1.0.1: 2482 | version "1.0.2" 2483 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2484 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 2485 | 2486 | path-key@^2.0.0: 2487 | version "2.0.1" 2488 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2489 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2490 | 2491 | path-parse@^1.0.6: 2492 | version "1.0.6" 2493 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2494 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2495 | 2496 | pify@^3.0.0: 2497 | version "3.0.0" 2498 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2499 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2500 | 2501 | pify@^4.0.1: 2502 | version "4.0.1" 2503 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2504 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2505 | 2506 | pirates@^4.0.0: 2507 | version "4.0.1" 2508 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 2509 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 2510 | dependencies: 2511 | node-modules-regexp "^1.0.0" 2512 | 2513 | pkg-dir@^3.0.0: 2514 | version "3.0.0" 2515 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 2516 | integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== 2517 | dependencies: 2518 | find-up "^3.0.0" 2519 | 2520 | pkg-up@^3.1.0: 2521 | version "3.1.0" 2522 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" 2523 | integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== 2524 | dependencies: 2525 | find-up "^3.0.0" 2526 | 2527 | posix-character-classes@^0.1.0: 2528 | version "0.1.1" 2529 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2530 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2531 | 2532 | prepend-http@^1.0.1: 2533 | version "1.0.4" 2534 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2535 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 2536 | 2537 | process-nextick-args@~2.0.0: 2538 | version "2.0.1" 2539 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2540 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2541 | 2542 | pseudomap@^1.0.2: 2543 | version "1.0.2" 2544 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2545 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2546 | 2547 | pstree.remy@^1.1.7: 2548 | version "1.1.8" 2549 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 2550 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 2551 | 2552 | rc@^1.0.1, rc@^1.1.6: 2553 | version "1.2.8" 2554 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2555 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2556 | dependencies: 2557 | deep-extend "^0.6.0" 2558 | ini "~1.3.0" 2559 | minimist "^1.2.0" 2560 | strip-json-comments "~2.0.1" 2561 | 2562 | readable-stream@^2.0.2: 2563 | version "2.3.7" 2564 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2565 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 2566 | dependencies: 2567 | core-util-is "~1.0.0" 2568 | inherits "~2.0.3" 2569 | isarray "~1.0.0" 2570 | process-nextick-args "~2.0.0" 2571 | safe-buffer "~5.1.1" 2572 | string_decoder "~1.1.1" 2573 | util-deprecate "~1.0.1" 2574 | 2575 | readdirp@^2.2.1: 2576 | version "2.2.1" 2577 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2578 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2579 | dependencies: 2580 | graceful-fs "^4.1.11" 2581 | micromatch "^3.1.10" 2582 | readable-stream "^2.0.2" 2583 | 2584 | regenerate-unicode-properties@^8.2.0: 2585 | version "8.2.0" 2586 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2587 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2588 | dependencies: 2589 | regenerate "^1.4.0" 2590 | 2591 | regenerate@^1.4.0: 2592 | version "1.4.1" 2593 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" 2594 | integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== 2595 | 2596 | regenerator-runtime@^0.13.4: 2597 | version "0.13.7" 2598 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 2599 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 2600 | 2601 | regenerator-transform@^0.14.2: 2602 | version "0.14.5" 2603 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2604 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2605 | dependencies: 2606 | "@babel/runtime" "^7.8.4" 2607 | 2608 | regex-not@^1.0.0, regex-not@^1.0.2: 2609 | version "1.0.2" 2610 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2611 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2612 | dependencies: 2613 | extend-shallow "^3.0.2" 2614 | safe-regex "^1.1.0" 2615 | 2616 | regexpu-core@^4.7.0: 2617 | version "4.7.1" 2618 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 2619 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 2620 | dependencies: 2621 | regenerate "^1.4.0" 2622 | regenerate-unicode-properties "^8.2.0" 2623 | regjsgen "^0.5.1" 2624 | regjsparser "^0.6.4" 2625 | unicode-match-property-ecmascript "^1.0.4" 2626 | unicode-match-property-value-ecmascript "^1.2.0" 2627 | 2628 | registry-auth-token@^3.0.1: 2629 | version "3.4.0" 2630 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" 2631 | integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== 2632 | dependencies: 2633 | rc "^1.1.6" 2634 | safe-buffer "^5.0.1" 2635 | 2636 | registry-url@^3.0.3: 2637 | version "3.1.0" 2638 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2639 | integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= 2640 | dependencies: 2641 | rc "^1.0.1" 2642 | 2643 | regjsgen@^0.5.1: 2644 | version "0.5.2" 2645 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2646 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2647 | 2648 | regjsparser@^0.6.4: 2649 | version "0.6.4" 2650 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 2651 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 2652 | dependencies: 2653 | jsesc "~0.5.0" 2654 | 2655 | remove-trailing-separator@^1.0.1: 2656 | version "1.1.0" 2657 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2658 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2659 | 2660 | repeat-element@^1.1.2: 2661 | version "1.1.3" 2662 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2663 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2664 | 2665 | repeat-string@^1.6.1: 2666 | version "1.6.1" 2667 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2668 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2669 | 2670 | reselect@^4.0.0: 2671 | version "4.0.0" 2672 | resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" 2673 | integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== 2674 | 2675 | resolve-url@^0.2.1: 2676 | version "0.2.1" 2677 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2678 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2679 | 2680 | resolve@^1.13.1, resolve@^1.3.2, resolve@^1.8.1: 2681 | version "1.17.0" 2682 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 2683 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 2684 | dependencies: 2685 | path-parse "^1.0.6" 2686 | 2687 | ret@~0.1.10: 2688 | version "0.1.15" 2689 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2690 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2691 | 2692 | rimraf@^3.0.0: 2693 | version "3.0.2" 2694 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2695 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2696 | dependencies: 2697 | glob "^7.1.3" 2698 | 2699 | safe-buffer@^5.0.1: 2700 | version "5.2.1" 2701 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2702 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2703 | 2704 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2705 | version "5.1.2" 2706 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2707 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2708 | 2709 | safe-regex@^1.1.0: 2710 | version "1.1.0" 2711 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2712 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2713 | dependencies: 2714 | ret "~0.1.10" 2715 | 2716 | semver-diff@^2.0.0: 2717 | version "2.1.0" 2718 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2719 | integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= 2720 | dependencies: 2721 | semver "^5.0.3" 2722 | 2723 | semver@7.0.0: 2724 | version "7.0.0" 2725 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2726 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 2727 | 2728 | semver@^5.0.3, semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: 2729 | version "5.7.1" 2730 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2731 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2732 | 2733 | set-value@^2.0.0, set-value@^2.0.1: 2734 | version "2.0.1" 2735 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 2736 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 2737 | dependencies: 2738 | extend-shallow "^2.0.1" 2739 | is-extendable "^0.1.1" 2740 | is-plain-object "^2.0.3" 2741 | split-string "^3.0.1" 2742 | 2743 | shebang-command@^1.2.0: 2744 | version "1.2.0" 2745 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2746 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2747 | dependencies: 2748 | shebang-regex "^1.0.0" 2749 | 2750 | shebang-regex@^1.0.0: 2751 | version "1.0.0" 2752 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2753 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2754 | 2755 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2756 | version "3.0.3" 2757 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 2758 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 2759 | 2760 | slash@^2.0.0: 2761 | version "2.0.0" 2762 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 2763 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 2764 | 2765 | snapdragon-node@^2.0.1: 2766 | version "2.1.1" 2767 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2768 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 2769 | dependencies: 2770 | define-property "^1.0.0" 2771 | isobject "^3.0.0" 2772 | snapdragon-util "^3.0.1" 2773 | 2774 | snapdragon-util@^3.0.1: 2775 | version "3.0.1" 2776 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2777 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 2778 | dependencies: 2779 | kind-of "^3.2.0" 2780 | 2781 | snapdragon@^0.8.1: 2782 | version "0.8.2" 2783 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2784 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 2785 | dependencies: 2786 | base "^0.11.1" 2787 | debug "^2.2.0" 2788 | define-property "^0.2.5" 2789 | extend-shallow "^2.0.1" 2790 | map-cache "^0.2.2" 2791 | source-map "^0.5.6" 2792 | source-map-resolve "^0.5.0" 2793 | use "^3.1.0" 2794 | 2795 | source-map-resolve@^0.5.0: 2796 | version "0.5.3" 2797 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 2798 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 2799 | dependencies: 2800 | atob "^2.1.2" 2801 | decode-uri-component "^0.2.0" 2802 | resolve-url "^0.2.1" 2803 | source-map-url "^0.4.0" 2804 | urix "^0.1.0" 2805 | 2806 | source-map-support@^0.5.16: 2807 | version "0.5.19" 2808 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 2809 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 2810 | dependencies: 2811 | buffer-from "^1.0.0" 2812 | source-map "^0.6.0" 2813 | 2814 | source-map-url@^0.4.0: 2815 | version "0.4.0" 2816 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2817 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 2818 | 2819 | source-map@^0.5.0, source-map@^0.5.6: 2820 | version "0.5.7" 2821 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2822 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2823 | 2824 | source-map@^0.6.0, source-map@^0.6.1: 2825 | version "0.6.1" 2826 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2827 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2828 | 2829 | source-map@^0.7.3: 2830 | version "0.7.3" 2831 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2832 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2833 | 2834 | split-string@^3.0.1, split-string@^3.0.2: 2835 | version "3.1.0" 2836 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2837 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 2838 | dependencies: 2839 | extend-shallow "^3.0.0" 2840 | 2841 | static-extend@^0.1.1: 2842 | version "0.1.2" 2843 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2844 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 2845 | dependencies: 2846 | define-property "^0.2.5" 2847 | object-copy "^0.1.0" 2848 | 2849 | string-width@^2.0.0, string-width@^2.1.1: 2850 | version "2.1.1" 2851 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2852 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2853 | dependencies: 2854 | is-fullwidth-code-point "^2.0.0" 2855 | strip-ansi "^4.0.0" 2856 | 2857 | string.prototype.trimend@^1.0.1: 2858 | version "1.0.1" 2859 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 2860 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 2861 | dependencies: 2862 | define-properties "^1.1.3" 2863 | es-abstract "^1.17.5" 2864 | 2865 | string.prototype.trimstart@^1.0.1: 2866 | version "1.0.1" 2867 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 2868 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 2869 | dependencies: 2870 | define-properties "^1.1.3" 2871 | es-abstract "^1.17.5" 2872 | 2873 | string_decoder@~1.1.1: 2874 | version "1.1.1" 2875 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2876 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2877 | dependencies: 2878 | safe-buffer "~5.1.0" 2879 | 2880 | strip-ansi@^4.0.0: 2881 | version "4.0.0" 2882 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2883 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2884 | dependencies: 2885 | ansi-regex "^3.0.0" 2886 | 2887 | strip-eof@^1.0.0: 2888 | version "1.0.0" 2889 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2890 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2891 | 2892 | strip-json-comments@~2.0.1: 2893 | version "2.0.1" 2894 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2895 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2896 | 2897 | supports-color@^5.3.0, supports-color@^5.5.0: 2898 | version "5.5.0" 2899 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2900 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2901 | dependencies: 2902 | has-flag "^3.0.0" 2903 | 2904 | term-size@^1.2.0: 2905 | version "1.2.0" 2906 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2907 | integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 2908 | dependencies: 2909 | execa "^0.7.0" 2910 | 2911 | timed-out@^4.0.0: 2912 | version "4.0.1" 2913 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2914 | integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= 2915 | 2916 | to-fast-properties@^2.0.0: 2917 | version "2.0.0" 2918 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2919 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2920 | 2921 | to-object-path@^0.3.0: 2922 | version "0.3.0" 2923 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2924 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 2925 | dependencies: 2926 | kind-of "^3.0.2" 2927 | 2928 | to-regex-range@^2.1.0: 2929 | version "2.1.1" 2930 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2931 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 2932 | dependencies: 2933 | is-number "^3.0.0" 2934 | repeat-string "^1.6.1" 2935 | 2936 | to-regex@^3.0.1, to-regex@^3.0.2: 2937 | version "3.0.2" 2938 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2939 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 2940 | dependencies: 2941 | define-property "^2.0.2" 2942 | extend-shallow "^3.0.2" 2943 | regex-not "^1.0.2" 2944 | safe-regex "^1.1.0" 2945 | 2946 | touch@^3.1.0: 2947 | version "3.1.0" 2948 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 2949 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 2950 | dependencies: 2951 | nopt "~1.0.10" 2952 | 2953 | uglify-js@^3.1.4: 2954 | version "3.11.0" 2955 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.11.0.tgz#67317658d76c21e0e54d3224aee2df4ee6c3e1dc" 2956 | integrity sha512-e1KQFRCpOxnrJsJVqDUCjURq+wXvIn7cK2sRAx9XL3HYLL9aezOP4Pb1+Y3/o693EPk111Yj2Q+IUXxcpHlygQ== 2957 | 2958 | undefsafe@^2.0.2: 2959 | version "2.0.3" 2960 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" 2961 | integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== 2962 | dependencies: 2963 | debug "^2.2.0" 2964 | 2965 | unicode-canonical-property-names-ecmascript@^1.0.4: 2966 | version "1.0.4" 2967 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2968 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2969 | 2970 | unicode-match-property-ecmascript@^1.0.4: 2971 | version "1.0.4" 2972 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2973 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2974 | dependencies: 2975 | unicode-canonical-property-names-ecmascript "^1.0.4" 2976 | unicode-property-aliases-ecmascript "^1.0.4" 2977 | 2978 | unicode-match-property-value-ecmascript@^1.2.0: 2979 | version "1.2.0" 2980 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 2981 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 2982 | 2983 | unicode-property-aliases-ecmascript@^1.0.4: 2984 | version "1.1.0" 2985 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 2986 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 2987 | 2988 | union-value@^1.0.0: 2989 | version "1.0.1" 2990 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 2991 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 2992 | dependencies: 2993 | arr-union "^3.1.0" 2994 | get-value "^2.0.6" 2995 | is-extendable "^0.1.1" 2996 | set-value "^2.0.1" 2997 | 2998 | unique-string@^1.0.0: 2999 | version "1.0.0" 3000 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3001 | integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= 3002 | dependencies: 3003 | crypto-random-string "^1.0.0" 3004 | 3005 | unset-value@^1.0.0: 3006 | version "1.0.0" 3007 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3008 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3009 | dependencies: 3010 | has-value "^0.3.1" 3011 | isobject "^3.0.0" 3012 | 3013 | unzip-response@^2.0.1: 3014 | version "2.0.1" 3015 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3016 | integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= 3017 | 3018 | upath@^1.1.1: 3019 | version "1.2.0" 3020 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" 3021 | integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== 3022 | 3023 | update-notifier@^2.5.0: 3024 | version "2.5.0" 3025 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 3026 | integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== 3027 | dependencies: 3028 | boxen "^1.2.1" 3029 | chalk "^2.0.1" 3030 | configstore "^3.0.0" 3031 | import-lazy "^2.1.0" 3032 | is-ci "^1.0.10" 3033 | is-installed-globally "^0.1.0" 3034 | is-npm "^1.0.0" 3035 | latest-version "^3.0.0" 3036 | semver-diff "^2.0.0" 3037 | xdg-basedir "^3.0.0" 3038 | 3039 | urix@^0.1.0: 3040 | version "0.1.0" 3041 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3042 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3043 | 3044 | url-parse-lax@^1.0.0: 3045 | version "1.0.0" 3046 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3047 | integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= 3048 | dependencies: 3049 | prepend-http "^1.0.1" 3050 | 3051 | use@^3.1.0: 3052 | version "3.1.1" 3053 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3054 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3055 | 3056 | util-deprecate@~1.0.1: 3057 | version "1.0.2" 3058 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3059 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3060 | 3061 | v8flags@^3.1.1: 3062 | version "3.2.0" 3063 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656" 3064 | integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg== 3065 | dependencies: 3066 | homedir-polyfill "^1.0.1" 3067 | 3068 | which@^1.2.9: 3069 | version "1.3.1" 3070 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3071 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3072 | dependencies: 3073 | isexe "^2.0.0" 3074 | 3075 | widest-line@^2.0.0: 3076 | version "2.0.1" 3077 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 3078 | integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 3079 | dependencies: 3080 | string-width "^2.1.1" 3081 | 3082 | wordwrap@^1.0.0: 3083 | version "1.0.0" 3084 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3085 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 3086 | 3087 | wrappy@1: 3088 | version "1.0.2" 3089 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3090 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3091 | 3092 | write-file-atomic@^2.0.0: 3093 | version "2.4.3" 3094 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" 3095 | integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== 3096 | dependencies: 3097 | graceful-fs "^4.1.11" 3098 | imurmurhash "^0.1.4" 3099 | signal-exit "^3.0.2" 3100 | 3101 | xdg-basedir@^3.0.0: 3102 | version "3.0.0" 3103 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3104 | integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= 3105 | 3106 | yallist@^2.1.2: 3107 | version "2.1.2" 3108 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3109 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3110 | --------------------------------------------------------------------------------