├── .gitignore ├── .npmignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── unox_demo.gif ├── gulpfile.js ├── package.json ├── src ├── Lights.ts ├── Model.ts ├── WebViewer.ts ├── WebViewerOptions.ts └── index.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git 28 | node_modules 29 | 30 | # Exclude CSS files (only SCSS files must be versioned) 31 | demo/css 32 | demo/js 33 | 34 | # Exclude JavaScript files (only TypeScript files must be versioned) 35 | dist/ 36 | 37 | # Exclude some cache folders created by Gulp 38 | .gulp-scss-cache 39 | .sass-cache -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | ._* 3 | .DS_Store 4 | .git 5 | .hg 6 | .npmrc 7 | .lock-wscript 8 | .svn 9 | .wafpickle-* 10 | .babelrc 11 | .gitignore 12 | 13 | .gulp-scss-cache/ 14 | .sass-cache/ 15 | .vscode/ 16 | 17 | *.tgz 18 | *.log 19 | gulpfile.js 20 | tsconfig.json 21 | tslint.json 22 | webpack.config.js 23 | yarn.lock 24 | 25 | src/*.ts 26 | scss/* 27 | demo/ 28 | node_modules/ 29 | webpack/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | // Exclude files from VS Code's file explorer 3 | "files.exclude": { 4 | "**/.gulp-scss-cache" : true, 5 | "**/.scss-cache" : true, 6 | "**/.sass-cache" : true, 7 | "**/node_modules" : true, 8 | "**/yarn.lock" : false 9 | }, 10 | 11 | // Easy SASS (VS Code) extension's settings 12 | "easysass.excludeRegex" : "^(?!main.scss).+", 13 | "easysass.targetDir" : "dist/css" 14 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "taskName" : "WebPack watch", 8 | "type" : "shell", 9 | "command" : "webpack --config webpack.config.js --progress --colors", 10 | "problemMatcher" : [], 11 | "group" : { 12 | "kind" : "build", 13 | "isDefault" : true 14 | } 15 | }, 16 | { 17 | "label" : "Gulp watch", 18 | "type" : "gulp", 19 | "task" : "watch", 20 | "problemMatcher" : [] 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /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 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Revit Family (.rfa) Web Viewer 2 | ===================== 3 | 4 | [![Three.js](https://img.shields.io/badge/three.js-Revit-5D8CAE.svg)](https://threejs.org/) 5 | [![License](https://img.shields.io/github/license/OpenHoReCa/revit-web-viewer.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html) 6 | [![Git_tag](https://img.shields.io/github/tag/OpenHoReCa/revit-web-viewer.svg?colorB=8e8c5a)](https://github.com/OpenHoReCa/revit-web-viewer/tags) 7 | [![Language](https://img.shields.io/github/languages/top/OpenHoReCa/revit-web-viewer.svg?colorB=0f6f6f&maxAge=3600)](https://github.com/OpenHoReCa/revit-web-viewer/search?l=typescript) 8 | 9 | [![Donate Patreon](https://img.shields.io/badge/donate-Patreon-f96854.svg)](https://www.patreon.com/salaros/) 10 | [![Donate Paypal](https://img.shields.io/badge/donate-PayPal-009cde.svg)](https://paypal.me/salarosIT) 11 | [![Donate Liberapay](https://img.shields.io/badge/donate-Liberapay-ffc600.svg)](https://liberapay.com/salaros/) 12 | 13 | Revit Family Web Viewer is a Three.js-based project viewer. Revit projects / families must be exported using [RvtVa3c exporter](https://github.com/va3c/RvtVa3c) 14 | 15 | ![Usage demo](./assets/unox_demo.gif) 16 | 17 | # License 18 | Revit Family Web Viewer is licensed under [GPLv3 license](https://github.com/OpenHoReCa/revit-web-viewer/blob/master/LICENSE), which is a [viral license](https://en.wikipedia.org/wiki/Viral_license), therefore you can use it applications distributed under the *SAME* (GPL) or compatible licenses. In most scenarios Revit Family Web Viewer **CAN'T** be distributed as part of a **proprietary** applications, even if you do not change it or charge money for you application. 19 | Please contact [CodeCave, PUE](https://codecave.pro/contact-us/) for further information. 20 | 21 | 22 | # Credits 23 | 24 | Revit Family Web Viewer is inspired by [Va3c viewer](https://github.com/va3c/viewer), so part of credits go to it developers. 25 | -------------------------------------------------------------------------------- /assets/unox_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revit-family-web-viewer/ca3765bfe4ef9ba546d9a86b3a731bdb76b02844/assets/unox_demo.gif -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'), 2 | ts = require('gulp-typescript'), 3 | tsProject = ts.createProject('tsconfig.json'), 4 | sourcemaps = require('gulp-sourcemaps'); 5 | 6 | 7 | gulp.task('ts-scripts', [ 'ts-scripts-es6', 'ts-scripts-commonjs' ]); 8 | 9 | 10 | gulp.task('ts-scripts-es6', function() { 11 | var tsConfig = tsProject.config.compilerOptions; 12 | tsConfig.module = 'es6'; // force module type = 'es6' 13 | var tsResult = gulp.src("./src/**/*.ts") 14 | .pipe(sourcemaps.init({largeFile: true, loadMaps: true})) 15 | .pipe(ts(tsConfig)); 16 | 17 | return tsResult.js 18 | .pipe(sourcemaps.write('./')) 19 | .pipe(gulp.dest('./dist/es6')); 20 | }); 21 | 22 | 23 | gulp.task('ts-scripts-commonjs', function() { 24 | var tsConfig = tsProject.config.compilerOptions; 25 | tsConfig.module = 'commonjs'; // force module type = 'commonjs' 26 | var tsResult = gulp.src("./src/**/*.ts") 27 | .pipe(sourcemaps.init({largeFile: true, loadMaps: true})) 28 | .pipe(ts(tsConfig)); 29 | 30 | return tsResult.js 31 | .pipe(sourcemaps.write('./')) 32 | .pipe(gulp.dest('./dist/commonjs')); 33 | }); 34 | 35 | 36 | gulp.task('watch', [ 'ts-scripts' ], function() { 37 | gulp.watch('./src/*.ts', [ 'ts-scripts' ]); 38 | }); 39 | 40 | 41 | gulp.task('default', [ 'ts-scripts' ], function() { 42 | // Production-ready build 43 | }); 44 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "revit-family-web-viewer", 3 | "version": "0.3.1", 4 | "license": "GPL-3.0", 5 | "description": "Revit Family Web Viewer is a Three.js-based model viewer", 6 | "main": "dist/commonjs/index.js", 7 | "module": "dist/es6/index.js", 8 | "keywords": [ 9 | "revit", 10 | "web", 11 | "viewer", 12 | "three.js", 13 | "project", 14 | "model", 15 | "3D" 16 | ], 17 | "devDependencies": { 18 | "@avatsaev/three-orbitcontrols-ts": "^0.1.5", 19 | "@types/node": "^10.3.4", 20 | "@types/three": "^0.92.7", 21 | "file-loader": "^1.1.11", 22 | "gulp": "^3.9.1", 23 | "gulp-sourcemaps": "^2.6.4", 24 | "gulp-typescript": "^5.0.0-alpha.2", 25 | "json-loader": "^0.5.7", 26 | "three": "^0.93.0", 27 | "ts-loader": "^4.4.1", 28 | "tslib": "^1.9.2", 29 | "typescript": "^2.9.2", 30 | "web-request": "^1.0.7", 31 | "webpack": "^3.8.1" 32 | }, 33 | "scripts": { 34 | "webpack": "webpack --config webpack.config.js --progress --colors", 35 | "build": "gulp" 36 | }, 37 | "homepage": "https://github.com/Equipple/revit-family-web-viewer#readme", 38 | "repository": { 39 | "type": "git", 40 | "url": "git+https://github.com/Equipple/revit-family-web-viewer.git" 41 | }, 42 | "author": "Zhmayev Yaroslav (https://salaros.com)", 43 | "bugs": { 44 | "url": "https://github.com/Equipple/revit-family-web-viewer/issues" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/Lights.ts: -------------------------------------------------------------------------------- 1 | import { SpotLight, DirectionalLight, HemisphereLight, AmbientLight, Sphere, Object3D, Scene } from 'three'; 2 | 3 | export class Lights { 4 | 5 | static readonly lightColorDark = '#303030'; 6 | static readonly lightColorNeutral = '#606060'; 7 | static readonly lightColorBright = '#909090'; 8 | static readonly lightOpacity = 0.75; 9 | 10 | protected ambientLight : AmbientLight; // ambient light for the scene 11 | protected hemisphereLight : HemisphereLight; // hemisphere light for the scene 12 | protected sunLight : DirectionalLight; // a directional representing the sun 13 | protected spotLights : SpotLight[]; // an array of directional lights to provide even coverage of the scene 14 | 15 | constructor( boundingSphere : Sphere ) { 16 | 17 | var offset = boundingSphere.radius * 6; // get the radius of the bounding sphere for placing lights at certain distance from the object 18 | var center = boundingSphere.center; // get the center of the bounding sphere for pointing lights at it 19 | 20 | // the sun as directional light 21 | this.sunLight = new DirectionalLight( Lights.lightColorDark ); 22 | this.sunLight.name = "The sun :)"; 23 | this.sunLight.position.set( center.x + offset, center.y + offset, -center.z-offset ); 24 | this.sunLight.position.multiplyScalar( 50 ); 25 | this.sunLight.target.position.set( center.x, center.y, center.z ); 26 | 27 | // create a global ambient light object 28 | this.ambientLight = new AmbientLight( Lights.lightColorDark ); 29 | this.ambientLight.name = "Mild ambient light"; 30 | 31 | // create a hemisphere light object 32 | this.hemisphereLight = new HemisphereLight( Lights.lightColorDark, Lights.lightColorBright, Lights.lightOpacity ); 33 | this.hemisphereLight.name = "Mild hemisphere light"; 34 | this.hemisphereLight.position.set( center.x + offset, center.y + offset, center.z + offset ); 35 | 36 | let spotLight1 = new SpotLight( Lights.lightColorBright, Lights.lightOpacity ); 37 | spotLight1.position.set( -center.x - offset / 2, center.y + offset / 1.5, -center.z - offset / 2 ); 38 | spotLight1.target.position.set( center.x, center.y, center.z ); 39 | 40 | let spotLight2 = new SpotLight( Lights.lightColorNeutral, Lights.lightOpacity ); 41 | spotLight2.position.set( center.x + offset / 2, center.y + offset / 1.5, -center.z - offset / 2 ); 42 | spotLight2.target.position.set( center.x, center.y, center.z ); 43 | 44 | // create 2 spotlights 45 | this.spotLights = [ spotLight1, spotLight2 ]; 46 | } 47 | 48 | applyLights( scene : Scene, privot : Object3D ) { 49 | scene.add( this.sunLight ); 50 | scene.add( this.ambientLight ); 51 | scene.add( this.hemisphereLight ); 52 | this.spotLights.forEach(spotLight => { 53 | privot.add( spotLight ); 54 | }); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /src/Model.ts: -------------------------------------------------------------------------------- 1 | import { ObjectLoader, Object3D, Geometry, BufferGeometry, Box3, Sphere, Mesh } from 'three'; 2 | 3 | /** 4 | * Wraps all model-related functionality 5 | * @class RevitModel 6 | */ 7 | export class Model { 8 | static readonly loader = new ObjectLoader(); // a loader for loading a JSON resource 9 | 10 | readonly object : Object3D; // Revit 3D model, provides a set of properties and methods for manipulating objects in 3D space 11 | readonly pivot : Object3D; // needed for rotation and other stuff 12 | protected geometry : Geometry; // the geometry of currently loaded object 13 | private _boundingSphere : Sphere; // bounding sphere that encompasses everything in the scene 14 | private _boundingBox : Box3; // bounding box for the Geometry, which can be calculated with 15 | 16 | /** 17 | * Creates an instance of RevitModel. 18 | * @memberof RevitModel 19 | */ 20 | constructor( object3D : Object3D ) { 21 | this.object = object3D; 22 | this.pivot = new Object3D(); 23 | this.pivot.add( this.object ); 24 | 25 | // Compute bounding box for geometry-related operations 26 | // and bounding sphere for lights 27 | this.getBoundingFigures(); 28 | } 29 | 30 | /** 31 | * Gets _boundingSphere value 32 | */ 33 | get boundingSphere(): Sphere { 34 | return this._boundingSphere; 35 | } 36 | /** 37 | * Sets _boundingSphere value 38 | */ 39 | set boundingSphere(boundingSphere: Sphere) { 40 | this._boundingSphere = boundingSphere; 41 | } 42 | 43 | /** 44 | * Gets _boundingBox value 45 | */ 46 | get boundingBox(): Box3 { 47 | return this._boundingBox; 48 | } 49 | 50 | /** 51 | * Sets _boundingBox value 52 | */ 53 | set boundingBox(boundingBox: Box3) { 54 | this._boundingBox = boundingBox; 55 | } 56 | 57 | /** 58 | * Loads model object from URL 59 | * @param {string} url 60 | * @returns {Promise} 61 | * @memberof RevitModel 62 | */ 63 | static async loadFromURL(url : string) : Promise { 64 | let modelJson = {}; 65 | try{ 66 | let modelText = await Model.getFromURL(url); 67 | modelJson = JSON.parse(modelText); 68 | } catch(e) { 69 | console.error(e); 70 | } 71 | return Model.loadFromJSON( modelJson ); 72 | } 73 | 74 | /** 75 | * Loads model object from a JSON object 76 | * @param {Object} modelJson 77 | * @returns {Object3D} 78 | * @memberof RevitModel 79 | */ 80 | static loadFromJSON( modelJson : Object) : Object3D { 81 | try { 82 | let object = Model.loader.parse( modelJson ); 83 | return object; 84 | } catch(e) { 85 | console.error(e); 86 | return null; 87 | } 88 | } 89 | 90 | /** 91 | * Get model's JSON text content from URL 92 | * @param url 93 | */ 94 | static getFromURL(url) : Promise{ 95 | return new Promise( 96 | (resolve, reject) => { 97 | const request = new XMLHttpRequest(); 98 | request.onload = () => { 99 | if(4 === request.readyState) { 100 | if (200 === request.status || 0 === request.status) { 101 | resolve(request.response); 102 | } else { 103 | reject(new Error(request.statusText)); 104 | } 105 | } 106 | }; 107 | request.onerror = () => { 108 | reject(new Error('XMLHttpRequest Error: '+ request.statusText)); 109 | }; 110 | request.open('GET', url); 111 | request.send(); 112 | } 113 | ); 114 | }; 115 | 116 | /** 117 | * Loops over the children of the THREE scene, merge them into a mesh, 118 | * and compute a bounding sphere for the scene 119 | * @memberof RevitModel 120 | */ 121 | getBoundingFigures() : void { 122 | let geometry = new Geometry(); 123 | this.object.traverse( (child) => { 124 | if(child instanceof Mesh ) { 125 | if (child.geometry instanceof Geometry) { 126 | geometry.merge( child.geometry ); 127 | } else if (child.geometry instanceof BufferGeometry) { 128 | let convertedGeometry = new Geometry(); 129 | convertedGeometry.fromBufferGeometry(child.geometry); 130 | geometry.merge( convertedGeometry ); 131 | } 132 | } 133 | }); 134 | 135 | geometry.computeBoundingSphere(); 136 | this.boundingSphere = geometry.boundingSphere; 137 | 138 | geometry.computeBoundingBox(); 139 | this.boundingBox = geometry.boundingBox; 140 | 141 | this.geometry = geometry; 142 | }; 143 | } 144 | -------------------------------------------------------------------------------- /src/WebViewer.ts: -------------------------------------------------------------------------------- 1 | import { Scene, WebGLRenderer, PerspectiveCamera, Vector3, Mesh } from 'three'; 2 | import { OrbitControls } from '@avatsaev/three-orbitcontrols-ts'; 3 | import { Model } from "./Model"; 4 | import { Lights } from "./Lights"; 5 | import { WebViewerOptions } from "./WebViewerOptions"; 6 | 7 | /** 8 | * The main Revit Web Viewer class 9 | * @class RevitWebViewer 10 | */ 11 | export class WebViewer { 12 | protected scene : Scene; // scene allows you to set up what and where is to be rendered by three.js 13 | protected renderer : WebGLRenderer; // WebGL scene renderer 14 | protected orbitControls : OrbitControls; // orbit controls object 15 | protected camera : PerspectiveCamera; // perspective camera is designed to mimic the way the human eye sees 16 | protected model : Model; 17 | protected lights : Lights; 18 | protected options : WebViewerOptions; 19 | 20 | /** 21 | * Creates an instance of RevitWebViewer. 22 | * @memberof RevitWebViewer 23 | */ 24 | constructor(options : WebViewerOptions) { 25 | this.scene = new Scene(); 26 | this.camera = new PerspectiveCamera( 27 | 25, // fov — Camera frustum vertical field of view. 28 | window.innerWidth / window.innerHeight, // spect — Camera frustum aspect ratio. 29 | 10, // near — Camera frustum near plane. 30 | 1000000 // far — Camera frustum far plane. 31 | ); 32 | 33 | this.renderer = new WebGLRenderer( // the WebGL renderer displays your beautifully crafted scenes using WebGL. 34 | { 35 | alpha : true, 36 | antialias : true 37 | } 38 | ); 39 | 40 | this.model = null; 41 | this.lights = null; 42 | this.options = (null == options) 43 | ? new WebViewerOptions() 44 | : options; 45 | }; 46 | 47 | init( element : HTMLElement ) : void { 48 | 49 | // tweaking the renderer object 50 | this.renderer.setClearColor( 0x000000, 0.0 ); 51 | this.renderer.setSize( window.innerWidth, window.innerHeight ); 52 | this.renderer.shadowMap.enabled = false; 53 | 54 | // tweaking camera object 55 | this.camera.position.set( -window.innerHeight, window.innerHeight / 6, -window.innerHeight ); 56 | 57 | // set up orbit controls object 58 | this.orbitControls = new OrbitControls( this.camera, this.renderer.domElement ); 59 | this.orbitControls.enableZoom = true; 60 | this.orbitControls.zoomSpeed = 1.0; 61 | this.orbitControls.enablePan = true; // Set to false to disable panning (ie vertical and horizontal translations) 62 | 63 | // tweak orbit controls in order to uncover the "top edge" of the object 64 | this.orbitControls.target.set( 0, -window.innerHeight / 2, 0 ); 65 | 66 | element.appendChild( this.renderer.domElement ); 67 | 68 | // Set background color of the body element if needed 69 | if (this.options.background) { 70 | document.getElementsByTagName("body")[0].style.background = this.options.background; 71 | } 72 | 73 | this.bindEvents(); 74 | this.render(); 75 | } 76 | 77 | /** 78 | * Tweak orbit controls and camepra position 79 | * @memberof WebViewer 80 | */ 81 | tweakCameraAndControls() : void { 82 | // point the camera at the center of the sphere 83 | this.orbitControls.target = this.model.boundingSphere.center; 84 | 85 | let zAxis = new Vector3( 0, 0, 1 ); 86 | let direction = zAxis.applyQuaternion( this.orbitControls.object.quaternion ); 87 | let offset = this.model.boundingSphere.radius / Math.tan( Math.PI / 180.0 * ( this.orbitControls.object).fov * 0.5 ); 88 | direction.multiplyScalar( offset * 1.25 ); 89 | 90 | let newCameraPosition = new Vector3(); 91 | newCameraPosition.addVectors( this.model.boundingSphere.center, direction ); 92 | this.camera.position.set( newCameraPosition.x, newCameraPosition.y, newCameraPosition.z ); 93 | }; 94 | 95 | /** 96 | * Bind global document / window events 97 | * @memberof WebViewer 98 | */ 99 | bindEvents() { 100 | // window resize event 101 | window.addEventListener('resize', () => { 102 | ( this.orbitControls.object).aspect = window.innerWidth / window.innerHeight; 103 | ( this.orbitControls.object).updateProjectionMatrix(); 104 | 105 | this.camera.aspect = window.innerWidth / window.innerHeight; 106 | this.camera.updateProjectionMatrix(); 107 | 108 | this.renderer.setSize( window.innerWidth, window.innerHeight ); 109 | }, false); 110 | }; 111 | 112 | loadModelFromUrl( url : string ) : void { 113 | 114 | Model.loadFromURL(url) 115 | .then((object3D) => { 116 | this.scene = new Scene(); 117 | this.model = new Model( object3D ); 118 | 119 | this.lights = new Lights( this.model.boundingSphere ); 120 | this.lights.applyLights( 121 | this.scene, 122 | this.model.pivot 123 | ); 124 | 125 | this.scene.add( this.model.pivot ); // add( this.model.object ); 126 | 127 | if (this.options.originToCenter || 0.0 !== this.options.rotation) { 128 | let modelWidth = this.model.boundingBox.max.x - this.model.boundingBox.min.x; 129 | let modelHeight = this.model.boundingBox.max.z - this.model.boundingBox.min.z; 130 | this.model.object.traverse( ( child ) => { 131 | if ( ! ( child instanceof Mesh ) ) return false; 132 | child.geometry.translate(modelWidth / 2, 0, modelHeight / 2); 133 | return true; 134 | }); 135 | 136 | // Re-compute bounds after moving the object 137 | this.model.getBoundingFigures(); 138 | } 139 | 140 | this.tweakCameraAndControls(); 141 | }) 142 | .catch(function (err) { 143 | // TODO handle the error 144 | console.log( err ); 145 | }); 146 | }; 147 | 148 | /** 149 | * Render the scene via three.js renderer 150 | * @memberof WebViewer 151 | */ 152 | render = () => { 153 | this.orbitControls.update(); 154 | requestAnimationFrame( this.render ); 155 | this.renderer.render( this.scene, this.orbitControls.object ); 156 | 157 | if (this.model && this.model.pivot && this.model.pivot.rotation && 0.0 !== this.options.rotation) { 158 | this.model.pivot.rotation.y -= this.options.rotation; 159 | } 160 | }; 161 | } 162 | -------------------------------------------------------------------------------- /src/WebViewerOptions.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Web viewer option class, sets default options 3 | */ 4 | export class WebViewerOptions { 5 | readonly background : string; 6 | readonly rotation : number; 7 | readonly originToCenter : boolean; 8 | 9 | /** 10 | * 11 | * @param background Body background color 12 | * @param originToCenter Move scene origin to model center (calculated via bounding sphere) 13 | * @param rotation The speed of the model rotation, can be positive or negative, set to 0.0 to disable 14 | */ 15 | constructor( 16 | background : string = "transparent", 17 | originToCenter : boolean = false, 18 | rotation : number = 0.0, 19 | ) { 20 | this.background = background; 21 | this.rotation = rotation; 22 | this.originToCenter = originToCenter; 23 | } 24 | } -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { WebViewer } from "./WebViewer"; 2 | import { WebViewerOptions } from "./WebViewerOptions"; 3 | 4 | export { WebViewerOptions, WebViewer }; -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "module": "es6", 5 | "moduleResolution": "node", 6 | "lib": [ 7 | "dom", 8 | "es2015", 9 | "es2015.promise", 10 | "es2016", 11 | "es2017.object", 12 | "es5", 13 | "es6" 14 | ], 15 | "types": [ 16 | "node" 17 | ], 18 | "typeRoots": [ 19 | "node_modules/@types" 20 | ], 21 | "allowJs": true, 22 | "importHelpers": true, 23 | "noEmitHelpers": true, 24 | "alwaysStrict": true, 25 | "sourceMap": true, 26 | "forceConsistentCasingInFileNames": true, 27 | "noFallthroughCasesInSwitch": true, 28 | "noImplicitReturns": true, 29 | "noUnusedLocals": true, 30 | "noUnusedParameters": true, 31 | "noImplicitAny": false, 32 | "noImplicitThis": false, 33 | "strictNullChecks": false, 34 | "allowSyntheticDefaultImports": true, 35 | "experimentalDecorators": true, 36 | "noEmitOnError": true, 37 | "emitDecoratorMetadata": true, 38 | "removeComments": false, 39 | // "outFile": "./dist/index.js", 40 | "outDir": "./dist/es6/", 41 | "rootDir": "./src/", 42 | "baseUrl": "./src/" 43 | }, 44 | "exclude": [ 45 | "bin", 46 | "test", 47 | "dist", 48 | "demo", 49 | "node_modules", 50 | "webpack.config.js", 51 | "gulpfile.js" 52 | ], 53 | "awesomeTypescriptLoaderOptions": { 54 | "forkChecker": true, 55 | "useWebpackText": true 56 | }, 57 | "compileOnSave": false, 58 | "buildOnSave": false 59 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "quotemark": [ 4 | true, 5 | "single" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | context: __dirname + "/src", 5 | entry: "./index.ts", 6 | devtool: 'source-map', 7 | module: { 8 | rules: [ 9 | { 10 | test: /\.tsx?$/, 11 | use: 'ts-loader', 12 | exclude: /node_modules/ 13 | }, 14 | { 15 | test: /\.json$/, 16 | loader: 'json-loader' 17 | } 18 | ], 19 | loaders: [ 20 | { test: /\.json$/, loader: 'json-loader' } 21 | ] 22 | }, 23 | resolve: { 24 | extensions: [ '.js', '.jsx', '.tsx', '.ts' ] 25 | }, 26 | output: { 27 | library: 'revit-family-web-viewer', 28 | filename: 'index.js', 29 | libraryTarget: 'commonjs2', 30 | path: path.resolve(__dirname, 'dist/commonjs') 31 | }, 32 | node: { 33 | console: false, 34 | fs: 'empty', 35 | net: 'empty', 36 | tls: 'empty' 37 | }, 38 | plugins: [] 39 | }; 40 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@avatsaev/three-orbitcontrols-ts@^0.1.5": 6 | version "0.1.5" 7 | resolved "https://registry.yarnpkg.com/@avatsaev/three-orbitcontrols-ts/-/three-orbitcontrols-ts-0.1.5.tgz#7987c7d34f2cfb7550cf0893368d24747a5487a8" 8 | dependencies: 9 | three "^0.84" 10 | 11 | "@gulp-sourcemaps/identity-map@1.X": 12 | version "1.0.1" 13 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.1.tgz#cfa23bc5840f9104ce32a65e74db7e7a974bbee1" 14 | dependencies: 15 | acorn "^5.0.3" 16 | css "^2.2.1" 17 | normalize-path "^2.1.1" 18 | source-map "^0.5.6" 19 | through2 "^2.0.3" 20 | 21 | "@gulp-sourcemaps/map-sources@1.X": 22 | version "1.0.0" 23 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda" 24 | dependencies: 25 | normalize-path "^2.0.1" 26 | through2 "^2.0.3" 27 | 28 | "@types/node@^10.3.4": 29 | version "10.3.4" 30 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.4.tgz#c74e8aec19e555df44609b8057311052a2c84d9e" 31 | 32 | "@types/three@^0.92.7": 33 | version "0.92.7" 34 | resolved "https://registry.yarnpkg.com/@types/three/-/three-0.92.7.tgz#b91f1c0c29ac8d1aef6bcb4c0756597262c24461" 35 | dependencies: 36 | "@types/webvr-api" "*" 37 | 38 | "@types/webvr-api@*": 39 | version "0.0.34" 40 | resolved "https://registry.yarnpkg.com/@types/webvr-api/-/webvr-api-0.0.34.tgz#8fa49028de925c7b8bce3d559d3374ce2c89ee28" 41 | 42 | abbrev@1: 43 | version "1.1.1" 44 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 45 | 46 | acorn-dynamic-import@^2.0.0: 47 | version "2.0.2" 48 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 49 | dependencies: 50 | acorn "^4.0.3" 51 | 52 | acorn@5.X, acorn@^5.0.0, acorn@^5.0.3: 53 | version "5.7.1" 54 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 55 | 56 | acorn@^4.0.3: 57 | version "4.0.13" 58 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 59 | 60 | ajv-keywords@^3.1.0: 61 | version "3.2.0" 62 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" 63 | 64 | ajv@^5.1.0: 65 | version "5.5.2" 66 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 67 | dependencies: 68 | co "^4.6.0" 69 | fast-deep-equal "^1.0.0" 70 | fast-json-stable-stringify "^2.0.0" 71 | json-schema-traverse "^0.3.0" 72 | 73 | ajv@^6.1.0: 74 | version "6.5.1" 75 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.1.tgz#88ebc1263c7133937d108b80c5572e64e1d9322d" 76 | dependencies: 77 | fast-deep-equal "^2.0.1" 78 | fast-json-stable-stringify "^2.0.0" 79 | json-schema-traverse "^0.4.1" 80 | uri-js "^4.2.1" 81 | 82 | align-text@^0.1.1, align-text@^0.1.3: 83 | version "0.1.4" 84 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 85 | dependencies: 86 | kind-of "^3.0.2" 87 | longest "^1.0.1" 88 | repeat-string "^1.5.2" 89 | 90 | amdefine@>=0.0.4: 91 | version "1.0.1" 92 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 93 | 94 | ansi-colors@^1.0.1: 95 | version "1.1.0" 96 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" 97 | dependencies: 98 | ansi-wrap "^0.1.0" 99 | 100 | ansi-colors@^2.0.1: 101 | version "2.0.1" 102 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-2.0.1.tgz#592299d94d1c403642098ec4fd7b7f2d8895a957" 103 | 104 | ansi-gray@^0.1.1: 105 | version "0.1.1" 106 | resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" 107 | dependencies: 108 | ansi-wrap "0.1.0" 109 | 110 | ansi-regex@^2.0.0: 111 | version "2.1.1" 112 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 113 | 114 | ansi-regex@^3.0.0: 115 | version "3.0.0" 116 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 117 | 118 | ansi-styles@^2.2.1: 119 | version "2.2.1" 120 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 121 | 122 | ansi-styles@^3.2.1: 123 | version "3.2.1" 124 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 125 | dependencies: 126 | color-convert "^1.9.0" 127 | 128 | ansi-wrap@0.1.0, ansi-wrap@^0.1.0: 129 | version "0.1.0" 130 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 131 | 132 | anymatch@^2.0.0: 133 | version "2.0.0" 134 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 135 | dependencies: 136 | micromatch "^3.1.4" 137 | normalize-path "^2.1.1" 138 | 139 | append-buffer@^1.0.2: 140 | version "1.0.2" 141 | resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" 142 | dependencies: 143 | buffer-equal "^1.0.0" 144 | 145 | aproba@^1.0.3: 146 | version "1.2.0" 147 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 148 | 149 | archy@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 152 | 153 | are-we-there-yet@~1.1.2: 154 | version "1.1.5" 155 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 156 | dependencies: 157 | delegates "^1.0.0" 158 | readable-stream "^2.0.6" 159 | 160 | arr-diff@^4.0.0: 161 | version "4.0.0" 162 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 163 | 164 | arr-flatten@^1.1.0: 165 | version "1.1.0" 166 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 167 | 168 | arr-union@^3.1.0: 169 | version "3.1.0" 170 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 171 | 172 | array-differ@^1.0.0: 173 | version "1.0.0" 174 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 175 | 176 | array-each@^1.0.1: 177 | version "1.0.1" 178 | resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" 179 | 180 | array-slice@^1.0.0: 181 | version "1.1.0" 182 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" 183 | 184 | array-uniq@^1.0.2: 185 | version "1.0.3" 186 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 187 | 188 | array-unique@^0.3.2: 189 | version "0.3.2" 190 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 191 | 192 | asn1.js@^4.0.0: 193 | version "4.10.1" 194 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 195 | dependencies: 196 | bn.js "^4.0.0" 197 | inherits "^2.0.1" 198 | minimalistic-assert "^1.0.0" 199 | 200 | asn1@~0.2.3: 201 | version "0.2.3" 202 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 203 | 204 | assert-plus@1.0.0, assert-plus@^1.0.0: 205 | version "1.0.0" 206 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 207 | 208 | assert@^1.1.1: 209 | version "1.4.1" 210 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 211 | dependencies: 212 | util "0.10.3" 213 | 214 | assign-symbols@^1.0.0: 215 | version "1.0.0" 216 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 217 | 218 | async-each@^1.0.0: 219 | version "1.0.1" 220 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 221 | 222 | async@^2.1.2: 223 | version "2.6.1" 224 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 225 | dependencies: 226 | lodash "^4.17.10" 227 | 228 | asynckit@^0.4.0: 229 | version "0.4.0" 230 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 231 | 232 | atob@^2.1.1: 233 | version "2.1.1" 234 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 235 | 236 | aws-sign2@~0.7.0: 237 | version "0.7.0" 238 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 239 | 240 | aws4@^1.6.0: 241 | version "1.7.0" 242 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 243 | 244 | balanced-match@^1.0.0: 245 | version "1.0.0" 246 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 247 | 248 | base64-js@^1.0.2: 249 | version "1.3.0" 250 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 251 | 252 | base@^0.11.1: 253 | version "0.11.2" 254 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 255 | dependencies: 256 | cache-base "^1.0.1" 257 | class-utils "^0.3.5" 258 | component-emitter "^1.2.1" 259 | define-property "^1.0.0" 260 | isobject "^3.0.1" 261 | mixin-deep "^1.2.0" 262 | pascalcase "^0.1.1" 263 | 264 | bcrypt-pbkdf@^1.0.0: 265 | version "1.0.1" 266 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 267 | dependencies: 268 | tweetnacl "^0.14.3" 269 | 270 | beeper@^1.0.0: 271 | version "1.1.1" 272 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 273 | 274 | big.js@^3.1.3: 275 | version "3.2.0" 276 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 277 | 278 | binary-extensions@^1.0.0: 279 | version "1.11.0" 280 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 281 | 282 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 283 | version "4.11.9" 284 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 285 | 286 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 287 | version "1.1.11" 288 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 289 | dependencies: 290 | balanced-match "^1.0.0" 291 | concat-map "0.0.1" 292 | 293 | braces@^2.3.0, braces@^2.3.1: 294 | version "2.3.2" 295 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 296 | dependencies: 297 | arr-flatten "^1.1.0" 298 | array-unique "^0.3.2" 299 | extend-shallow "^2.0.1" 300 | fill-range "^4.0.0" 301 | isobject "^3.0.1" 302 | repeat-element "^1.1.2" 303 | snapdragon "^0.8.1" 304 | snapdragon-node "^2.0.1" 305 | split-string "^3.0.2" 306 | to-regex "^3.0.1" 307 | 308 | brorand@^1.0.1: 309 | version "1.1.0" 310 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 311 | 312 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 313 | version "1.2.0" 314 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 315 | dependencies: 316 | buffer-xor "^1.0.3" 317 | cipher-base "^1.0.0" 318 | create-hash "^1.1.0" 319 | evp_bytestokey "^1.0.3" 320 | inherits "^2.0.1" 321 | safe-buffer "^5.0.1" 322 | 323 | browserify-cipher@^1.0.0: 324 | version "1.0.1" 325 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 326 | dependencies: 327 | browserify-aes "^1.0.4" 328 | browserify-des "^1.0.0" 329 | evp_bytestokey "^1.0.0" 330 | 331 | browserify-des@^1.0.0: 332 | version "1.0.1" 333 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c" 334 | dependencies: 335 | cipher-base "^1.0.1" 336 | des.js "^1.0.0" 337 | inherits "^2.0.1" 338 | 339 | browserify-rsa@^4.0.0: 340 | version "4.0.1" 341 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 342 | dependencies: 343 | bn.js "^4.1.0" 344 | randombytes "^2.0.1" 345 | 346 | browserify-sign@^4.0.0: 347 | version "4.0.4" 348 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 349 | dependencies: 350 | bn.js "^4.1.1" 351 | browserify-rsa "^4.0.0" 352 | create-hash "^1.1.0" 353 | create-hmac "^1.1.2" 354 | elliptic "^6.0.0" 355 | inherits "^2.0.1" 356 | parse-asn1 "^5.0.0" 357 | 358 | browserify-zlib@^0.2.0: 359 | version "0.2.0" 360 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 361 | dependencies: 362 | pako "~1.0.5" 363 | 364 | buffer-equal@^1.0.0: 365 | version "1.0.0" 366 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 367 | 368 | buffer-xor@^1.0.3: 369 | version "1.0.3" 370 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 371 | 372 | buffer@^4.3.0: 373 | version "4.9.1" 374 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 375 | dependencies: 376 | base64-js "^1.0.2" 377 | ieee754 "^1.1.4" 378 | isarray "^1.0.0" 379 | 380 | builtin-modules@^1.0.0: 381 | version "1.1.1" 382 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 383 | 384 | builtin-status-codes@^3.0.0: 385 | version "3.0.0" 386 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 387 | 388 | cache-base@^1.0.1: 389 | version "1.0.1" 390 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 391 | dependencies: 392 | collection-visit "^1.0.0" 393 | component-emitter "^1.2.1" 394 | get-value "^2.0.6" 395 | has-value "^1.0.0" 396 | isobject "^3.0.1" 397 | set-value "^2.0.0" 398 | to-object-path "^0.3.0" 399 | union-value "^1.0.0" 400 | unset-value "^1.0.0" 401 | 402 | camelcase@^1.0.2: 403 | version "1.2.1" 404 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 405 | 406 | camelcase@^4.1.0: 407 | version "4.1.0" 408 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 409 | 410 | caseless@~0.12.0: 411 | version "0.12.0" 412 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 413 | 414 | center-align@^0.1.1: 415 | version "0.1.3" 416 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 417 | dependencies: 418 | align-text "^0.1.3" 419 | lazy-cache "^1.0.3" 420 | 421 | chalk@^1.0.0: 422 | version "1.1.3" 423 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 424 | dependencies: 425 | ansi-styles "^2.2.1" 426 | escape-string-regexp "^1.0.2" 427 | has-ansi "^2.0.0" 428 | strip-ansi "^3.0.0" 429 | supports-color "^2.0.0" 430 | 431 | chalk@^2.3.0: 432 | version "2.4.1" 433 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 434 | dependencies: 435 | ansi-styles "^3.2.1" 436 | escape-string-regexp "^1.0.5" 437 | supports-color "^5.3.0" 438 | 439 | chokidar@^2.0.2: 440 | version "2.0.4" 441 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 442 | dependencies: 443 | anymatch "^2.0.0" 444 | async-each "^1.0.0" 445 | braces "^2.3.0" 446 | glob-parent "^3.1.0" 447 | inherits "^2.0.1" 448 | is-binary-path "^1.0.0" 449 | is-glob "^4.0.0" 450 | lodash.debounce "^4.0.8" 451 | normalize-path "^2.1.1" 452 | path-is-absolute "^1.0.0" 453 | readdirp "^2.0.0" 454 | upath "^1.0.5" 455 | optionalDependencies: 456 | fsevents "^1.2.2" 457 | 458 | chownr@^1.0.1: 459 | version "1.0.1" 460 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 461 | 462 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 463 | version "1.0.4" 464 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 465 | dependencies: 466 | inherits "^2.0.1" 467 | safe-buffer "^5.0.1" 468 | 469 | class-utils@^0.3.5: 470 | version "0.3.6" 471 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 472 | dependencies: 473 | arr-union "^3.1.0" 474 | define-property "^0.2.5" 475 | isobject "^3.0.0" 476 | static-extend "^0.1.1" 477 | 478 | cliui@^2.1.0: 479 | version "2.1.0" 480 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 481 | dependencies: 482 | center-align "^0.1.1" 483 | right-align "^0.1.1" 484 | wordwrap "0.0.2" 485 | 486 | cliui@^3.2.0: 487 | version "3.2.0" 488 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 489 | dependencies: 490 | string-width "^1.0.1" 491 | strip-ansi "^3.0.1" 492 | wrap-ansi "^2.0.0" 493 | 494 | clone-buffer@^1.0.0: 495 | version "1.0.0" 496 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 497 | 498 | clone-stats@^0.0.1: 499 | version "0.0.1" 500 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 501 | 502 | clone-stats@^1.0.0: 503 | version "1.0.0" 504 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 505 | 506 | clone@^0.2.0: 507 | version "0.2.0" 508 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 509 | 510 | clone@^1.0.0, clone@^1.0.2: 511 | version "1.0.4" 512 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 513 | 514 | clone@^2.1.1: 515 | version "2.1.1" 516 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 517 | 518 | cloneable-readable@^1.0.0: 519 | version "1.1.2" 520 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.2.tgz#d591dee4a8f8bc15da43ce97dceeba13d43e2a65" 521 | dependencies: 522 | inherits "^2.0.1" 523 | process-nextick-args "^2.0.0" 524 | readable-stream "^2.3.5" 525 | 526 | co@^4.6.0: 527 | version "4.6.0" 528 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 529 | 530 | code-point-at@^1.0.0: 531 | version "1.1.0" 532 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 533 | 534 | collection-visit@^1.0.0: 535 | version "1.0.0" 536 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 537 | dependencies: 538 | map-visit "^1.0.0" 539 | object-visit "^1.0.0" 540 | 541 | color-convert@^1.9.0: 542 | version "1.9.2" 543 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 544 | dependencies: 545 | color-name "1.1.1" 546 | 547 | color-name@1.1.1: 548 | version "1.1.1" 549 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 550 | 551 | color-support@^1.1.3: 552 | version "1.1.3" 553 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 554 | 555 | combined-stream@1.0.6, combined-stream@~1.0.5: 556 | version "1.0.6" 557 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 558 | dependencies: 559 | delayed-stream "~1.0.0" 560 | 561 | component-emitter@^1.2.1: 562 | version "1.2.1" 563 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 564 | 565 | concat-map@0.0.1: 566 | version "0.0.1" 567 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 568 | 569 | console-browserify@^1.1.0: 570 | version "1.1.0" 571 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 572 | dependencies: 573 | date-now "^0.1.4" 574 | 575 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 576 | version "1.1.0" 577 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 578 | 579 | constants-browserify@^1.0.0: 580 | version "1.0.0" 581 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 582 | 583 | convert-source-map@1.X, convert-source-map@^1.5.0: 584 | version "1.5.1" 585 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 586 | 587 | copy-descriptor@^0.1.0: 588 | version "0.1.1" 589 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 590 | 591 | core-util-is@1.0.2, core-util-is@~1.0.0: 592 | version "1.0.2" 593 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 594 | 595 | create-ecdh@^4.0.0: 596 | version "4.0.3" 597 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 598 | dependencies: 599 | bn.js "^4.1.0" 600 | elliptic "^6.0.0" 601 | 602 | create-hash@^1.1.0, create-hash@^1.1.2: 603 | version "1.2.0" 604 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 605 | dependencies: 606 | cipher-base "^1.0.1" 607 | inherits "^2.0.1" 608 | md5.js "^1.3.4" 609 | ripemd160 "^2.0.1" 610 | sha.js "^2.4.0" 611 | 612 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 613 | version "1.1.7" 614 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 615 | dependencies: 616 | cipher-base "^1.0.3" 617 | create-hash "^1.1.0" 618 | inherits "^2.0.1" 619 | ripemd160 "^2.0.0" 620 | safe-buffer "^5.0.1" 621 | sha.js "^2.4.8" 622 | 623 | cross-spawn@^5.0.1: 624 | version "5.1.0" 625 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 626 | dependencies: 627 | lru-cache "^4.0.1" 628 | shebang-command "^1.2.0" 629 | which "^1.2.9" 630 | 631 | crypto-browserify@^3.11.0: 632 | version "3.12.0" 633 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 634 | dependencies: 635 | browserify-cipher "^1.0.0" 636 | browserify-sign "^4.0.0" 637 | create-ecdh "^4.0.0" 638 | create-hash "^1.1.0" 639 | create-hmac "^1.1.0" 640 | diffie-hellman "^5.0.0" 641 | inherits "^2.0.1" 642 | pbkdf2 "^3.0.3" 643 | public-encrypt "^4.0.0" 644 | randombytes "^2.0.0" 645 | randomfill "^1.0.3" 646 | 647 | css@2.X, css@^2.2.1: 648 | version "2.2.3" 649 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be" 650 | dependencies: 651 | inherits "^2.0.1" 652 | source-map "^0.1.38" 653 | source-map-resolve "^0.5.1" 654 | urix "^0.1.0" 655 | 656 | d@1: 657 | version "1.0.0" 658 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 659 | dependencies: 660 | es5-ext "^0.10.9" 661 | 662 | dashdash@^1.12.0: 663 | version "1.14.1" 664 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 665 | dependencies: 666 | assert-plus "^1.0.0" 667 | 668 | date-now@^0.1.4: 669 | version "0.1.4" 670 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 671 | 672 | dateformat@^2.0.0: 673 | version "2.2.0" 674 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" 675 | 676 | debug-fabulous@1.X: 677 | version "1.1.0" 678 | resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-1.1.0.tgz#af8a08632465224ef4174a9f06308c3c2a1ebc8e" 679 | dependencies: 680 | debug "3.X" 681 | memoizee "0.4.X" 682 | object-assign "4.X" 683 | 684 | debug@3.X: 685 | version "3.1.0" 686 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 687 | dependencies: 688 | ms "2.0.0" 689 | 690 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 691 | version "2.6.9" 692 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 693 | dependencies: 694 | ms "2.0.0" 695 | 696 | decamelize@^1.0.0, decamelize@^1.1.1: 697 | version "1.2.0" 698 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 699 | 700 | decode-uri-component@^0.2.0: 701 | version "0.2.0" 702 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 703 | 704 | deep-extend@^0.6.0: 705 | version "0.6.0" 706 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 707 | 708 | defaults@^1.0.0: 709 | version "1.0.3" 710 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 711 | dependencies: 712 | clone "^1.0.2" 713 | 714 | define-properties@^1.1.2: 715 | version "1.1.2" 716 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 717 | dependencies: 718 | foreach "^2.0.5" 719 | object-keys "^1.0.8" 720 | 721 | define-property@^0.2.5: 722 | version "0.2.5" 723 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 724 | dependencies: 725 | is-descriptor "^0.1.0" 726 | 727 | define-property@^1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 730 | dependencies: 731 | is-descriptor "^1.0.0" 732 | 733 | define-property@^2.0.2: 734 | version "2.0.2" 735 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 736 | dependencies: 737 | is-descriptor "^1.0.2" 738 | isobject "^3.0.1" 739 | 740 | delayed-stream@~1.0.0: 741 | version "1.0.0" 742 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 743 | 744 | delegates@^1.0.0: 745 | version "1.0.0" 746 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 747 | 748 | deprecated@^0.0.1: 749 | version "0.0.1" 750 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 751 | 752 | des.js@^1.0.0: 753 | version "1.0.0" 754 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 755 | dependencies: 756 | inherits "^2.0.1" 757 | minimalistic-assert "^1.0.0" 758 | 759 | detect-file@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 762 | 763 | detect-libc@^1.0.2: 764 | version "1.0.3" 765 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 766 | 767 | detect-newline@2.X: 768 | version "2.1.0" 769 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 770 | 771 | diffie-hellman@^5.0.0: 772 | version "5.0.3" 773 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 774 | dependencies: 775 | bn.js "^4.1.0" 776 | miller-rabin "^4.0.0" 777 | randombytes "^2.0.0" 778 | 779 | domain-browser@^1.1.1: 780 | version "1.2.0" 781 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 782 | 783 | duplexer2@0.0.2: 784 | version "0.0.2" 785 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 786 | dependencies: 787 | readable-stream "~1.1.9" 788 | 789 | duplexify@^3.6.0: 790 | version "3.6.0" 791 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410" 792 | dependencies: 793 | end-of-stream "^1.0.0" 794 | inherits "^2.0.1" 795 | readable-stream "^2.0.0" 796 | stream-shift "^1.0.0" 797 | 798 | ecc-jsbn@~0.1.1: 799 | version "0.1.1" 800 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 801 | dependencies: 802 | jsbn "~0.1.0" 803 | 804 | elliptic@^6.0.0: 805 | version "6.5.3" 806 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 807 | dependencies: 808 | bn.js "^4.4.0" 809 | brorand "^1.0.1" 810 | hash.js "^1.0.0" 811 | hmac-drbg "^1.0.0" 812 | inherits "^2.0.1" 813 | minimalistic-assert "^1.0.0" 814 | minimalistic-crypto-utils "^1.0.0" 815 | 816 | emojis-list@^2.0.0: 817 | version "2.1.0" 818 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 819 | 820 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 821 | version "1.4.1" 822 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 823 | dependencies: 824 | once "^1.4.0" 825 | 826 | end-of-stream@~0.1.5: 827 | version "0.1.5" 828 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 829 | dependencies: 830 | once "~1.3.0" 831 | 832 | enhanced-resolve@^3.4.0: 833 | version "3.4.1" 834 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 835 | dependencies: 836 | graceful-fs "^4.1.2" 837 | memory-fs "^0.4.0" 838 | object-assign "^4.0.1" 839 | tapable "^0.2.7" 840 | 841 | enhanced-resolve@^4.0.0: 842 | version "4.0.0" 843 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.0.0.tgz#e34a6eaa790f62fccd71d93959f56b2b432db10a" 844 | dependencies: 845 | graceful-fs "^4.1.2" 846 | memory-fs "^0.4.0" 847 | tapable "^1.0.0" 848 | 849 | errno@^0.1.3: 850 | version "0.1.7" 851 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 852 | dependencies: 853 | prr "~1.0.1" 854 | 855 | error-ex@^1.2.0: 856 | version "1.3.2" 857 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 858 | dependencies: 859 | is-arrayish "^0.2.1" 860 | 861 | es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: 862 | version "0.10.45" 863 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.45.tgz#0bfdf7b473da5919d5adf3bd25ceb754fccc3653" 864 | dependencies: 865 | es6-iterator "~2.0.3" 866 | es6-symbol "~3.1.1" 867 | next-tick "1" 868 | 869 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 870 | version "2.0.3" 871 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 872 | dependencies: 873 | d "1" 874 | es5-ext "^0.10.35" 875 | es6-symbol "^3.1.1" 876 | 877 | es6-map@^0.1.3: 878 | version "0.1.5" 879 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 880 | dependencies: 881 | d "1" 882 | es5-ext "~0.10.14" 883 | es6-iterator "~2.0.1" 884 | es6-set "~0.1.5" 885 | es6-symbol "~3.1.1" 886 | event-emitter "~0.3.5" 887 | 888 | es6-set@~0.1.5: 889 | version "0.1.5" 890 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 891 | dependencies: 892 | d "1" 893 | es5-ext "~0.10.14" 894 | es6-iterator "~2.0.1" 895 | es6-symbol "3.1.1" 896 | event-emitter "~0.3.5" 897 | 898 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 899 | version "3.1.1" 900 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 901 | dependencies: 902 | d "1" 903 | es5-ext "~0.10.14" 904 | 905 | es6-weak-map@^2.0.1, es6-weak-map@^2.0.2: 906 | version "2.0.2" 907 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 908 | dependencies: 909 | d "1" 910 | es5-ext "^0.10.14" 911 | es6-iterator "^2.0.1" 912 | es6-symbol "^3.1.1" 913 | 914 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 915 | version "1.0.5" 916 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 917 | 918 | escope@^3.6.0: 919 | version "3.6.0" 920 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 921 | dependencies: 922 | es6-map "^0.1.3" 923 | es6-weak-map "^2.0.1" 924 | esrecurse "^4.1.0" 925 | estraverse "^4.1.1" 926 | 927 | esrecurse@^4.1.0: 928 | version "4.2.1" 929 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 930 | dependencies: 931 | estraverse "^4.1.0" 932 | 933 | estraverse@^4.1.0, estraverse@^4.1.1: 934 | version "4.2.0" 935 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 936 | 937 | event-emitter@^0.3.5, event-emitter@~0.3.5: 938 | version "0.3.5" 939 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 940 | dependencies: 941 | d "1" 942 | es5-ext "~0.10.14" 943 | 944 | events@^1.0.0: 945 | version "1.1.1" 946 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 947 | 948 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 949 | version "1.0.3" 950 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 951 | dependencies: 952 | md5.js "^1.3.4" 953 | safe-buffer "^5.1.1" 954 | 955 | execa@^0.7.0: 956 | version "0.7.0" 957 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 958 | dependencies: 959 | cross-spawn "^5.0.1" 960 | get-stream "^3.0.0" 961 | is-stream "^1.1.0" 962 | npm-run-path "^2.0.0" 963 | p-finally "^1.0.0" 964 | signal-exit "^3.0.0" 965 | strip-eof "^1.0.0" 966 | 967 | expand-brackets@^2.1.4: 968 | version "2.1.4" 969 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 970 | dependencies: 971 | debug "^2.3.3" 972 | define-property "^0.2.5" 973 | extend-shallow "^2.0.1" 974 | posix-character-classes "^0.1.0" 975 | regex-not "^1.0.0" 976 | snapdragon "^0.8.1" 977 | to-regex "^3.0.1" 978 | 979 | expand-tilde@^2.0.0, expand-tilde@^2.0.2: 980 | version "2.0.2" 981 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 982 | dependencies: 983 | homedir-polyfill "^1.0.1" 984 | 985 | extend-shallow@^2.0.1: 986 | version "2.0.1" 987 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 988 | dependencies: 989 | is-extendable "^0.1.0" 990 | 991 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 992 | version "3.0.2" 993 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 994 | dependencies: 995 | assign-symbols "^1.0.0" 996 | is-extendable "^1.0.1" 997 | 998 | extend@^3.0.0, extend@~3.0.1: 999 | version "3.0.1" 1000 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1001 | 1002 | extglob@^2.0.4: 1003 | version "2.0.4" 1004 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1005 | dependencies: 1006 | array-unique "^0.3.2" 1007 | define-property "^1.0.0" 1008 | expand-brackets "^2.1.4" 1009 | extend-shallow "^2.0.1" 1010 | fragment-cache "^0.2.1" 1011 | regex-not "^1.0.0" 1012 | snapdragon "^0.8.1" 1013 | to-regex "^3.0.1" 1014 | 1015 | extsprintf@1.3.0: 1016 | version "1.3.0" 1017 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1018 | 1019 | extsprintf@^1.2.0: 1020 | version "1.4.0" 1021 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1022 | 1023 | fancy-log@^1.1.0: 1024 | version "1.3.2" 1025 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.2.tgz#f41125e3d84f2e7d89a43d06d958c8f78be16be1" 1026 | dependencies: 1027 | ansi-gray "^0.1.1" 1028 | color-support "^1.1.3" 1029 | time-stamp "^1.0.0" 1030 | 1031 | fast-deep-equal@^1.0.0: 1032 | version "1.1.0" 1033 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1034 | 1035 | fast-deep-equal@^2.0.1: 1036 | version "2.0.1" 1037 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1038 | 1039 | fast-json-stable-stringify@^2.0.0: 1040 | version "2.0.0" 1041 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1042 | 1043 | file-loader@^1.1.11: 1044 | version "1.1.11" 1045 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.11.tgz#6fe886449b0f2a936e43cabaac0cdbfb369506f8" 1046 | dependencies: 1047 | loader-utils "^1.0.2" 1048 | schema-utils "^0.4.5" 1049 | 1050 | fill-range@^4.0.0: 1051 | version "4.0.0" 1052 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1053 | dependencies: 1054 | extend-shallow "^2.0.1" 1055 | is-number "^3.0.0" 1056 | repeat-string "^1.6.1" 1057 | to-regex-range "^2.1.0" 1058 | 1059 | find-index@^0.1.1: 1060 | version "0.1.1" 1061 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1062 | 1063 | find-up@^2.0.0: 1064 | version "2.1.0" 1065 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1066 | dependencies: 1067 | locate-path "^2.0.0" 1068 | 1069 | findup-sync@^2.0.0: 1070 | version "2.0.0" 1071 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" 1072 | dependencies: 1073 | detect-file "^1.0.0" 1074 | is-glob "^3.1.0" 1075 | micromatch "^3.0.4" 1076 | resolve-dir "^1.0.1" 1077 | 1078 | fined@^1.0.1: 1079 | version "1.1.0" 1080 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.0.tgz#b37dc844b76a2f5e7081e884f7c0ae344f153476" 1081 | dependencies: 1082 | expand-tilde "^2.0.2" 1083 | is-plain-object "^2.0.3" 1084 | object.defaults "^1.1.0" 1085 | object.pick "^1.2.0" 1086 | parse-filepath "^1.0.1" 1087 | 1088 | first-chunk-stream@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 1091 | 1092 | flagged-respawn@^1.0.0: 1093 | version "1.0.0" 1094 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.0.tgz#4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7" 1095 | 1096 | flush-write-stream@^1.0.2: 1097 | version "1.0.3" 1098 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" 1099 | dependencies: 1100 | inherits "^2.0.1" 1101 | readable-stream "^2.0.4" 1102 | 1103 | for-in@^1.0.1, for-in@^1.0.2: 1104 | version "1.0.2" 1105 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1106 | 1107 | for-own@^1.0.0: 1108 | version "1.0.0" 1109 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 1110 | dependencies: 1111 | for-in "^1.0.1" 1112 | 1113 | foreach@^2.0.5: 1114 | version "2.0.5" 1115 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1116 | 1117 | forever-agent@~0.6.1: 1118 | version "0.6.1" 1119 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1120 | 1121 | form-data@~2.3.1: 1122 | version "2.3.2" 1123 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1124 | dependencies: 1125 | asynckit "^0.4.0" 1126 | combined-stream "1.0.6" 1127 | mime-types "^2.1.12" 1128 | 1129 | fragment-cache@^0.2.1: 1130 | version "0.2.1" 1131 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1132 | dependencies: 1133 | map-cache "^0.2.2" 1134 | 1135 | fs-minipass@^1.2.5: 1136 | version "1.2.5" 1137 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1138 | dependencies: 1139 | minipass "^2.2.1" 1140 | 1141 | fs-mkdirp-stream@^1.0.0: 1142 | version "1.0.0" 1143 | resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" 1144 | dependencies: 1145 | graceful-fs "^4.1.11" 1146 | through2 "^2.0.3" 1147 | 1148 | fs.realpath@^1.0.0: 1149 | version "1.0.0" 1150 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1151 | 1152 | fsevents@^1.2.2: 1153 | version "1.2.4" 1154 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1155 | dependencies: 1156 | nan "^2.9.2" 1157 | node-pre-gyp "^0.10.0" 1158 | 1159 | function-bind@^1.1.1: 1160 | version "1.1.1" 1161 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1162 | 1163 | gauge@~2.7.3: 1164 | version "2.7.4" 1165 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1166 | dependencies: 1167 | aproba "^1.0.3" 1168 | console-control-strings "^1.0.0" 1169 | has-unicode "^2.0.0" 1170 | object-assign "^4.1.0" 1171 | signal-exit "^3.0.0" 1172 | string-width "^1.0.1" 1173 | strip-ansi "^3.0.1" 1174 | wide-align "^1.1.0" 1175 | 1176 | gaze@^0.5.1: 1177 | version "0.5.2" 1178 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 1179 | dependencies: 1180 | globule "~0.1.0" 1181 | 1182 | get-caller-file@^1.0.1: 1183 | version "1.0.2" 1184 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1185 | 1186 | get-stream@^3.0.0: 1187 | version "3.0.0" 1188 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1189 | 1190 | get-value@^2.0.3, get-value@^2.0.6: 1191 | version "2.0.6" 1192 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1193 | 1194 | getpass@^0.1.1: 1195 | version "0.1.7" 1196 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1197 | dependencies: 1198 | assert-plus "^1.0.0" 1199 | 1200 | glob-parent@^3.1.0: 1201 | version "3.1.0" 1202 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1203 | dependencies: 1204 | is-glob "^3.1.0" 1205 | path-dirname "^1.0.0" 1206 | 1207 | glob-stream@^3.1.5: 1208 | version "3.1.18" 1209 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 1210 | dependencies: 1211 | glob "^4.3.1" 1212 | glob2base "^0.0.12" 1213 | minimatch "^2.0.1" 1214 | ordered-read-streams "^0.1.0" 1215 | through2 "^0.6.1" 1216 | unique-stream "^1.0.0" 1217 | 1218 | glob-stream@^6.1.0: 1219 | version "6.1.0" 1220 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" 1221 | dependencies: 1222 | extend "^3.0.0" 1223 | glob "^7.1.1" 1224 | glob-parent "^3.1.0" 1225 | is-negated-glob "^1.0.0" 1226 | ordered-read-streams "^1.0.0" 1227 | pumpify "^1.3.5" 1228 | readable-stream "^2.1.5" 1229 | remove-trailing-separator "^1.0.1" 1230 | to-absolute-glob "^2.0.0" 1231 | unique-stream "^2.0.2" 1232 | 1233 | glob-watcher@^0.0.6: 1234 | version "0.0.6" 1235 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 1236 | dependencies: 1237 | gaze "^0.5.1" 1238 | 1239 | glob2base@^0.0.12: 1240 | version "0.0.12" 1241 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1242 | dependencies: 1243 | find-index "^0.1.1" 1244 | 1245 | glob@^4.3.1: 1246 | version "4.5.3" 1247 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 1248 | dependencies: 1249 | inflight "^1.0.4" 1250 | inherits "2" 1251 | minimatch "^2.0.1" 1252 | once "^1.3.0" 1253 | 1254 | glob@^7.0.5, glob@^7.1.1: 1255 | version "7.1.2" 1256 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1257 | dependencies: 1258 | fs.realpath "^1.0.0" 1259 | inflight "^1.0.4" 1260 | inherits "2" 1261 | minimatch "^3.0.4" 1262 | once "^1.3.0" 1263 | path-is-absolute "^1.0.0" 1264 | 1265 | glob@~3.1.21: 1266 | version "3.1.21" 1267 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 1268 | dependencies: 1269 | graceful-fs "~1.2.0" 1270 | inherits "1" 1271 | minimatch "~0.2.11" 1272 | 1273 | global-modules@^1.0.0: 1274 | version "1.0.0" 1275 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 1276 | dependencies: 1277 | global-prefix "^1.0.1" 1278 | is-windows "^1.0.1" 1279 | resolve-dir "^1.0.0" 1280 | 1281 | global-prefix@^1.0.1: 1282 | version "1.0.2" 1283 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 1284 | dependencies: 1285 | expand-tilde "^2.0.2" 1286 | homedir-polyfill "^1.0.1" 1287 | ini "^1.3.4" 1288 | is-windows "^1.0.1" 1289 | which "^1.2.14" 1290 | 1291 | globule@~0.1.0: 1292 | version "0.1.0" 1293 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 1294 | dependencies: 1295 | glob "~3.1.21" 1296 | lodash "~1.0.1" 1297 | minimatch "~0.2.11" 1298 | 1299 | glogg@^1.0.0: 1300 | version "1.0.1" 1301 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.1.tgz#dcf758e44789cc3f3d32c1f3562a3676e6a34810" 1302 | dependencies: 1303 | sparkles "^1.0.0" 1304 | 1305 | graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1306 | version "4.1.11" 1307 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1308 | 1309 | graceful-fs@^3.0.0: 1310 | version "3.0.11" 1311 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 1312 | dependencies: 1313 | natives "^1.1.0" 1314 | 1315 | graceful-fs@~1.2.0: 1316 | version "1.2.3" 1317 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1318 | 1319 | gulp-sourcemaps@^2.6.4: 1320 | version "2.6.4" 1321 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.4.tgz#cbb2008450b1bcce6cd23bf98337be751bf6e30a" 1322 | dependencies: 1323 | "@gulp-sourcemaps/identity-map" "1.X" 1324 | "@gulp-sourcemaps/map-sources" "1.X" 1325 | acorn "5.X" 1326 | convert-source-map "1.X" 1327 | css "2.X" 1328 | debug-fabulous "1.X" 1329 | detect-newline "2.X" 1330 | graceful-fs "4.X" 1331 | source-map "~0.6.0" 1332 | strip-bom-string "1.X" 1333 | through2 "2.X" 1334 | 1335 | gulp-typescript@^5.0.0-alpha.2: 1336 | version "5.0.0-alpha.2" 1337 | resolved "https://registry.yarnpkg.com/gulp-typescript/-/gulp-typescript-5.0.0-alpha.2.tgz#741a1d8fe8214479aa6f9c6eed6107af1d9a9c83" 1338 | dependencies: 1339 | ansi-colors "^2.0.1" 1340 | plugin-error "^1.0.1" 1341 | source-map "^0.7.3" 1342 | through2 "^2.0.3" 1343 | vinyl "^2.1.0" 1344 | vinyl-fs "^3.0.3" 1345 | 1346 | gulp-util@^3.0.0: 1347 | version "3.0.8" 1348 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1349 | dependencies: 1350 | array-differ "^1.0.0" 1351 | array-uniq "^1.0.2" 1352 | beeper "^1.0.0" 1353 | chalk "^1.0.0" 1354 | dateformat "^2.0.0" 1355 | fancy-log "^1.1.0" 1356 | gulplog "^1.0.0" 1357 | has-gulplog "^0.1.0" 1358 | lodash._reescape "^3.0.0" 1359 | lodash._reevaluate "^3.0.0" 1360 | lodash._reinterpolate "^3.0.0" 1361 | lodash.template "^3.0.0" 1362 | minimist "^1.1.0" 1363 | multipipe "^0.1.2" 1364 | object-assign "^3.0.0" 1365 | replace-ext "0.0.1" 1366 | through2 "^2.0.0" 1367 | vinyl "^0.5.0" 1368 | 1369 | gulp@^3.9.1: 1370 | version "3.9.1" 1371 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 1372 | dependencies: 1373 | archy "^1.0.0" 1374 | chalk "^1.0.0" 1375 | deprecated "^0.0.1" 1376 | gulp-util "^3.0.0" 1377 | interpret "^1.0.0" 1378 | liftoff "^2.1.0" 1379 | minimist "^1.1.0" 1380 | orchestrator "^0.3.0" 1381 | pretty-hrtime "^1.0.0" 1382 | semver "^4.1.0" 1383 | tildify "^1.0.0" 1384 | v8flags "^2.0.2" 1385 | vinyl-fs "^0.3.0" 1386 | 1387 | gulplog@^1.0.0: 1388 | version "1.0.0" 1389 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1390 | dependencies: 1391 | glogg "^1.0.0" 1392 | 1393 | har-schema@^2.0.0: 1394 | version "2.0.0" 1395 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1396 | 1397 | har-validator@~5.0.3: 1398 | version "5.0.3" 1399 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1400 | dependencies: 1401 | ajv "^5.1.0" 1402 | har-schema "^2.0.0" 1403 | 1404 | has-ansi@^2.0.0: 1405 | version "2.0.0" 1406 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1407 | dependencies: 1408 | ansi-regex "^2.0.0" 1409 | 1410 | has-flag@^2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1413 | 1414 | has-flag@^3.0.0: 1415 | version "3.0.0" 1416 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1417 | 1418 | has-gulplog@^0.1.0: 1419 | version "0.1.0" 1420 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1421 | dependencies: 1422 | sparkles "^1.0.0" 1423 | 1424 | has-symbols@^1.0.0: 1425 | version "1.0.0" 1426 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1427 | 1428 | has-unicode@^2.0.0: 1429 | version "2.0.1" 1430 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1431 | 1432 | has-value@^0.3.1: 1433 | version "0.3.1" 1434 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1435 | dependencies: 1436 | get-value "^2.0.3" 1437 | has-values "^0.1.4" 1438 | isobject "^2.0.0" 1439 | 1440 | has-value@^1.0.0: 1441 | version "1.0.0" 1442 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1443 | dependencies: 1444 | get-value "^2.0.6" 1445 | has-values "^1.0.0" 1446 | isobject "^3.0.0" 1447 | 1448 | has-values@^0.1.4: 1449 | version "0.1.4" 1450 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1451 | 1452 | has-values@^1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1455 | dependencies: 1456 | is-number "^3.0.0" 1457 | kind-of "^4.0.0" 1458 | 1459 | hash-base@^3.0.0: 1460 | version "3.0.4" 1461 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1462 | dependencies: 1463 | inherits "^2.0.1" 1464 | safe-buffer "^5.0.1" 1465 | 1466 | hash.js@^1.0.0, hash.js@^1.0.3: 1467 | version "1.1.7" 1468 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1469 | dependencies: 1470 | inherits "^2.0.3" 1471 | minimalistic-assert "^1.0.1" 1472 | 1473 | hmac-drbg@^1.0.0: 1474 | version "1.0.1" 1475 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1476 | dependencies: 1477 | hash.js "^1.0.3" 1478 | minimalistic-assert "^1.0.0" 1479 | minimalistic-crypto-utils "^1.0.1" 1480 | 1481 | homedir-polyfill@^1.0.1: 1482 | version "1.0.1" 1483 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1484 | dependencies: 1485 | parse-passwd "^1.0.0" 1486 | 1487 | hosted-git-info@^2.1.4: 1488 | version "2.6.0" 1489 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1490 | 1491 | http-signature@~1.2.0: 1492 | version "1.2.0" 1493 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1494 | dependencies: 1495 | assert-plus "^1.0.0" 1496 | jsprim "^1.2.2" 1497 | sshpk "^1.7.0" 1498 | 1499 | https-browserify@^1.0.0: 1500 | version "1.0.0" 1501 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1502 | 1503 | iconv-lite@^0.4.4: 1504 | version "0.4.23" 1505 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1506 | dependencies: 1507 | safer-buffer ">= 2.1.2 < 3" 1508 | 1509 | ieee754@^1.1.4: 1510 | version "1.1.12" 1511 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" 1512 | 1513 | ignore-walk@^3.0.1: 1514 | version "3.0.1" 1515 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1516 | dependencies: 1517 | minimatch "^3.0.4" 1518 | 1519 | indexof@0.0.1: 1520 | version "0.0.1" 1521 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1522 | 1523 | inflight@^1.0.4: 1524 | version "1.0.6" 1525 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1526 | dependencies: 1527 | once "^1.3.0" 1528 | wrappy "1" 1529 | 1530 | inherits@1: 1531 | version "1.0.2" 1532 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1533 | 1534 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1535 | version "2.0.4" 1536 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1537 | 1538 | inherits@2.0.1: 1539 | version "2.0.1" 1540 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1541 | 1542 | inherits@2.0.3: 1543 | version "2.0.3" 1544 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1545 | 1546 | ini@^1.3.4, ini@~1.3.0: 1547 | version "1.3.7" 1548 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1549 | 1550 | interpret@^1.0.0: 1551 | version "1.1.0" 1552 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1553 | 1554 | invert-kv@^1.0.0: 1555 | version "1.0.0" 1556 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1557 | 1558 | is-absolute@^1.0.0: 1559 | version "1.0.0" 1560 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 1561 | dependencies: 1562 | is-relative "^1.0.0" 1563 | is-windows "^1.0.1" 1564 | 1565 | is-accessor-descriptor@^0.1.6: 1566 | version "0.1.6" 1567 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1568 | dependencies: 1569 | kind-of "^3.0.2" 1570 | 1571 | is-accessor-descriptor@^1.0.0: 1572 | version "1.0.0" 1573 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1574 | dependencies: 1575 | kind-of "^6.0.0" 1576 | 1577 | is-arrayish@^0.2.1: 1578 | version "0.2.1" 1579 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1580 | 1581 | is-binary-path@^1.0.0: 1582 | version "1.0.1" 1583 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1584 | dependencies: 1585 | binary-extensions "^1.0.0" 1586 | 1587 | is-buffer@^1.1.5: 1588 | version "1.1.6" 1589 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1590 | 1591 | is-builtin-module@^1.0.0: 1592 | version "1.0.0" 1593 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1594 | dependencies: 1595 | builtin-modules "^1.0.0" 1596 | 1597 | is-data-descriptor@^0.1.4: 1598 | version "0.1.4" 1599 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1600 | dependencies: 1601 | kind-of "^3.0.2" 1602 | 1603 | is-data-descriptor@^1.0.0: 1604 | version "1.0.0" 1605 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1606 | dependencies: 1607 | kind-of "^6.0.0" 1608 | 1609 | is-descriptor@^0.1.0: 1610 | version "0.1.6" 1611 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1612 | dependencies: 1613 | is-accessor-descriptor "^0.1.6" 1614 | is-data-descriptor "^0.1.4" 1615 | kind-of "^5.0.0" 1616 | 1617 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1618 | version "1.0.2" 1619 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1620 | dependencies: 1621 | is-accessor-descriptor "^1.0.0" 1622 | is-data-descriptor "^1.0.0" 1623 | kind-of "^6.0.2" 1624 | 1625 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1626 | version "0.1.1" 1627 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1628 | 1629 | is-extendable@^1.0.1: 1630 | version "1.0.1" 1631 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1632 | dependencies: 1633 | is-plain-object "^2.0.4" 1634 | 1635 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1636 | version "2.1.1" 1637 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1638 | 1639 | is-fullwidth-code-point@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1642 | dependencies: 1643 | number-is-nan "^1.0.0" 1644 | 1645 | is-fullwidth-code-point@^2.0.0: 1646 | version "2.0.0" 1647 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1648 | 1649 | is-glob@^3.1.0: 1650 | version "3.1.0" 1651 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1652 | dependencies: 1653 | is-extglob "^2.1.0" 1654 | 1655 | is-glob@^4.0.0: 1656 | version "4.0.0" 1657 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1658 | dependencies: 1659 | is-extglob "^2.1.1" 1660 | 1661 | is-negated-glob@^1.0.0: 1662 | version "1.0.0" 1663 | resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" 1664 | 1665 | is-number@^3.0.0: 1666 | version "3.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1668 | dependencies: 1669 | kind-of "^3.0.2" 1670 | 1671 | is-number@^4.0.0: 1672 | version "4.0.0" 1673 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1674 | 1675 | is-odd@^2.0.0: 1676 | version "2.0.0" 1677 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1678 | dependencies: 1679 | is-number "^4.0.0" 1680 | 1681 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1682 | version "2.0.4" 1683 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1684 | dependencies: 1685 | isobject "^3.0.1" 1686 | 1687 | is-promise@^2.1: 1688 | version "2.1.0" 1689 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1690 | 1691 | is-relative@^1.0.0: 1692 | version "1.0.0" 1693 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1694 | dependencies: 1695 | is-unc-path "^1.0.0" 1696 | 1697 | is-stream@^1.1.0: 1698 | version "1.1.0" 1699 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1700 | 1701 | is-typedarray@~1.0.0: 1702 | version "1.0.0" 1703 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1704 | 1705 | is-unc-path@^1.0.0: 1706 | version "1.0.0" 1707 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 1708 | dependencies: 1709 | unc-path-regex "^0.1.2" 1710 | 1711 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1712 | version "0.2.1" 1713 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1714 | 1715 | is-valid-glob@^1.0.0: 1716 | version "1.0.0" 1717 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" 1718 | 1719 | is-windows@^1.0.1, is-windows@^1.0.2: 1720 | version "1.0.2" 1721 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1722 | 1723 | isarray@0.0.1: 1724 | version "0.0.1" 1725 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1726 | 1727 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1728 | version "1.0.0" 1729 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1730 | 1731 | isexe@^2.0.0: 1732 | version "2.0.0" 1733 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1734 | 1735 | isobject@^2.0.0: 1736 | version "2.1.0" 1737 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1738 | dependencies: 1739 | isarray "1.0.0" 1740 | 1741 | isobject@^3.0.0, isobject@^3.0.1: 1742 | version "3.0.1" 1743 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1744 | 1745 | isstream@~0.1.2: 1746 | version "0.1.2" 1747 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1748 | 1749 | jsbn@~0.1.0: 1750 | version "0.1.1" 1751 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1752 | 1753 | json-loader@^0.5.4, json-loader@^0.5.7: 1754 | version "0.5.7" 1755 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1756 | 1757 | json-schema-traverse@^0.3.0: 1758 | version "0.3.1" 1759 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1760 | 1761 | json-schema-traverse@^0.4.1: 1762 | version "0.4.1" 1763 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1764 | 1765 | json-schema@0.2.3: 1766 | version "0.2.3" 1767 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1768 | 1769 | json-stable-stringify@^1.0.0: 1770 | version "1.0.1" 1771 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1772 | dependencies: 1773 | jsonify "~0.0.0" 1774 | 1775 | json-stringify-safe@~5.0.1: 1776 | version "5.0.1" 1777 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1778 | 1779 | json5@^0.5.0, json5@^0.5.1: 1780 | version "0.5.1" 1781 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1782 | 1783 | jsonify@~0.0.0: 1784 | version "0.0.0" 1785 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1786 | 1787 | jsprim@^1.2.2: 1788 | version "1.4.1" 1789 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1790 | dependencies: 1791 | assert-plus "1.0.0" 1792 | extsprintf "1.3.0" 1793 | json-schema "0.2.3" 1794 | verror "1.10.0" 1795 | 1796 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1797 | version "3.2.2" 1798 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1799 | dependencies: 1800 | is-buffer "^1.1.5" 1801 | 1802 | kind-of@^4.0.0: 1803 | version "4.0.0" 1804 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1805 | dependencies: 1806 | is-buffer "^1.1.5" 1807 | 1808 | kind-of@^5.0.0: 1809 | version "5.1.0" 1810 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1811 | 1812 | kind-of@^6.0.0, kind-of@^6.0.2: 1813 | version "6.0.2" 1814 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1815 | 1816 | lazy-cache@^1.0.3: 1817 | version "1.0.4" 1818 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1819 | 1820 | lazystream@^1.0.0: 1821 | version "1.0.0" 1822 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1823 | dependencies: 1824 | readable-stream "^2.0.5" 1825 | 1826 | lcid@^1.0.0: 1827 | version "1.0.0" 1828 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1829 | dependencies: 1830 | invert-kv "^1.0.0" 1831 | 1832 | lead@^1.0.0: 1833 | version "1.0.0" 1834 | resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" 1835 | dependencies: 1836 | flush-write-stream "^1.0.2" 1837 | 1838 | liftoff@^2.1.0: 1839 | version "2.5.0" 1840 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec" 1841 | dependencies: 1842 | extend "^3.0.0" 1843 | findup-sync "^2.0.0" 1844 | fined "^1.0.1" 1845 | flagged-respawn "^1.0.0" 1846 | is-plain-object "^2.0.4" 1847 | object.map "^1.0.0" 1848 | rechoir "^0.6.2" 1849 | resolve "^1.1.7" 1850 | 1851 | load-json-file@^2.0.0: 1852 | version "2.0.0" 1853 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1854 | dependencies: 1855 | graceful-fs "^4.1.2" 1856 | parse-json "^2.2.0" 1857 | pify "^2.0.0" 1858 | strip-bom "^3.0.0" 1859 | 1860 | loader-runner@^2.3.0: 1861 | version "2.3.0" 1862 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1863 | 1864 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1865 | version "1.1.0" 1866 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1867 | dependencies: 1868 | big.js "^3.1.3" 1869 | emojis-list "^2.0.0" 1870 | json5 "^0.5.0" 1871 | 1872 | locate-path@^2.0.0: 1873 | version "2.0.0" 1874 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1875 | dependencies: 1876 | p-locate "^2.0.0" 1877 | path-exists "^3.0.0" 1878 | 1879 | lodash._basecopy@^3.0.0: 1880 | version "3.0.1" 1881 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1882 | 1883 | lodash._basetostring@^3.0.0: 1884 | version "3.0.1" 1885 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1886 | 1887 | lodash._basevalues@^3.0.0: 1888 | version "3.0.0" 1889 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1890 | 1891 | lodash._getnative@^3.0.0: 1892 | version "3.9.1" 1893 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1894 | 1895 | lodash._isiterateecall@^3.0.0: 1896 | version "3.0.9" 1897 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1898 | 1899 | lodash._reescape@^3.0.0: 1900 | version "3.0.0" 1901 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1902 | 1903 | lodash._reevaluate@^3.0.0: 1904 | version "3.0.0" 1905 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1906 | 1907 | lodash._reinterpolate@^3.0.0: 1908 | version "3.0.0" 1909 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1910 | 1911 | lodash._root@^3.0.0: 1912 | version "3.0.1" 1913 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1914 | 1915 | lodash.debounce@^4.0.8: 1916 | version "4.0.8" 1917 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1918 | 1919 | lodash.escape@^3.0.0: 1920 | version "3.2.0" 1921 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1922 | dependencies: 1923 | lodash._root "^3.0.0" 1924 | 1925 | lodash.isarguments@^3.0.0: 1926 | version "3.1.0" 1927 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1928 | 1929 | lodash.isarray@^3.0.0: 1930 | version "3.0.4" 1931 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1932 | 1933 | lodash.keys@^3.0.0: 1934 | version "3.1.2" 1935 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1936 | dependencies: 1937 | lodash._getnative "^3.0.0" 1938 | lodash.isarguments "^3.0.0" 1939 | lodash.isarray "^3.0.0" 1940 | 1941 | lodash.restparam@^3.0.0: 1942 | version "3.6.1" 1943 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1944 | 1945 | lodash.template@^3.0.0: 1946 | version "3.6.2" 1947 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1948 | dependencies: 1949 | lodash._basecopy "^3.0.0" 1950 | lodash._basetostring "^3.0.0" 1951 | lodash._basevalues "^3.0.0" 1952 | lodash._isiterateecall "^3.0.0" 1953 | lodash._reinterpolate "^3.0.0" 1954 | lodash.escape "^3.0.0" 1955 | lodash.keys "^3.0.0" 1956 | lodash.restparam "^3.0.0" 1957 | lodash.templatesettings "^3.0.0" 1958 | 1959 | lodash.templatesettings@^3.0.0: 1960 | version "3.1.1" 1961 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1962 | dependencies: 1963 | lodash._reinterpolate "^3.0.0" 1964 | lodash.escape "^3.0.0" 1965 | 1966 | lodash@^4.17.10: 1967 | version "4.17.10" 1968 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1969 | 1970 | lodash@~1.0.1: 1971 | version "1.0.2" 1972 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 1973 | 1974 | longest@^1.0.1: 1975 | version "1.0.1" 1976 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1977 | 1978 | lru-cache@2: 1979 | version "2.7.3" 1980 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1981 | 1982 | lru-cache@^4.0.1: 1983 | version "4.1.3" 1984 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1985 | dependencies: 1986 | pseudomap "^1.0.2" 1987 | yallist "^2.1.2" 1988 | 1989 | lru-queue@0.1: 1990 | version "0.1.0" 1991 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 1992 | dependencies: 1993 | es5-ext "~0.10.2" 1994 | 1995 | make-iterator@^1.0.0: 1996 | version "1.0.1" 1997 | resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" 1998 | dependencies: 1999 | kind-of "^6.0.2" 2000 | 2001 | map-cache@^0.2.0, map-cache@^0.2.2: 2002 | version "0.2.2" 2003 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2004 | 2005 | map-visit@^1.0.0: 2006 | version "1.0.0" 2007 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2008 | dependencies: 2009 | object-visit "^1.0.0" 2010 | 2011 | md5.js@^1.3.4: 2012 | version "1.3.4" 2013 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2014 | dependencies: 2015 | hash-base "^3.0.0" 2016 | inherits "^2.0.1" 2017 | 2018 | mem@^1.1.0: 2019 | version "1.1.0" 2020 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2021 | dependencies: 2022 | mimic-fn "^1.0.0" 2023 | 2024 | memoizee@0.4.X: 2025 | version "0.4.12" 2026 | resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.12.tgz#780e99a219c50c549be6d0fc61765080975c58fb" 2027 | dependencies: 2028 | d "1" 2029 | es5-ext "^0.10.30" 2030 | es6-weak-map "^2.0.2" 2031 | event-emitter "^0.3.5" 2032 | is-promise "^2.1" 2033 | lru-queue "0.1" 2034 | next-tick "1" 2035 | timers-ext "^0.1.2" 2036 | 2037 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2038 | version "0.4.1" 2039 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2040 | dependencies: 2041 | errno "^0.1.3" 2042 | readable-stream "^2.0.1" 2043 | 2044 | micromatch@^3.0.4, micromatch@^3.1.4: 2045 | version "3.1.10" 2046 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2047 | dependencies: 2048 | arr-diff "^4.0.0" 2049 | array-unique "^0.3.2" 2050 | braces "^2.3.1" 2051 | define-property "^2.0.2" 2052 | extend-shallow "^3.0.2" 2053 | extglob "^2.0.4" 2054 | fragment-cache "^0.2.1" 2055 | kind-of "^6.0.2" 2056 | nanomatch "^1.2.9" 2057 | object.pick "^1.3.0" 2058 | regex-not "^1.0.0" 2059 | snapdragon "^0.8.1" 2060 | to-regex "^3.0.2" 2061 | 2062 | miller-rabin@^4.0.0: 2063 | version "4.0.1" 2064 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2065 | dependencies: 2066 | bn.js "^4.0.0" 2067 | brorand "^1.0.1" 2068 | 2069 | mime-db@~1.33.0: 2070 | version "1.33.0" 2071 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2072 | 2073 | mime-types@^2.1.12, mime-types@~2.1.17: 2074 | version "2.1.18" 2075 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2076 | dependencies: 2077 | mime-db "~1.33.0" 2078 | 2079 | mimic-fn@^1.0.0: 2080 | version "1.2.0" 2081 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2082 | 2083 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 2084 | version "1.0.1" 2085 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 2086 | 2087 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2088 | version "1.0.1" 2089 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2090 | 2091 | minimatch@^2.0.1: 2092 | version "2.0.10" 2093 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2094 | dependencies: 2095 | brace-expansion "^1.0.0" 2096 | 2097 | minimatch@^3.0.2, minimatch@^3.0.4: 2098 | version "3.0.4" 2099 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2100 | dependencies: 2101 | brace-expansion "^1.1.7" 2102 | 2103 | minimatch@~0.2.11: 2104 | version "0.2.14" 2105 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 2106 | dependencies: 2107 | lru-cache "2" 2108 | sigmund "~1.0.0" 2109 | 2110 | minimist@0.0.8: 2111 | version "0.0.8" 2112 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2113 | 2114 | minimist@^1.1.0, minimist@^1.2.0: 2115 | version "1.2.0" 2116 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2117 | 2118 | minipass@^2.2.1, minipass@^2.3.3: 2119 | version "2.3.3" 2120 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2121 | dependencies: 2122 | safe-buffer "^5.1.2" 2123 | yallist "^3.0.0" 2124 | 2125 | minizlib@^1.1.0: 2126 | version "1.1.0" 2127 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2128 | dependencies: 2129 | minipass "^2.2.1" 2130 | 2131 | mixin-deep@^1.2.0: 2132 | version "1.3.2" 2133 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2134 | dependencies: 2135 | for-in "^1.0.2" 2136 | is-extendable "^1.0.1" 2137 | 2138 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 2139 | version "0.5.1" 2140 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2141 | dependencies: 2142 | minimist "0.0.8" 2143 | 2144 | ms@2.0.0: 2145 | version "2.0.0" 2146 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2147 | 2148 | multipipe@^0.1.2: 2149 | version "0.1.2" 2150 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2151 | dependencies: 2152 | duplexer2 "0.0.2" 2153 | 2154 | nan@^2.9.2: 2155 | version "2.10.0" 2156 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2157 | 2158 | nanomatch@^1.2.9: 2159 | version "1.2.9" 2160 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2161 | dependencies: 2162 | arr-diff "^4.0.0" 2163 | array-unique "^0.3.2" 2164 | define-property "^2.0.2" 2165 | extend-shallow "^3.0.2" 2166 | fragment-cache "^0.2.1" 2167 | is-odd "^2.0.0" 2168 | is-windows "^1.0.2" 2169 | kind-of "^6.0.2" 2170 | object.pick "^1.3.0" 2171 | regex-not "^1.0.0" 2172 | snapdragon "^0.8.1" 2173 | to-regex "^3.0.1" 2174 | 2175 | natives@^1.1.0: 2176 | version "1.1.4" 2177 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.4.tgz#2f0f224fc9a7dd53407c7667c84cf8dbe773de58" 2178 | 2179 | needle@^2.2.0: 2180 | version "2.2.1" 2181 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2182 | dependencies: 2183 | debug "^2.1.2" 2184 | iconv-lite "^0.4.4" 2185 | sax "^1.2.4" 2186 | 2187 | neo-async@^2.5.0: 2188 | version "2.5.1" 2189 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee" 2190 | 2191 | next-tick@1: 2192 | version "1.0.0" 2193 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2194 | 2195 | node-libs-browser@^2.0.0: 2196 | version "2.1.0" 2197 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2198 | dependencies: 2199 | assert "^1.1.1" 2200 | browserify-zlib "^0.2.0" 2201 | buffer "^4.3.0" 2202 | console-browserify "^1.1.0" 2203 | constants-browserify "^1.0.0" 2204 | crypto-browserify "^3.11.0" 2205 | domain-browser "^1.1.1" 2206 | events "^1.0.0" 2207 | https-browserify "^1.0.0" 2208 | os-browserify "^0.3.0" 2209 | path-browserify "0.0.0" 2210 | process "^0.11.10" 2211 | punycode "^1.2.4" 2212 | querystring-es3 "^0.2.0" 2213 | readable-stream "^2.3.3" 2214 | stream-browserify "^2.0.1" 2215 | stream-http "^2.7.2" 2216 | string_decoder "^1.0.0" 2217 | timers-browserify "^2.0.4" 2218 | tty-browserify "0.0.0" 2219 | url "^0.11.0" 2220 | util "^0.10.3" 2221 | vm-browserify "0.0.4" 2222 | 2223 | node-pre-gyp@^0.10.0: 2224 | version "0.10.0" 2225 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 2226 | dependencies: 2227 | detect-libc "^1.0.2" 2228 | mkdirp "^0.5.1" 2229 | needle "^2.2.0" 2230 | nopt "^4.0.1" 2231 | npm-packlist "^1.1.6" 2232 | npmlog "^4.0.2" 2233 | rc "^1.1.7" 2234 | rimraf "^2.6.1" 2235 | semver "^5.3.0" 2236 | tar "^4" 2237 | 2238 | nopt@^4.0.1: 2239 | version "4.0.1" 2240 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2241 | dependencies: 2242 | abbrev "1" 2243 | osenv "^0.1.4" 2244 | 2245 | normalize-package-data@^2.3.2: 2246 | version "2.4.0" 2247 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2248 | dependencies: 2249 | hosted-git-info "^2.1.4" 2250 | is-builtin-module "^1.0.0" 2251 | semver "2 || 3 || 4 || 5" 2252 | validate-npm-package-license "^3.0.1" 2253 | 2254 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2255 | version "2.1.1" 2256 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2257 | dependencies: 2258 | remove-trailing-separator "^1.0.1" 2259 | 2260 | now-and-later@^2.0.0: 2261 | version "2.0.0" 2262 | resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.0.tgz#bc61cbb456d79cb32207ce47ca05136ff2e7d6ee" 2263 | dependencies: 2264 | once "^1.3.2" 2265 | 2266 | npm-bundled@^1.0.1: 2267 | version "1.0.3" 2268 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2269 | 2270 | npm-packlist@^1.1.6: 2271 | version "1.1.10" 2272 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2273 | dependencies: 2274 | ignore-walk "^3.0.1" 2275 | npm-bundled "^1.0.1" 2276 | 2277 | npm-run-path@^2.0.0: 2278 | version "2.0.2" 2279 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2280 | dependencies: 2281 | path-key "^2.0.0" 2282 | 2283 | npmlog@^4.0.2: 2284 | version "4.1.2" 2285 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2286 | dependencies: 2287 | are-we-there-yet "~1.1.2" 2288 | console-control-strings "~1.1.0" 2289 | gauge "~2.7.3" 2290 | set-blocking "~2.0.0" 2291 | 2292 | number-is-nan@^1.0.0: 2293 | version "1.0.1" 2294 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2295 | 2296 | oauth-sign@~0.8.2: 2297 | version "0.8.2" 2298 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2299 | 2300 | object-assign@4.X, object-assign@^4.0.1, object-assign@^4.1.0: 2301 | version "4.1.1" 2302 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2303 | 2304 | object-assign@^3.0.0: 2305 | version "3.0.0" 2306 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2307 | 2308 | object-copy@^0.1.0: 2309 | version "0.1.0" 2310 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2311 | dependencies: 2312 | copy-descriptor "^0.1.0" 2313 | define-property "^0.2.5" 2314 | kind-of "^3.0.3" 2315 | 2316 | object-keys@^1.0.11, object-keys@^1.0.8: 2317 | version "1.0.12" 2318 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2319 | 2320 | object-visit@^1.0.0: 2321 | version "1.0.1" 2322 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2323 | dependencies: 2324 | isobject "^3.0.0" 2325 | 2326 | object.assign@^4.0.4: 2327 | version "4.1.0" 2328 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2329 | dependencies: 2330 | define-properties "^1.1.2" 2331 | function-bind "^1.1.1" 2332 | has-symbols "^1.0.0" 2333 | object-keys "^1.0.11" 2334 | 2335 | object.defaults@^1.1.0: 2336 | version "1.1.0" 2337 | resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" 2338 | dependencies: 2339 | array-each "^1.0.1" 2340 | array-slice "^1.0.0" 2341 | for-own "^1.0.0" 2342 | isobject "^3.0.0" 2343 | 2344 | object.map@^1.0.0: 2345 | version "1.0.1" 2346 | resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" 2347 | dependencies: 2348 | for-own "^1.0.0" 2349 | make-iterator "^1.0.0" 2350 | 2351 | object.pick@^1.2.0, object.pick@^1.3.0: 2352 | version "1.3.0" 2353 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2354 | dependencies: 2355 | isobject "^3.0.1" 2356 | 2357 | once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: 2358 | version "1.4.0" 2359 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2360 | dependencies: 2361 | wrappy "1" 2362 | 2363 | once@~1.3.0: 2364 | version "1.3.3" 2365 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2366 | dependencies: 2367 | wrappy "1" 2368 | 2369 | orchestrator@^0.3.0: 2370 | version "0.3.8" 2371 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 2372 | dependencies: 2373 | end-of-stream "~0.1.5" 2374 | sequencify "~0.0.7" 2375 | stream-consume "~0.1.0" 2376 | 2377 | ordered-read-streams@^0.1.0: 2378 | version "0.1.0" 2379 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 2380 | 2381 | ordered-read-streams@^1.0.0: 2382 | version "1.0.1" 2383 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" 2384 | dependencies: 2385 | readable-stream "^2.0.1" 2386 | 2387 | os-browserify@^0.3.0: 2388 | version "0.3.0" 2389 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2390 | 2391 | os-homedir@^1.0.0: 2392 | version "1.0.2" 2393 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2394 | 2395 | os-locale@^2.0.0: 2396 | version "2.1.0" 2397 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2398 | dependencies: 2399 | execa "^0.7.0" 2400 | lcid "^1.0.0" 2401 | mem "^1.1.0" 2402 | 2403 | os-tmpdir@^1.0.0: 2404 | version "1.0.2" 2405 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2406 | 2407 | osenv@^0.1.4: 2408 | version "0.1.5" 2409 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2410 | dependencies: 2411 | os-homedir "^1.0.0" 2412 | os-tmpdir "^1.0.0" 2413 | 2414 | p-finally@^1.0.0: 2415 | version "1.0.0" 2416 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2417 | 2418 | p-limit@^1.1.0: 2419 | version "1.3.0" 2420 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2421 | dependencies: 2422 | p-try "^1.0.0" 2423 | 2424 | p-locate@^2.0.0: 2425 | version "2.0.0" 2426 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2427 | dependencies: 2428 | p-limit "^1.1.0" 2429 | 2430 | p-try@^1.0.0: 2431 | version "1.0.0" 2432 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2433 | 2434 | pako@~1.0.5: 2435 | version "1.0.6" 2436 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2437 | 2438 | parse-asn1@^5.0.0: 2439 | version "5.1.1" 2440 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" 2441 | dependencies: 2442 | asn1.js "^4.0.0" 2443 | browserify-aes "^1.0.0" 2444 | create-hash "^1.1.0" 2445 | evp_bytestokey "^1.0.0" 2446 | pbkdf2 "^3.0.3" 2447 | 2448 | parse-filepath@^1.0.1: 2449 | version "1.0.2" 2450 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" 2451 | dependencies: 2452 | is-absolute "^1.0.0" 2453 | map-cache "^0.2.0" 2454 | path-root "^0.1.1" 2455 | 2456 | parse-json@^2.2.0: 2457 | version "2.2.0" 2458 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2459 | dependencies: 2460 | error-ex "^1.2.0" 2461 | 2462 | parse-passwd@^1.0.0: 2463 | version "1.0.0" 2464 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2465 | 2466 | pascalcase@^0.1.1: 2467 | version "0.1.1" 2468 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2469 | 2470 | path-browserify@0.0.0: 2471 | version "0.0.0" 2472 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2473 | 2474 | path-dirname@^1.0.0: 2475 | version "1.0.2" 2476 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2477 | 2478 | path-exists@^3.0.0: 2479 | version "3.0.0" 2480 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2481 | 2482 | path-is-absolute@^1.0.0: 2483 | version "1.0.1" 2484 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 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 | 2490 | path-parse@^1.0.5: 2491 | version "1.0.5" 2492 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2493 | 2494 | path-root-regex@^0.1.0: 2495 | version "0.1.2" 2496 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2497 | 2498 | path-root@^0.1.1: 2499 | version "0.1.1" 2500 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2501 | dependencies: 2502 | path-root-regex "^0.1.0" 2503 | 2504 | path-type@^2.0.0: 2505 | version "2.0.0" 2506 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2507 | dependencies: 2508 | pify "^2.0.0" 2509 | 2510 | pbkdf2@^3.0.3: 2511 | version "3.0.16" 2512 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.16.tgz#7404208ec6b01b62d85bf83853a8064f8d9c2a5c" 2513 | dependencies: 2514 | create-hash "^1.1.2" 2515 | create-hmac "^1.1.4" 2516 | ripemd160 "^2.0.1" 2517 | safe-buffer "^5.0.1" 2518 | sha.js "^2.4.8" 2519 | 2520 | performance-now@^2.1.0: 2521 | version "2.1.0" 2522 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2523 | 2524 | pify@^2.0.0: 2525 | version "2.3.0" 2526 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2527 | 2528 | plugin-error@^1.0.1: 2529 | version "1.0.1" 2530 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c" 2531 | dependencies: 2532 | ansi-colors "^1.0.1" 2533 | arr-diff "^4.0.0" 2534 | arr-union "^3.1.0" 2535 | extend-shallow "^3.0.2" 2536 | 2537 | posix-character-classes@^0.1.0: 2538 | version "0.1.1" 2539 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2540 | 2541 | pretty-hrtime@^1.0.0: 2542 | version "1.0.3" 2543 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2544 | 2545 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 2546 | version "2.0.0" 2547 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2548 | 2549 | process@^0.11.10: 2550 | version "0.11.10" 2551 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2552 | 2553 | prr@~1.0.1: 2554 | version "1.0.1" 2555 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2556 | 2557 | pseudomap@^1.0.2: 2558 | version "1.0.2" 2559 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2560 | 2561 | public-encrypt@^4.0.0: 2562 | version "4.0.2" 2563 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" 2564 | dependencies: 2565 | bn.js "^4.1.0" 2566 | browserify-rsa "^4.0.0" 2567 | create-hash "^1.1.0" 2568 | parse-asn1 "^5.0.0" 2569 | randombytes "^2.0.1" 2570 | 2571 | pump@^2.0.0: 2572 | version "2.0.1" 2573 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2574 | dependencies: 2575 | end-of-stream "^1.1.0" 2576 | once "^1.3.1" 2577 | 2578 | pumpify@^1.3.5: 2579 | version "1.5.1" 2580 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 2581 | dependencies: 2582 | duplexify "^3.6.0" 2583 | inherits "^2.0.3" 2584 | pump "^2.0.0" 2585 | 2586 | punycode@1.3.2: 2587 | version "1.3.2" 2588 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2589 | 2590 | punycode@^1.2.4, punycode@^1.4.1: 2591 | version "1.4.1" 2592 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2593 | 2594 | punycode@^2.1.0: 2595 | version "2.1.1" 2596 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2597 | 2598 | qs@~6.5.1: 2599 | version "6.5.2" 2600 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2601 | 2602 | querystring-es3@^0.2.0: 2603 | version "0.2.1" 2604 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2605 | 2606 | querystring@0.2.0: 2607 | version "0.2.0" 2608 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2609 | 2610 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2611 | version "2.0.6" 2612 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 2613 | dependencies: 2614 | safe-buffer "^5.1.0" 2615 | 2616 | randomfill@^1.0.3: 2617 | version "1.0.4" 2618 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 2619 | dependencies: 2620 | randombytes "^2.0.5" 2621 | safe-buffer "^5.1.0" 2622 | 2623 | rc@^1.1.7: 2624 | version "1.2.8" 2625 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2626 | dependencies: 2627 | deep-extend "^0.6.0" 2628 | ini "~1.3.0" 2629 | minimist "^1.2.0" 2630 | strip-json-comments "~2.0.1" 2631 | 2632 | read-pkg-up@^2.0.0: 2633 | version "2.0.0" 2634 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2635 | dependencies: 2636 | find-up "^2.0.0" 2637 | read-pkg "^2.0.0" 2638 | 2639 | read-pkg@^2.0.0: 2640 | version "2.0.0" 2641 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2642 | dependencies: 2643 | load-json-file "^2.0.0" 2644 | normalize-package-data "^2.3.2" 2645 | path-type "^2.0.0" 2646 | 2647 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2648 | version "1.0.34" 2649 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2650 | dependencies: 2651 | core-util-is "~1.0.0" 2652 | inherits "~2.0.1" 2653 | isarray "0.0.1" 2654 | string_decoder "~0.10.x" 2655 | 2656 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6: 2657 | version "2.3.6" 2658 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2659 | dependencies: 2660 | core-util-is "~1.0.0" 2661 | inherits "~2.0.3" 2662 | isarray "~1.0.0" 2663 | process-nextick-args "~2.0.0" 2664 | safe-buffer "~5.1.1" 2665 | string_decoder "~1.1.1" 2666 | util-deprecate "~1.0.1" 2667 | 2668 | readable-stream@~1.1.9: 2669 | version "1.1.14" 2670 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2671 | dependencies: 2672 | core-util-is "~1.0.0" 2673 | inherits "~2.0.1" 2674 | isarray "0.0.1" 2675 | string_decoder "~0.10.x" 2676 | 2677 | readdirp@^2.0.0: 2678 | version "2.1.0" 2679 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2680 | dependencies: 2681 | graceful-fs "^4.1.2" 2682 | minimatch "^3.0.2" 2683 | readable-stream "^2.0.2" 2684 | set-immediate-shim "^1.0.1" 2685 | 2686 | rechoir@^0.6.2: 2687 | version "0.6.2" 2688 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2689 | dependencies: 2690 | resolve "^1.1.6" 2691 | 2692 | regex-not@^1.0.0, regex-not@^1.0.2: 2693 | version "1.0.2" 2694 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2695 | dependencies: 2696 | extend-shallow "^3.0.2" 2697 | safe-regex "^1.1.0" 2698 | 2699 | remove-bom-buffer@^3.0.0: 2700 | version "3.0.0" 2701 | resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" 2702 | dependencies: 2703 | is-buffer "^1.1.5" 2704 | is-utf8 "^0.2.1" 2705 | 2706 | remove-bom-stream@^1.2.0: 2707 | version "1.2.0" 2708 | resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" 2709 | dependencies: 2710 | remove-bom-buffer "^3.0.0" 2711 | safe-buffer "^5.1.0" 2712 | through2 "^2.0.3" 2713 | 2714 | remove-trailing-separator@^1.0.1: 2715 | version "1.1.0" 2716 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2717 | 2718 | repeat-element@^1.1.2: 2719 | version "1.1.2" 2720 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2721 | 2722 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2723 | version "1.6.1" 2724 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2725 | 2726 | replace-ext@0.0.1: 2727 | version "0.0.1" 2728 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2729 | 2730 | replace-ext@^1.0.0: 2731 | version "1.0.0" 2732 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 2733 | 2734 | request@^2.69.0: 2735 | version "2.87.0" 2736 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 2737 | dependencies: 2738 | aws-sign2 "~0.7.0" 2739 | aws4 "^1.6.0" 2740 | caseless "~0.12.0" 2741 | combined-stream "~1.0.5" 2742 | extend "~3.0.1" 2743 | forever-agent "~0.6.1" 2744 | form-data "~2.3.1" 2745 | har-validator "~5.0.3" 2746 | http-signature "~1.2.0" 2747 | is-typedarray "~1.0.0" 2748 | isstream "~0.1.2" 2749 | json-stringify-safe "~5.0.1" 2750 | mime-types "~2.1.17" 2751 | oauth-sign "~0.8.2" 2752 | performance-now "^2.1.0" 2753 | qs "~6.5.1" 2754 | safe-buffer "^5.1.1" 2755 | tough-cookie "~2.3.3" 2756 | tunnel-agent "^0.6.0" 2757 | uuid "^3.1.0" 2758 | 2759 | require-directory@^2.1.1: 2760 | version "2.1.1" 2761 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2762 | 2763 | require-main-filename@^1.0.1: 2764 | version "1.0.1" 2765 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2766 | 2767 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2768 | version "1.0.1" 2769 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 2770 | dependencies: 2771 | expand-tilde "^2.0.0" 2772 | global-modules "^1.0.0" 2773 | 2774 | resolve-options@^1.1.0: 2775 | version "1.1.0" 2776 | resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" 2777 | dependencies: 2778 | value-or-function "^3.0.0" 2779 | 2780 | resolve-url@^0.2.1: 2781 | version "0.2.1" 2782 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2783 | 2784 | resolve@^1.1.6, resolve@^1.1.7: 2785 | version "1.8.1" 2786 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2787 | dependencies: 2788 | path-parse "^1.0.5" 2789 | 2790 | ret@~0.1.10: 2791 | version "0.1.15" 2792 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2793 | 2794 | right-align@^0.1.1: 2795 | version "0.1.3" 2796 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2797 | dependencies: 2798 | align-text "^0.1.1" 2799 | 2800 | rimraf@^2.6.1: 2801 | version "2.6.2" 2802 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2803 | dependencies: 2804 | glob "^7.0.5" 2805 | 2806 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2807 | version "2.0.2" 2808 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2809 | dependencies: 2810 | hash-base "^3.0.0" 2811 | inherits "^2.0.1" 2812 | 2813 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2814 | version "5.1.2" 2815 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2816 | 2817 | safe-regex@^1.1.0: 2818 | version "1.1.0" 2819 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2820 | dependencies: 2821 | ret "~0.1.10" 2822 | 2823 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: 2824 | version "2.1.2" 2825 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2826 | 2827 | sax@^1.2.4: 2828 | version "1.2.4" 2829 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2830 | 2831 | schema-utils@^0.4.5: 2832 | version "0.4.5" 2833 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" 2834 | dependencies: 2835 | ajv "^6.1.0" 2836 | ajv-keywords "^3.1.0" 2837 | 2838 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 2839 | version "5.5.0" 2840 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2841 | 2842 | semver@^4.1.0: 2843 | version "4.3.6" 2844 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2845 | 2846 | sequencify@~0.0.7: 2847 | version "0.0.7" 2848 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 2849 | 2850 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2851 | version "2.0.0" 2852 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2853 | 2854 | set-immediate-shim@^1.0.1: 2855 | version "1.0.1" 2856 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2857 | 2858 | set-value@^0.4.3: 2859 | version "0.4.3" 2860 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2861 | dependencies: 2862 | extend-shallow "^2.0.1" 2863 | is-extendable "^0.1.1" 2864 | is-plain-object "^2.0.1" 2865 | to-object-path "^0.3.0" 2866 | 2867 | set-value@^2.0.0: 2868 | version "2.0.0" 2869 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2870 | dependencies: 2871 | extend-shallow "^2.0.1" 2872 | is-extendable "^0.1.1" 2873 | is-plain-object "^2.0.3" 2874 | split-string "^3.0.1" 2875 | 2876 | setimmediate@^1.0.4: 2877 | version "1.0.5" 2878 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2879 | 2880 | sha.js@^2.4.0, sha.js@^2.4.8: 2881 | version "2.4.11" 2882 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2883 | dependencies: 2884 | inherits "^2.0.1" 2885 | safe-buffer "^5.0.1" 2886 | 2887 | shebang-command@^1.2.0: 2888 | version "1.2.0" 2889 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2890 | dependencies: 2891 | shebang-regex "^1.0.0" 2892 | 2893 | shebang-regex@^1.0.0: 2894 | version "1.0.0" 2895 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2896 | 2897 | sigmund@~1.0.0: 2898 | version "1.0.1" 2899 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2900 | 2901 | signal-exit@^3.0.0: 2902 | version "3.0.2" 2903 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2904 | 2905 | snapdragon-node@^2.0.1: 2906 | version "2.1.1" 2907 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2908 | dependencies: 2909 | define-property "^1.0.0" 2910 | isobject "^3.0.0" 2911 | snapdragon-util "^3.0.1" 2912 | 2913 | snapdragon-util@^3.0.1: 2914 | version "3.0.1" 2915 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2916 | dependencies: 2917 | kind-of "^3.2.0" 2918 | 2919 | snapdragon@^0.8.1: 2920 | version "0.8.2" 2921 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2922 | dependencies: 2923 | base "^0.11.1" 2924 | debug "^2.2.0" 2925 | define-property "^0.2.5" 2926 | extend-shallow "^2.0.1" 2927 | map-cache "^0.2.2" 2928 | source-map "^0.5.6" 2929 | source-map-resolve "^0.5.0" 2930 | use "^3.1.0" 2931 | 2932 | source-list-map@^2.0.0: 2933 | version "2.0.0" 2934 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2935 | 2936 | source-map-resolve@^0.5.0, source-map-resolve@^0.5.1: 2937 | version "0.5.2" 2938 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2939 | dependencies: 2940 | atob "^2.1.1" 2941 | decode-uri-component "^0.2.0" 2942 | resolve-url "^0.2.1" 2943 | source-map-url "^0.4.0" 2944 | urix "^0.1.0" 2945 | 2946 | source-map-url@^0.4.0: 2947 | version "0.4.0" 2948 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2949 | 2950 | source-map@^0.1.38: 2951 | version "0.1.43" 2952 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 2953 | dependencies: 2954 | amdefine ">=0.0.4" 2955 | 2956 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2957 | version "0.5.7" 2958 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2959 | 2960 | source-map@^0.7.3: 2961 | version "0.7.3" 2962 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2963 | 2964 | source-map@~0.6.0, source-map@~0.6.1: 2965 | version "0.6.1" 2966 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2967 | 2968 | sparkles@^1.0.0: 2969 | version "1.0.1" 2970 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" 2971 | 2972 | spdx-correct@^3.0.0: 2973 | version "3.0.0" 2974 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2975 | dependencies: 2976 | spdx-expression-parse "^3.0.0" 2977 | spdx-license-ids "^3.0.0" 2978 | 2979 | spdx-exceptions@^2.1.0: 2980 | version "2.1.0" 2981 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2982 | 2983 | spdx-expression-parse@^3.0.0: 2984 | version "3.0.0" 2985 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2986 | dependencies: 2987 | spdx-exceptions "^2.1.0" 2988 | spdx-license-ids "^3.0.0" 2989 | 2990 | spdx-license-ids@^3.0.0: 2991 | version "3.0.0" 2992 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2993 | 2994 | split-string@^3.0.1, split-string@^3.0.2: 2995 | version "3.1.0" 2996 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2997 | dependencies: 2998 | extend-shallow "^3.0.0" 2999 | 3000 | sshpk@^1.7.0: 3001 | version "1.14.2" 3002 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 3003 | dependencies: 3004 | asn1 "~0.2.3" 3005 | assert-plus "^1.0.0" 3006 | dashdash "^1.12.0" 3007 | getpass "^0.1.1" 3008 | safer-buffer "^2.0.2" 3009 | optionalDependencies: 3010 | bcrypt-pbkdf "^1.0.0" 3011 | ecc-jsbn "~0.1.1" 3012 | jsbn "~0.1.0" 3013 | tweetnacl "~0.14.0" 3014 | 3015 | static-extend@^0.1.1: 3016 | version "0.1.2" 3017 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3018 | dependencies: 3019 | define-property "^0.2.5" 3020 | object-copy "^0.1.0" 3021 | 3022 | stream-browserify@^2.0.1: 3023 | version "2.0.1" 3024 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3025 | dependencies: 3026 | inherits "~2.0.1" 3027 | readable-stream "^2.0.2" 3028 | 3029 | stream-consume@~0.1.0: 3030 | version "0.1.1" 3031 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz#d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48" 3032 | 3033 | stream-http@^2.7.2: 3034 | version "2.8.3" 3035 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 3036 | dependencies: 3037 | builtin-status-codes "^3.0.0" 3038 | inherits "^2.0.1" 3039 | readable-stream "^2.3.6" 3040 | to-arraybuffer "^1.0.0" 3041 | xtend "^4.0.0" 3042 | 3043 | stream-shift@^1.0.0: 3044 | version "1.0.0" 3045 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3046 | 3047 | string-width@^1.0.1: 3048 | version "1.0.2" 3049 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3050 | dependencies: 3051 | code-point-at "^1.0.0" 3052 | is-fullwidth-code-point "^1.0.0" 3053 | strip-ansi "^3.0.0" 3054 | 3055 | "string-width@^1.0.2 || 2", string-width@^2.0.0: 3056 | version "2.1.1" 3057 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3058 | dependencies: 3059 | is-fullwidth-code-point "^2.0.0" 3060 | strip-ansi "^4.0.0" 3061 | 3062 | string_decoder@^1.0.0, string_decoder@~1.1.1: 3063 | version "1.1.1" 3064 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3065 | dependencies: 3066 | safe-buffer "~5.1.0" 3067 | 3068 | string_decoder@~0.10.x: 3069 | version "0.10.31" 3070 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3071 | 3072 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3073 | version "3.0.1" 3074 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3075 | dependencies: 3076 | ansi-regex "^2.0.0" 3077 | 3078 | strip-ansi@^4.0.0: 3079 | version "4.0.0" 3080 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3081 | dependencies: 3082 | ansi-regex "^3.0.0" 3083 | 3084 | strip-bom-string@1.X: 3085 | version "1.0.0" 3086 | resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" 3087 | 3088 | strip-bom@^1.0.0: 3089 | version "1.0.0" 3090 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 3091 | dependencies: 3092 | first-chunk-stream "^1.0.0" 3093 | is-utf8 "^0.2.0" 3094 | 3095 | strip-bom@^3.0.0: 3096 | version "3.0.0" 3097 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3098 | 3099 | strip-eof@^1.0.0: 3100 | version "1.0.0" 3101 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3102 | 3103 | strip-json-comments@~2.0.1: 3104 | version "2.0.1" 3105 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3106 | 3107 | supports-color@^2.0.0: 3108 | version "2.0.0" 3109 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3110 | 3111 | supports-color@^4.2.1: 3112 | version "4.5.0" 3113 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3114 | dependencies: 3115 | has-flag "^2.0.0" 3116 | 3117 | supports-color@^5.3.0: 3118 | version "5.4.0" 3119 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3120 | dependencies: 3121 | has-flag "^3.0.0" 3122 | 3123 | tapable@^0.2.7: 3124 | version "0.2.8" 3125 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3126 | 3127 | tapable@^1.0.0: 3128 | version "1.0.0" 3129 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.0.0.tgz#cbb639d9002eed9c6b5975eb20598d7936f1f9f2" 3130 | 3131 | tar@^4: 3132 | version "4.4.4" 3133 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3134 | dependencies: 3135 | chownr "^1.0.1" 3136 | fs-minipass "^1.2.5" 3137 | minipass "^2.3.3" 3138 | minizlib "^1.1.0" 3139 | mkdirp "^0.5.0" 3140 | safe-buffer "^5.1.2" 3141 | yallist "^3.0.2" 3142 | 3143 | three@^0.84: 3144 | version "0.84.0" 3145 | resolved "https://registry.yarnpkg.com/three/-/three-0.84.0.tgz#95be85a55a0fa002aa625ed559130957dcffd918" 3146 | 3147 | three@^0.93.0: 3148 | version "0.93.0" 3149 | resolved "https://registry.yarnpkg.com/three/-/three-0.93.0.tgz#3fd6c367ef4554abbb6e16ad69936283e895c123" 3150 | 3151 | through2-filter@^2.0.0: 3152 | version "2.0.0" 3153 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 3154 | dependencies: 3155 | through2 "~2.0.0" 3156 | xtend "~4.0.0" 3157 | 3158 | through2@2.X, through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: 3159 | version "2.0.3" 3160 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3161 | dependencies: 3162 | readable-stream "^2.1.5" 3163 | xtend "~4.0.1" 3164 | 3165 | through2@^0.6.1: 3166 | version "0.6.5" 3167 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3168 | dependencies: 3169 | readable-stream ">=1.0.33-1 <1.1.0-0" 3170 | xtend ">=4.0.0 <4.1.0-0" 3171 | 3172 | tildify@^1.0.0: 3173 | version "1.2.0" 3174 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 3175 | dependencies: 3176 | os-homedir "^1.0.0" 3177 | 3178 | time-stamp@^1.0.0: 3179 | version "1.1.0" 3180 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 3181 | 3182 | timers-browserify@^2.0.4: 3183 | version "2.0.10" 3184 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" 3185 | dependencies: 3186 | setimmediate "^1.0.4" 3187 | 3188 | timers-ext@^0.1.2: 3189 | version "0.1.5" 3190 | resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.5.tgz#77147dd4e76b660c2abb8785db96574cbbd12922" 3191 | dependencies: 3192 | es5-ext "~0.10.14" 3193 | next-tick "1" 3194 | 3195 | to-absolute-glob@^2.0.0: 3196 | version "2.0.2" 3197 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" 3198 | dependencies: 3199 | is-absolute "^1.0.0" 3200 | is-negated-glob "^1.0.0" 3201 | 3202 | to-arraybuffer@^1.0.0: 3203 | version "1.0.1" 3204 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3205 | 3206 | to-object-path@^0.3.0: 3207 | version "0.3.0" 3208 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3209 | dependencies: 3210 | kind-of "^3.0.2" 3211 | 3212 | to-regex-range@^2.1.0: 3213 | version "2.1.1" 3214 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3215 | dependencies: 3216 | is-number "^3.0.0" 3217 | repeat-string "^1.6.1" 3218 | 3219 | to-regex@^3.0.1, to-regex@^3.0.2: 3220 | version "3.0.2" 3221 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3222 | dependencies: 3223 | define-property "^2.0.2" 3224 | extend-shallow "^3.0.2" 3225 | regex-not "^1.0.2" 3226 | safe-regex "^1.1.0" 3227 | 3228 | to-through@^2.0.0: 3229 | version "2.0.0" 3230 | resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" 3231 | dependencies: 3232 | through2 "^2.0.3" 3233 | 3234 | tough-cookie@~2.3.3: 3235 | version "2.3.4" 3236 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3237 | dependencies: 3238 | punycode "^1.4.1" 3239 | 3240 | ts-loader@^4.4.1: 3241 | version "4.4.1" 3242 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-4.4.1.tgz#c93a46eea430ebce1f790dfe438caefb8670d365" 3243 | dependencies: 3244 | chalk "^2.3.0" 3245 | enhanced-resolve "^4.0.0" 3246 | loader-utils "^1.0.2" 3247 | micromatch "^3.1.4" 3248 | semver "^5.0.1" 3249 | 3250 | tslib@^1.9.2: 3251 | version "1.9.2" 3252 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.2.tgz#8be0cc9a1f6dc7727c38deb16c2ebd1a2892988e" 3253 | 3254 | tty-browserify@0.0.0: 3255 | version "0.0.0" 3256 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3257 | 3258 | tunnel-agent@^0.6.0: 3259 | version "0.6.0" 3260 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3261 | dependencies: 3262 | safe-buffer "^5.0.1" 3263 | 3264 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3265 | version "0.14.5" 3266 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3267 | 3268 | typescript@^2.9.2: 3269 | version "2.9.2" 3270 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 3271 | 3272 | uglify-js@^2.8.29: 3273 | version "2.8.29" 3274 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3275 | dependencies: 3276 | source-map "~0.5.1" 3277 | yargs "~3.10.0" 3278 | optionalDependencies: 3279 | uglify-to-browserify "~1.0.0" 3280 | 3281 | uglify-to-browserify@~1.0.0: 3282 | version "1.0.2" 3283 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3284 | 3285 | uglifyjs-webpack-plugin@^0.4.6: 3286 | version "0.4.6" 3287 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 3288 | dependencies: 3289 | source-map "^0.5.6" 3290 | uglify-js "^2.8.29" 3291 | webpack-sources "^1.0.1" 3292 | 3293 | unc-path-regex@^0.1.2: 3294 | version "0.1.2" 3295 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3296 | 3297 | union-value@^1.0.0: 3298 | version "1.0.0" 3299 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3300 | dependencies: 3301 | arr-union "^3.1.0" 3302 | get-value "^2.0.6" 3303 | is-extendable "^0.1.1" 3304 | set-value "^0.4.3" 3305 | 3306 | unique-stream@^1.0.0: 3307 | version "1.0.0" 3308 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 3309 | 3310 | unique-stream@^2.0.2: 3311 | version "2.2.1" 3312 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 3313 | dependencies: 3314 | json-stable-stringify "^1.0.0" 3315 | through2-filter "^2.0.0" 3316 | 3317 | unset-value@^1.0.0: 3318 | version "1.0.0" 3319 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3320 | dependencies: 3321 | has-value "^0.3.1" 3322 | isobject "^3.0.0" 3323 | 3324 | upath@^1.0.5: 3325 | version "1.1.0" 3326 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 3327 | 3328 | uri-js@^4.2.1: 3329 | version "4.2.2" 3330 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3331 | dependencies: 3332 | punycode "^2.1.0" 3333 | 3334 | urix@^0.1.0: 3335 | version "0.1.0" 3336 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3337 | 3338 | url@^0.11.0: 3339 | version "0.11.0" 3340 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3341 | dependencies: 3342 | punycode "1.3.2" 3343 | querystring "0.2.0" 3344 | 3345 | use@^3.1.0: 3346 | version "3.1.0" 3347 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3348 | dependencies: 3349 | kind-of "^6.0.2" 3350 | 3351 | user-home@^1.1.1: 3352 | version "1.1.1" 3353 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3354 | 3355 | util-deprecate@~1.0.1: 3356 | version "1.0.2" 3357 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3358 | 3359 | util@0.10.3: 3360 | version "0.10.3" 3361 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3362 | dependencies: 3363 | inherits "2.0.1" 3364 | 3365 | util@^0.10.3: 3366 | version "0.10.4" 3367 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 3368 | dependencies: 3369 | inherits "2.0.3" 3370 | 3371 | uuid@^3.1.0: 3372 | version "3.2.1" 3373 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3374 | 3375 | v8flags@^2.0.2: 3376 | version "2.1.1" 3377 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3378 | dependencies: 3379 | user-home "^1.1.1" 3380 | 3381 | validate-npm-package-license@^3.0.1: 3382 | version "3.0.3" 3383 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3384 | dependencies: 3385 | spdx-correct "^3.0.0" 3386 | spdx-expression-parse "^3.0.0" 3387 | 3388 | value-or-function@^3.0.0: 3389 | version "3.0.0" 3390 | resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" 3391 | 3392 | verror@1.10.0: 3393 | version "1.10.0" 3394 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3395 | dependencies: 3396 | assert-plus "^1.0.0" 3397 | core-util-is "1.0.2" 3398 | extsprintf "^1.2.0" 3399 | 3400 | vinyl-fs@^0.3.0: 3401 | version "0.3.14" 3402 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 3403 | dependencies: 3404 | defaults "^1.0.0" 3405 | glob-stream "^3.1.5" 3406 | glob-watcher "^0.0.6" 3407 | graceful-fs "^3.0.0" 3408 | mkdirp "^0.5.0" 3409 | strip-bom "^1.0.0" 3410 | through2 "^0.6.1" 3411 | vinyl "^0.4.0" 3412 | 3413 | vinyl-fs@^3.0.3: 3414 | version "3.0.3" 3415 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" 3416 | dependencies: 3417 | fs-mkdirp-stream "^1.0.0" 3418 | glob-stream "^6.1.0" 3419 | graceful-fs "^4.0.0" 3420 | is-valid-glob "^1.0.0" 3421 | lazystream "^1.0.0" 3422 | lead "^1.0.0" 3423 | object.assign "^4.0.4" 3424 | pumpify "^1.3.5" 3425 | readable-stream "^2.3.3" 3426 | remove-bom-buffer "^3.0.0" 3427 | remove-bom-stream "^1.2.0" 3428 | resolve-options "^1.1.0" 3429 | through2 "^2.0.0" 3430 | to-through "^2.0.0" 3431 | value-or-function "^3.0.0" 3432 | vinyl "^2.0.0" 3433 | vinyl-sourcemap "^1.1.0" 3434 | 3435 | vinyl-sourcemap@^1.1.0: 3436 | version "1.1.0" 3437 | resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" 3438 | dependencies: 3439 | append-buffer "^1.0.2" 3440 | convert-source-map "^1.5.0" 3441 | graceful-fs "^4.1.6" 3442 | normalize-path "^2.1.1" 3443 | now-and-later "^2.0.0" 3444 | remove-bom-buffer "^3.0.0" 3445 | vinyl "^2.0.0" 3446 | 3447 | vinyl@^0.4.0: 3448 | version "0.4.6" 3449 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 3450 | dependencies: 3451 | clone "^0.2.0" 3452 | clone-stats "^0.0.1" 3453 | 3454 | vinyl@^0.5.0: 3455 | version "0.5.3" 3456 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3457 | dependencies: 3458 | clone "^1.0.0" 3459 | clone-stats "^0.0.1" 3460 | replace-ext "0.0.1" 3461 | 3462 | vinyl@^2.0.0, vinyl@^2.1.0: 3463 | version "2.1.0" 3464 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 3465 | dependencies: 3466 | clone "^2.1.1" 3467 | clone-buffer "^1.0.0" 3468 | clone-stats "^1.0.0" 3469 | cloneable-readable "^1.0.0" 3470 | remove-trailing-separator "^1.0.1" 3471 | replace-ext "^1.0.0" 3472 | 3473 | vm-browserify@0.0.4: 3474 | version "0.0.4" 3475 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3476 | dependencies: 3477 | indexof "0.0.1" 3478 | 3479 | watchpack@^1.4.0: 3480 | version "1.6.0" 3481 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" 3482 | dependencies: 3483 | chokidar "^2.0.2" 3484 | graceful-fs "^4.1.2" 3485 | neo-async "^2.5.0" 3486 | 3487 | web-request@^1.0.7: 3488 | version "1.0.7" 3489 | resolved "https://registry.yarnpkg.com/web-request/-/web-request-1.0.7.tgz#b70c42b3cd455779e82db6886253b2491f2bd569" 3490 | dependencies: 3491 | request "^2.69.0" 3492 | 3493 | webpack-sources@^1.0.1: 3494 | version "1.1.0" 3495 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 3496 | dependencies: 3497 | source-list-map "^2.0.0" 3498 | source-map "~0.6.1" 3499 | 3500 | webpack@^3.8.1: 3501 | version "3.12.0" 3502 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.12.0.tgz#3f9e34360370602fcf639e97939db486f4ec0d74" 3503 | dependencies: 3504 | acorn "^5.0.0" 3505 | acorn-dynamic-import "^2.0.0" 3506 | ajv "^6.1.0" 3507 | ajv-keywords "^3.1.0" 3508 | async "^2.1.2" 3509 | enhanced-resolve "^3.4.0" 3510 | escope "^3.6.0" 3511 | interpret "^1.0.0" 3512 | json-loader "^0.5.4" 3513 | json5 "^0.5.1" 3514 | loader-runner "^2.3.0" 3515 | loader-utils "^1.1.0" 3516 | memory-fs "~0.4.1" 3517 | mkdirp "~0.5.0" 3518 | node-libs-browser "^2.0.0" 3519 | source-map "^0.5.3" 3520 | supports-color "^4.2.1" 3521 | tapable "^0.2.7" 3522 | uglifyjs-webpack-plugin "^0.4.6" 3523 | watchpack "^1.4.0" 3524 | webpack-sources "^1.0.1" 3525 | yargs "^8.0.2" 3526 | 3527 | which-module@^2.0.0: 3528 | version "2.0.0" 3529 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3530 | 3531 | which@^1.2.14, which@^1.2.9: 3532 | version "1.3.1" 3533 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3534 | dependencies: 3535 | isexe "^2.0.0" 3536 | 3537 | wide-align@^1.1.0: 3538 | version "1.1.3" 3539 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3540 | dependencies: 3541 | string-width "^1.0.2 || 2" 3542 | 3543 | window-size@0.1.0: 3544 | version "0.1.0" 3545 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3546 | 3547 | wordwrap@0.0.2: 3548 | version "0.0.2" 3549 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3550 | 3551 | wrap-ansi@^2.0.0: 3552 | version "2.1.0" 3553 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3554 | dependencies: 3555 | string-width "^1.0.1" 3556 | strip-ansi "^3.0.1" 3557 | 3558 | wrappy@1: 3559 | version "1.0.2" 3560 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3561 | 3562 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: 3563 | version "4.0.1" 3564 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3565 | 3566 | y18n@^3.2.1: 3567 | version "3.2.1" 3568 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3569 | 3570 | yallist@^2.1.2: 3571 | version "2.1.2" 3572 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3573 | 3574 | yallist@^3.0.0, yallist@^3.0.2: 3575 | version "3.0.2" 3576 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3577 | 3578 | yargs-parser@^7.0.0: 3579 | version "7.0.0" 3580 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3581 | dependencies: 3582 | camelcase "^4.1.0" 3583 | 3584 | yargs@^8.0.2: 3585 | version "8.0.2" 3586 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 3587 | dependencies: 3588 | camelcase "^4.1.0" 3589 | cliui "^3.2.0" 3590 | decamelize "^1.1.1" 3591 | get-caller-file "^1.0.1" 3592 | os-locale "^2.0.0" 3593 | read-pkg-up "^2.0.0" 3594 | require-directory "^2.1.1" 3595 | require-main-filename "^1.0.1" 3596 | set-blocking "^2.0.0" 3597 | string-width "^2.0.0" 3598 | which-module "^2.0.0" 3599 | y18n "^3.2.1" 3600 | yargs-parser "^7.0.0" 3601 | 3602 | yargs@~3.10.0: 3603 | version "3.10.0" 3604 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3605 | dependencies: 3606 | camelcase "^1.0.2" 3607 | cliui "^2.1.0" 3608 | decamelize "^1.0.0" 3609 | window-size "0.1.0" 3610 | --------------------------------------------------------------------------------