├── .gitignore ├── .snyk ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── add-on ├── content_scripts │ └── redirect.js ├── icons │ └── icon-64.png └── manifest.json ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | ### Misc ### 2 | *.xpi 3 | Thumbs.db 4 | web-ext-artifacts/* 5 | *.zip 6 | dist 7 | build 8 | 9 | ### Node ### 10 | # Logs 11 | logs 12 | *.log 13 | npm-debug.log* 14 | yarn-debug.log* 15 | yarn-error.log* 16 | 17 | # Runtime data 18 | pids 19 | *.pid 20 | *.seed 21 | *.pid.lock 22 | 23 | # Directory for instrumented libs generated by jscoverage/JSCover 24 | lib-cov 25 | 26 | # Coverage directory used by tools like istanbul 27 | coverage 28 | 29 | # nyc test coverage 30 | .nyc_output 31 | 32 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 33 | .grunt 34 | 35 | # Bower dependency directory (https://bower.io/) 36 | bower_components 37 | 38 | # node-waf configuration 39 | .lock-wscript 40 | 41 | # Compiled binary addons (http://nodejs.org/api/addons.html) 42 | build/Release 43 | 44 | # Dependency directories 45 | node_modules/ 46 | jspm_packages/ 47 | 48 | # Typescript v1 declaration files 49 | typings/ 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional REPL history 58 | .node_repl_history 59 | 60 | # Output of 'npm pack' 61 | *.tgz 62 | 63 | # Yarn Integrity file 64 | .yarn-integrity 65 | 66 | # dotenv environment variables file 67 | .env -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- 1 | # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. 2 | version: v1.10.2 3 | ignore: {} 4 | # patches apply the minimum changes required to fix a vulnerability 5 | patch: 6 | 'npm:ms:20170412': 7 | - web-ext > sign-addon > jsonwebtoken > ms: 8 | patched: '2018-03-16T01:18:33.394Z' 9 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | education, socio-economic status, nationality, personal appearance, race, 10 | religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at andreas@nitrohorse.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | -------------------------------------------------------------------------------- /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 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 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 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rdrr.io Redirect 2 | 3 | Browser extension that redirects rdocumentation.org links to rdrr.io. 4 | 5 | ## Why? 6 | 7 | rdocumentation.org is run by DataCamp. [They](https://www.buzzfeednews.com/article/daveyalba/datacamp-sexual-harassment-metoo-tech-startup) [are](https://www.businessinsider.com/datacamp-ceo-jonathan-cornelissen-leave-sexual-misconduct-allegation-2019-4?op=1) [not](https://www.vice.com/en/article/8xzn3v/datacamp-ceo-steps-down-after-sexual-misconduct-allegations-prompt-backlash) [good](https://www.noamross.net/2019/04/12/datacamp-sexual-assault/) [people](https://dnlmc.medium.com/dont-use-datacamp-ef04adcf1b7f). 8 | 9 | 10 | ## Install 11 | 12 | Extension zip/XPI files are available at [releases](https://github.com/dill/rdrr-redirect/releases). Download, then drop onto the extensions/addon tab in Firefox/Chrome. 13 | 14 | Other stuff: 15 | 16 | * Firefox: [temporary](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Temporary_Installation_in_Firefox) 17 | * Chrome: [permanent](https://superuser.com/questions/247651/how-does-one-install-an-extension-for-chrome-browser-from-the-local-file-system/247654#247654) 18 | 19 | ## Develop 20 | 21 | * Clone the repo and `cd` into it 22 | * Install tools: 23 | * [Node.js](https://nodejs.org/en/) 24 | * [Yarn](https://yarnpkg.com/en/) 25 | * Install dependencies: 26 | * `yarn` 27 | * Run add-on in isolated Firefox instance using [web-ext](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Getting_started_with_web-ext): 28 | * `yarn serve` 29 | * Bundle add-on into a zip file for distribution: 30 | * `yarn bundle` 31 | 32 | 33 | 34 | Thanks to `nitrohorse` for [`amazon-smile-redirect`](https://gitlab.com/nitrohorse/amazon-smile-redirect) which this add-on is based on. 35 | -------------------------------------------------------------------------------- /add-on/content_scripts/redirect.js: -------------------------------------------------------------------------------- 1 | // first replace the pathname bits 2 | e = window.location.pathname; 3 | 4 | // base R URLs 5 | if(e.match("^/packages\/base")){ 6 | e = e.replace(RegExp("/packages/base/versions/(\\d\.)+\\d/topics/"), 7 | '/r/base/') 8 | }else{ 9 | e = e.replace('/packages/','/cran/'); 10 | // function manual pages 11 | e = e.replace(RegExp("versions/(\\d\.)+\\d/topics/"), "man/"); 12 | // package landing pages 13 | e = e.replace(RegExp("versions/(\\d\.)+\\d"), ""); 14 | } 15 | 16 | // now replace the hostname 17 | h = window.location.hostname.replace('rdocumentation.org', 'rdrr.io'); 18 | 19 | // does the pathname end in '/'? 20 | if(e.match(/.*\/$/)){ 21 | // for package pages don't include that 22 | window.location = window.location.protocol + "//" + h + e; 23 | }else{ 24 | // for man pages we have .html on the end 25 | window.location = window.location.protocol + "//" + h + e + ".html"; 26 | } 27 | -------------------------------------------------------------------------------- /add-on/icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dill/rdrr-redirect/87aa1b8bfd3db7240d4a61706eba28bac8d66236/add-on/icons/icon-64.png -------------------------------------------------------------------------------- /add-on/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "browser_specific_settings": { 4 | "gecko": { 5 | "id": "rdrr-redirect@converged.yt", 6 | "strict_min_version": "42.0" 7 | } 8 | }, 9 | "name": "rdrr.io redirect", 10 | "author": "David Lawrence Miller", 11 | "short_name": "rdrr-redirect", 12 | "version": "0.0.1", 13 | "description": "Redirects rdocumentation.org links to rdrr.io.", 14 | "icons": { 15 | "64": "icons/icon-64.png" 16 | }, 17 | "content_scripts": [ 18 | { 19 | "matches": [ 20 | "https://rdocumentation.org/*", 21 | "https://www.rdocumentation.org/*" 22 | ], 23 | "run_at": "document_start", 24 | "js": [ 25 | "content_scripts/redirect.js" 26 | ] 27 | } 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rdrr-redirect", 3 | "version": "0.0.1", 4 | "description": "rdrr.io redirection", 5 | "author": "David Lawrence Miller", 6 | "scripts": { 7 | "bundle": "web-ext -s add-on -a dist build --overwrite-dest", 8 | "serve": "web-ext run -s ./add-on", 9 | "snyk-protect": "snyk protect", 10 | "prepublish": "npm run snyk-protect" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/dill/rdrr-redirect" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/dill/rdrr-redirect/issues" 18 | }, 19 | "license": "GPL-3.0", 20 | "keywords": [ 21 | "webextensions" 22 | ], 23 | "devDependencies": { 24 | "snyk": "^1.70.2", 25 | "web-ext": "^2.4.0" 26 | }, 27 | "snyk": true 28 | } 29 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@*": 6 | version "9.4.0" 7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.0.tgz#b85a0bcf1e1cc84eb4901b7e96966aedc6f078d1" 8 | 9 | JSONSelect@0.2.1: 10 | version "0.2.1" 11 | resolved "https://registry.yarnpkg.com/JSONSelect/-/JSONSelect-0.2.1.tgz#415418a526d33fe31d74b4defa3c836d485ec203" 12 | 13 | abbrev@1: 14 | version "1.1.1" 15 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 16 | 17 | acorn-dynamic-import@^2.0.0: 18 | version "2.0.2" 19 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 20 | dependencies: 21 | acorn "^4.0.3" 22 | 23 | acorn-jsx@^3.0.0: 24 | version "3.0.1" 25 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 26 | dependencies: 27 | acorn "^3.0.4" 28 | 29 | acorn@^3.0.4: 30 | version "3.3.0" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 32 | 33 | acorn@^4.0.3: 34 | version "4.0.13" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 36 | 37 | acorn@^5.0.0, acorn@^5.4.0: 38 | version "5.4.1" 39 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 40 | 41 | adbkit-logcat@^1.1.0: 42 | version "1.1.0" 43 | resolved "https://registry.yarnpkg.com/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz#01d7f9b0cef9093a30bcb3b007efff301508962f" 44 | 45 | adbkit-monkey@~1.0.1: 46 | version "1.0.1" 47 | resolved "https://registry.yarnpkg.com/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz#f291be701a2efc567a63fc7aa6afcded31430be1" 48 | dependencies: 49 | async "~0.2.9" 50 | 51 | adbkit@2.11.0: 52 | version "2.11.0" 53 | resolved "https://registry.yarnpkg.com/adbkit/-/adbkit-2.11.0.tgz#9a8da51e62790f8bae5296b1c52614f69e4c2684" 54 | dependencies: 55 | adbkit-logcat "^1.1.0" 56 | adbkit-monkey "~1.0.1" 57 | bluebird "~2.9.24" 58 | commander "^2.3.0" 59 | debug "~2.6.3" 60 | node-forge "^0.7.1" 61 | split "~0.3.3" 62 | 63 | addons-linter@0.35.0: 64 | version "0.35.0" 65 | resolved "https://registry.yarnpkg.com/addons-linter/-/addons-linter-0.35.0.tgz#85872cce58983ff339ced297dbff486c02ecd336" 66 | dependencies: 67 | ajv "5.5.2" 68 | ajv-merge-patch "3.0.0" 69 | babel-register "6.26.0" 70 | chalk "2.3.0" 71 | cheerio "1.0.0-rc.2" 72 | columnify "1.5.4" 73 | common-tags "1.7.2" 74 | crx-parser "0.1.2" 75 | dispensary "0.12.0" 76 | doctoc "1.3.0" 77 | es6-promisify "5.0.0" 78 | eslint "4.15.0" 79 | eslint-plugin-no-unsafe-innerhtml "1.0.16" 80 | esprima "3.1.3" 81 | extract-text-webpack-plugin "3.0.2" 82 | first-chunk-stream "2.0.0" 83 | fluent "0.4.1" 84 | glob "7.1.2" 85 | jed "1.1.1" 86 | pino "4.10.3" 87 | po2json "0.4.5" 88 | postcss "6.0.14" 89 | probe-image-size "3.2.0" 90 | relaxed-json "1.0.1" 91 | semver "5.5.0" 92 | shelljs "0.8.1" 93 | source-map-support "0.5.1" 94 | strip-bom-stream "3.0.0" 95 | tosource "1.0.0" 96 | upath "1.0.2" 97 | webpack "3.10.0" 98 | whatwg-url "6.3.0" 99 | xmldom "0.1.27" 100 | yargs "10.0.3" 101 | yauzl "2.9.1" 102 | 103 | adm-zip@~0.4.x: 104 | version "0.4.7" 105 | resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.7.tgz#8606c2cbf1c426ce8c8ec00174447fd49b6eafc1" 106 | 107 | ajv-keywords@^1.0.0: 108 | version "1.5.1" 109 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 110 | 111 | ajv-keywords@^2.0.0, ajv-keywords@^2.1.0: 112 | version "2.1.1" 113 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 114 | 115 | ajv-merge-patch@3.0.0: 116 | version "3.0.0" 117 | resolved "https://registry.yarnpkg.com/ajv-merge-patch/-/ajv-merge-patch-3.0.0.tgz#76f071e391f419fe9fe3fea7e920a1ad824b2b61" 118 | dependencies: 119 | fast-json-patch "^1.0.0" 120 | json-merge-patch "^0.2.3" 121 | 122 | ajv@5.5.2, ajv@^5.0.0, ajv@^5.1.0, ajv@^5.1.5, ajv@^5.2.3, ajv@^5.3.0: 123 | version "5.5.2" 124 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 125 | dependencies: 126 | co "^4.6.0" 127 | fast-deep-equal "^1.0.0" 128 | fast-json-stable-stringify "^2.0.0" 129 | json-schema-traverse "^0.3.0" 130 | 131 | ajv@^4.7.0, ajv@^4.9.1: 132 | version "4.11.8" 133 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 134 | dependencies: 135 | co "^4.6.0" 136 | json-stable-stringify "^1.0.1" 137 | 138 | align-text@^0.1.1, align-text@^0.1.3: 139 | version "0.1.4" 140 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 141 | dependencies: 142 | kind-of "^3.0.2" 143 | longest "^1.0.1" 144 | repeat-string "^1.5.2" 145 | 146 | anchor-markdown-header@^0.5.5: 147 | version "0.5.7" 148 | resolved "https://registry.yarnpkg.com/anchor-markdown-header/-/anchor-markdown-header-0.5.7.tgz#045063d76e6a1f9cd327a57a0126aa0fdec371a7" 149 | dependencies: 150 | emoji-regex "~6.1.0" 151 | 152 | ansi-align@^2.0.0: 153 | version "2.0.0" 154 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 155 | dependencies: 156 | string-width "^2.0.0" 157 | 158 | ansi-escapes@^1.1.0: 159 | version "1.4.0" 160 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 161 | 162 | ansi-escapes@^3.0.0: 163 | version "3.0.0" 164 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 165 | 166 | ansi-regex@^2.0.0: 167 | version "2.1.1" 168 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 169 | 170 | ansi-regex@^3.0.0: 171 | version "3.0.0" 172 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 173 | 174 | ansi-styles@^2.2.1: 175 | version "2.2.1" 176 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 177 | 178 | ansi-styles@^3.1.0: 179 | version "3.2.0" 180 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 181 | dependencies: 182 | color-convert "^1.9.0" 183 | 184 | ansi-styles@~1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 187 | 188 | any-promise@^1.0.0, any-promise@^1.1.0, any-promise@^1.3.0, any-promise@~1.3.0: 189 | version "1.3.0" 190 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 191 | 192 | anymatch@^1.3.0: 193 | version "1.3.2" 194 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 195 | dependencies: 196 | micromatch "^2.1.5" 197 | normalize-path "^2.0.0" 198 | 199 | aproba@^1.0.3: 200 | version "1.2.0" 201 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 202 | 203 | archiver-utils@^1.3.0: 204 | version "1.3.0" 205 | resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" 206 | dependencies: 207 | glob "^7.0.0" 208 | graceful-fs "^4.1.0" 209 | lazystream "^1.0.0" 210 | lodash "^4.8.0" 211 | normalize-path "^2.0.0" 212 | readable-stream "^2.0.0" 213 | 214 | archiver@~2.1.0: 215 | version "2.1.1" 216 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-2.1.1.tgz#ff662b4a78201494a3ee544d3a33fe7496509ebc" 217 | dependencies: 218 | archiver-utils "^1.3.0" 219 | async "^2.0.0" 220 | buffer-crc32 "^0.2.1" 221 | glob "^7.0.0" 222 | lodash "^4.8.0" 223 | readable-stream "^2.0.0" 224 | tar-stream "^1.5.0" 225 | zip-stream "^1.2.0" 226 | 227 | are-we-there-yet@~1.1.2: 228 | version "1.1.4" 229 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 230 | dependencies: 231 | delegates "^1.0.0" 232 | readable-stream "^2.0.6" 233 | 234 | argparse@^1.0.7: 235 | version "1.0.9" 236 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 237 | dependencies: 238 | sprintf-js "~1.0.2" 239 | 240 | arr-diff@^2.0.0: 241 | version "2.0.0" 242 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 243 | dependencies: 244 | arr-flatten "^1.0.1" 245 | 246 | arr-flatten@^1.0.1: 247 | version "1.1.0" 248 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 249 | 250 | array-filter@~0.0.0: 251 | version "0.0.1" 252 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 253 | 254 | array-from@2.1.1: 255 | version "2.1.1" 256 | resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" 257 | 258 | array-map@~0.0.0: 259 | version "0.0.0" 260 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 261 | 262 | array-reduce@~0.0.0: 263 | version "0.0.0" 264 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 265 | 266 | array-union@^1.0.1: 267 | version "1.0.2" 268 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 269 | dependencies: 270 | array-uniq "^1.0.1" 271 | 272 | array-uniq@^1.0.1: 273 | version "1.0.3" 274 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 275 | 276 | array-unique@^0.2.1: 277 | version "0.2.1" 278 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 279 | 280 | arrify@^1.0.0: 281 | version "1.0.1" 282 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 283 | 284 | asn1.js@^4.0.0: 285 | version "4.9.2" 286 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 287 | dependencies: 288 | bn.js "^4.0.0" 289 | inherits "^2.0.1" 290 | minimalistic-assert "^1.0.0" 291 | 292 | asn1@~0.2.3: 293 | version "0.2.3" 294 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 295 | 296 | assert-plus@1.0.0, assert-plus@^1.0.0: 297 | version "1.0.0" 298 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 299 | 300 | assert-plus@^0.2.0: 301 | version "0.2.0" 302 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 303 | 304 | assert@^1.1.1: 305 | version "1.4.1" 306 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 307 | dependencies: 308 | util "0.10.3" 309 | 310 | async-each@^1.0.0: 311 | version "1.0.1" 312 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 313 | 314 | async@^1.5.2: 315 | version "1.5.2" 316 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 317 | 318 | async@^2.0.0, async@^2.1.2, async@^2.4.1: 319 | version "2.6.0" 320 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 321 | dependencies: 322 | lodash "^4.14.0" 323 | 324 | async@~0.2.9: 325 | version "0.2.10" 326 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 327 | 328 | async@~2.5.0: 329 | version "2.5.0" 330 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 331 | dependencies: 332 | lodash "^4.14.0" 333 | 334 | asynckit@^0.4.0: 335 | version "0.4.0" 336 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 337 | 338 | aws-sign2@~0.6.0: 339 | version "0.6.0" 340 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 341 | 342 | aws-sign2@~0.7.0: 343 | version "0.7.0" 344 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 345 | 346 | aws4@^1.2.1, aws4@^1.6.0: 347 | version "1.6.0" 348 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 349 | 350 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 351 | version "6.26.0" 352 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 353 | dependencies: 354 | chalk "^1.1.3" 355 | esutils "^2.0.2" 356 | js-tokens "^3.0.2" 357 | 358 | babel-core@^6.26.0: 359 | version "6.26.0" 360 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 361 | dependencies: 362 | babel-code-frame "^6.26.0" 363 | babel-generator "^6.26.0" 364 | babel-helpers "^6.24.1" 365 | babel-messages "^6.23.0" 366 | babel-register "^6.26.0" 367 | babel-runtime "^6.26.0" 368 | babel-template "^6.26.0" 369 | babel-traverse "^6.26.0" 370 | babel-types "^6.26.0" 371 | babylon "^6.18.0" 372 | convert-source-map "^1.5.0" 373 | debug "^2.6.8" 374 | json5 "^0.5.1" 375 | lodash "^4.17.4" 376 | minimatch "^3.0.4" 377 | path-is-absolute "^1.0.1" 378 | private "^0.1.7" 379 | slash "^1.0.0" 380 | source-map "^0.5.6" 381 | 382 | babel-generator@^6.26.0: 383 | version "6.26.1" 384 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 385 | dependencies: 386 | babel-messages "^6.23.0" 387 | babel-runtime "^6.26.0" 388 | babel-types "^6.26.0" 389 | detect-indent "^4.0.0" 390 | jsesc "^1.3.0" 391 | lodash "^4.17.4" 392 | source-map "^0.5.7" 393 | trim-right "^1.0.1" 394 | 395 | babel-helpers@^6.24.1: 396 | version "6.24.1" 397 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | babel-template "^6.24.1" 401 | 402 | babel-messages@^6.23.0: 403 | version "6.23.0" 404 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 405 | dependencies: 406 | babel-runtime "^6.22.0" 407 | 408 | babel-polyfill@6.16.0: 409 | version "6.16.0" 410 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 411 | dependencies: 412 | babel-runtime "^6.9.1" 413 | core-js "^2.4.0" 414 | regenerator-runtime "^0.9.5" 415 | 416 | babel-polyfill@6.26.0: 417 | version "6.26.0" 418 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 419 | dependencies: 420 | babel-runtime "^6.26.0" 421 | core-js "^2.5.0" 422 | regenerator-runtime "^0.10.5" 423 | 424 | babel-register@6.26.0, babel-register@^6.26.0: 425 | version "6.26.0" 426 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 427 | dependencies: 428 | babel-core "^6.26.0" 429 | babel-runtime "^6.26.0" 430 | core-js "^2.5.0" 431 | home-or-tmp "^2.0.0" 432 | lodash "^4.17.4" 433 | mkdirp "^0.5.1" 434 | source-map-support "^0.4.15" 435 | 436 | babel-runtime@6.26.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.1: 437 | version "6.26.0" 438 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 439 | dependencies: 440 | core-js "^2.4.0" 441 | regenerator-runtime "^0.11.0" 442 | 443 | babel-template@^6.24.1, babel-template@^6.26.0: 444 | version "6.26.0" 445 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 446 | dependencies: 447 | babel-runtime "^6.26.0" 448 | babel-traverse "^6.26.0" 449 | babel-types "^6.26.0" 450 | babylon "^6.18.0" 451 | lodash "^4.17.4" 452 | 453 | babel-traverse@^6.26.0: 454 | version "6.26.0" 455 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 456 | dependencies: 457 | babel-code-frame "^6.26.0" 458 | babel-messages "^6.23.0" 459 | babel-runtime "^6.26.0" 460 | babel-types "^6.26.0" 461 | babylon "^6.18.0" 462 | debug "^2.6.8" 463 | globals "^9.18.0" 464 | invariant "^2.2.2" 465 | lodash "^4.17.4" 466 | 467 | babel-types@^6.26.0: 468 | version "6.26.0" 469 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 470 | dependencies: 471 | babel-runtime "^6.26.0" 472 | esutils "^2.0.2" 473 | lodash "^4.17.4" 474 | to-fast-properties "^1.0.3" 475 | 476 | babylon@^6.18.0: 477 | version "6.18.0" 478 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 479 | 480 | bail@^1.0.0: 481 | version "1.0.2" 482 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.2.tgz#f7d6c1731630a9f9f0d4d35ed1f962e2074a1764" 483 | 484 | balanced-match@^1.0.0: 485 | version "1.0.0" 486 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 487 | 488 | base64-js@^1.0.2: 489 | version "1.2.1" 490 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 491 | 492 | base64url@2.0.0, base64url@^2.0.0: 493 | version "2.0.0" 494 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 495 | 496 | bcrypt-pbkdf@^1.0.0: 497 | version "1.0.1" 498 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 499 | dependencies: 500 | tweetnacl "^0.14.3" 501 | 502 | big.js@^3.1.3: 503 | version "3.2.0" 504 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 505 | 506 | binary-extensions@^1.0.0: 507 | version "1.11.0" 508 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 509 | 510 | bl@^1.0.0: 511 | version "1.2.1" 512 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" 513 | dependencies: 514 | readable-stream "^2.0.5" 515 | 516 | block-stream@*: 517 | version "0.0.9" 518 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 519 | dependencies: 520 | inherits "~2.0.0" 521 | 522 | bluebird@~2.9.24: 523 | version "2.9.34" 524 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.9.34.tgz#2f7b4ec80216328a9fddebdf69c8d4942feff7d8" 525 | 526 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 527 | version "4.11.8" 528 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 529 | 530 | boolbase@~1.0.0: 531 | version "1.0.0" 532 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 533 | 534 | boom@2.x.x: 535 | version "2.10.1" 536 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 537 | dependencies: 538 | hoek "2.x.x" 539 | 540 | boom@4.x.x: 541 | version "4.3.1" 542 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 543 | dependencies: 544 | hoek "4.x.x" 545 | 546 | boom@5.x.x: 547 | version "5.2.0" 548 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 549 | dependencies: 550 | hoek "4.x.x" 551 | 552 | boundary@^1.0.1: 553 | version "1.0.1" 554 | resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" 555 | 556 | boxen@^1.2.1: 557 | version "1.3.0" 558 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 559 | dependencies: 560 | ansi-align "^2.0.0" 561 | camelcase "^4.0.0" 562 | chalk "^2.0.1" 563 | cli-boxes "^1.0.0" 564 | string-width "^2.0.0" 565 | term-size "^1.2.0" 566 | widest-line "^2.0.0" 567 | 568 | brace-expansion@^1.1.7: 569 | version "1.1.8" 570 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 571 | dependencies: 572 | balanced-match "^1.0.0" 573 | concat-map "0.0.1" 574 | 575 | braces@^1.8.2: 576 | version "1.8.5" 577 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 578 | dependencies: 579 | expand-range "^1.8.1" 580 | preserve "^0.2.0" 581 | repeat-element "^1.1.2" 582 | 583 | brorand@^1.0.1: 584 | version "1.1.0" 585 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 586 | 587 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 588 | version "1.1.1" 589 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 590 | dependencies: 591 | buffer-xor "^1.0.3" 592 | cipher-base "^1.0.0" 593 | create-hash "^1.1.0" 594 | evp_bytestokey "^1.0.3" 595 | inherits "^2.0.1" 596 | safe-buffer "^5.0.1" 597 | 598 | browserify-cipher@^1.0.0: 599 | version "1.0.0" 600 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 601 | dependencies: 602 | browserify-aes "^1.0.4" 603 | browserify-des "^1.0.0" 604 | evp_bytestokey "^1.0.0" 605 | 606 | browserify-des@^1.0.0: 607 | version "1.0.0" 608 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 609 | dependencies: 610 | cipher-base "^1.0.1" 611 | des.js "^1.0.0" 612 | inherits "^2.0.1" 613 | 614 | browserify-rsa@^4.0.0: 615 | version "4.0.1" 616 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 617 | dependencies: 618 | bn.js "^4.1.0" 619 | randombytes "^2.0.1" 620 | 621 | browserify-sign@^4.0.0: 622 | version "4.0.4" 623 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 624 | dependencies: 625 | bn.js "^4.1.1" 626 | browserify-rsa "^4.0.0" 627 | create-hash "^1.1.0" 628 | create-hmac "^1.1.2" 629 | elliptic "^6.0.0" 630 | inherits "^2.0.1" 631 | parse-asn1 "^5.0.0" 632 | 633 | browserify-zlib@^0.2.0: 634 | version "0.2.0" 635 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 636 | dependencies: 637 | pako "~1.0.5" 638 | 639 | buffer-crc32@^0.2.1, buffer-crc32@~0.2.3: 640 | version "0.2.13" 641 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 642 | 643 | buffer-equal-constant-time@1.0.1: 644 | version "1.0.1" 645 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 646 | 647 | buffer-xor@^1.0.3: 648 | version "1.0.3" 649 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 650 | 651 | buffer@^4.3.0: 652 | version "4.9.1" 653 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 654 | dependencies: 655 | base64-js "^1.0.2" 656 | ieee754 "^1.1.4" 657 | isarray "^1.0.0" 658 | 659 | builtin-modules@^1.0.0: 660 | version "1.1.1" 661 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 662 | 663 | builtin-status-codes@^3.0.0: 664 | version "3.0.0" 665 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 666 | 667 | bunyan@1.8.12: 668 | version "1.8.12" 669 | resolved "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.12.tgz#f150f0f6748abdd72aeae84f04403be2ef113797" 670 | optionalDependencies: 671 | dtrace-provider "~0.8" 672 | moment "^2.10.6" 673 | mv "~2" 674 | safe-json-stringify "~1" 675 | 676 | caller-path@^0.1.0: 677 | version "0.1.0" 678 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 679 | dependencies: 680 | callsites "^0.2.0" 681 | 682 | callsites@^0.2.0: 683 | version "0.2.0" 684 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 685 | 686 | camelcase@4.1.0, camelcase@^4.0.0, camelcase@^4.1.0: 687 | version "4.1.0" 688 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 689 | 690 | camelcase@^1.0.2: 691 | version "1.2.1" 692 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 693 | 694 | camelcase@^3.0.0: 695 | version "3.0.0" 696 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 697 | 698 | capture-stack-trace@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 701 | 702 | caseless@~0.11.0: 703 | version "0.11.0" 704 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 705 | 706 | caseless@~0.12.0: 707 | version "0.12.0" 708 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 709 | 710 | ccount@^1.0.0: 711 | version "1.0.2" 712 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.2.tgz#53b6a2f815bb77b9c2871f7b9a72c3a25f1d8e89" 713 | 714 | center-align@^0.1.1: 715 | version "0.1.3" 716 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 717 | dependencies: 718 | align-text "^0.1.3" 719 | lazy-cache "^1.0.3" 720 | 721 | chalk@2.3.0, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0: 722 | version "2.3.0" 723 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 724 | dependencies: 725 | ansi-styles "^3.1.0" 726 | escape-string-regexp "^1.0.5" 727 | supports-color "^4.0.0" 728 | 729 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 730 | version "1.1.3" 731 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 732 | dependencies: 733 | ansi-styles "^2.2.1" 734 | escape-string-regexp "^1.0.2" 735 | has-ansi "^2.0.0" 736 | strip-ansi "^3.0.0" 737 | supports-color "^2.0.0" 738 | 739 | chalk@~0.4.0: 740 | version "0.4.0" 741 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 742 | dependencies: 743 | ansi-styles "~1.0.0" 744 | has-color "~0.1.0" 745 | strip-ansi "~0.1.0" 746 | 747 | character-entities-html4@^1.0.0: 748 | version "1.1.1" 749 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.1.tgz#359a2a4a0f7e29d3dc2ac99bdbe21ee39438ea50" 750 | 751 | character-entities-legacy@^1.0.0: 752 | version "1.1.1" 753 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.1.tgz#f40779df1a101872bb510a3d295e1fccf147202f" 754 | 755 | character-entities@^1.0.0: 756 | version "1.2.1" 757 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.1.tgz#f76871be5ef66ddb7f8f8e3478ecc374c27d6dca" 758 | 759 | character-reference-invalid@^1.0.0: 760 | version "1.1.1" 761 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz#942835f750e4ec61a308e60c2ef8cc1011202efc" 762 | 763 | chardet@^0.4.0: 764 | version "0.4.2" 765 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 766 | 767 | cheerio@1.0.0-rc.2: 768 | version "1.0.0-rc.2" 769 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db" 770 | dependencies: 771 | css-select "~1.2.0" 772 | dom-serializer "~0.1.0" 773 | entities "~1.1.1" 774 | htmlparser2 "^3.9.1" 775 | lodash "^4.15.0" 776 | parse5 "^3.0.1" 777 | 778 | chokidar@^1.7.0: 779 | version "1.7.0" 780 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 781 | dependencies: 782 | anymatch "^1.3.0" 783 | async-each "^1.0.0" 784 | glob-parent "^2.0.0" 785 | inherits "^2.0.1" 786 | is-binary-path "^1.0.0" 787 | is-glob "^2.0.0" 788 | path-is-absolute "^1.0.0" 789 | readdirp "^2.0.0" 790 | optionalDependencies: 791 | fsevents "^1.0.0" 792 | 793 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 794 | version "1.0.4" 795 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 796 | dependencies: 797 | inherits "^2.0.1" 798 | safe-buffer "^5.0.1" 799 | 800 | circular-json@^0.3.1: 801 | version "0.3.3" 802 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 803 | 804 | cli-boxes@^1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 807 | 808 | cli-cursor@^1.0.1: 809 | version "1.0.2" 810 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 811 | dependencies: 812 | restore-cursor "^1.0.1" 813 | 814 | cli-cursor@^2.1.0: 815 | version "2.1.0" 816 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 817 | dependencies: 818 | restore-cursor "^2.0.0" 819 | 820 | cli-width@^2.0.0: 821 | version "2.2.0" 822 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 823 | 824 | cliui@^2.1.0: 825 | version "2.1.0" 826 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 827 | dependencies: 828 | center-align "^0.1.1" 829 | right-align "^0.1.1" 830 | wordwrap "0.0.2" 831 | 832 | cliui@^3.2.0: 833 | version "3.2.0" 834 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 835 | dependencies: 836 | string-width "^1.0.1" 837 | strip-ansi "^3.0.1" 838 | wrap-ansi "^2.0.0" 839 | 840 | cliui@^4.0.0: 841 | version "4.0.0" 842 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 843 | dependencies: 844 | string-width "^2.1.1" 845 | strip-ansi "^4.0.0" 846 | wrap-ansi "^2.0.0" 847 | 848 | clone@^1.0.2: 849 | version "1.0.3" 850 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 851 | 852 | co@^4.6.0: 853 | version "4.6.0" 854 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 855 | 856 | code-point-at@^1.0.0: 857 | version "1.1.0" 858 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 859 | 860 | collapse-white-space@^1.0.0: 861 | version "1.0.3" 862 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.3.tgz#4b906f670e5a963a87b76b0e1689643341b6023c" 863 | 864 | color-convert@^1.9.0: 865 | version "1.9.1" 866 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 867 | dependencies: 868 | color-name "^1.1.1" 869 | 870 | color-name@^1.1.1: 871 | version "1.1.3" 872 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 873 | 874 | colors@0.5.x: 875 | version "0.5.1" 876 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.5.1.tgz#7d0023eaeb154e8ee9fce75dcb923d0ed1667774" 877 | 878 | columnify@1.5.4: 879 | version "1.5.4" 880 | resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" 881 | dependencies: 882 | strip-ansi "^3.0.0" 883 | wcwidth "^1.0.0" 884 | 885 | combined-stream@^1.0.5, combined-stream@~1.0.5: 886 | version "1.0.5" 887 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 888 | dependencies: 889 | delayed-stream "~1.0.0" 890 | 891 | commander@2.9.0: 892 | version "2.9.0" 893 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 894 | dependencies: 895 | graceful-readlink ">= 1.0.0" 896 | 897 | commander@^2.3.0, commander@^2.6.0, commander@^2.9.0: 898 | version "2.13.0" 899 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 900 | 901 | common-tags@1.7.2: 902 | version "1.7.2" 903 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.7.2.tgz#24d9768c63d253a56ecff93845b44b4df1d52771" 904 | dependencies: 905 | babel-runtime "^6.26.0" 906 | 907 | compress-commons@^1.2.0: 908 | version "1.2.2" 909 | resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.2.tgz#524a9f10903f3a813389b0225d27c48bb751890f" 910 | dependencies: 911 | buffer-crc32 "^0.2.1" 912 | crc32-stream "^2.0.0" 913 | normalize-path "^2.0.0" 914 | readable-stream "^2.0.0" 915 | 916 | concat-map@0.0.1: 917 | version "0.0.1" 918 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 919 | 920 | concat-stream@^1.4.7, concat-stream@^1.5.2, concat-stream@^1.6.0: 921 | version "1.6.0" 922 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 923 | dependencies: 924 | inherits "^2.0.3" 925 | readable-stream "^2.2.2" 926 | typedarray "^0.0.6" 927 | 928 | configstore@^3.0.0: 929 | version "3.1.1" 930 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 931 | dependencies: 932 | dot-prop "^4.1.0" 933 | graceful-fs "^4.1.2" 934 | make-dir "^1.0.0" 935 | unique-string "^1.0.0" 936 | write-file-atomic "^2.0.0" 937 | xdg-basedir "^3.0.0" 938 | 939 | console-browserify@^1.1.0: 940 | version "1.1.0" 941 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 942 | dependencies: 943 | date-now "^0.1.4" 944 | 945 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 946 | version "1.1.0" 947 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 948 | 949 | constants-browserify@^1.0.0: 950 | version "1.0.0" 951 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 952 | 953 | convert-source-map@^1.5.0: 954 | version "1.5.1" 955 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 956 | 957 | core-js@^2.4.0, core-js@^2.5.0: 958 | version "2.5.3" 959 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 960 | 961 | core-util-is@1.0.2, core-util-is@~1.0.0: 962 | version "1.0.2" 963 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 964 | 965 | crc32-stream@^2.0.0: 966 | version "2.0.0" 967 | resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" 968 | dependencies: 969 | crc "^3.4.4" 970 | readable-stream "^2.0.0" 971 | 972 | crc@^3.4.4: 973 | version "3.5.0" 974 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.5.0.tgz#98b8ba7d489665ba3979f59b21381374101a1964" 975 | 976 | create-ecdh@^4.0.0: 977 | version "4.0.0" 978 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 979 | dependencies: 980 | bn.js "^4.1.0" 981 | elliptic "^6.0.0" 982 | 983 | create-error-class@^3.0.0: 984 | version "3.0.2" 985 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 986 | dependencies: 987 | capture-stack-trace "^1.0.0" 988 | 989 | create-hash@^1.1.0, create-hash@^1.1.2: 990 | version "1.1.3" 991 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 992 | dependencies: 993 | cipher-base "^1.0.1" 994 | inherits "^2.0.1" 995 | ripemd160 "^2.0.0" 996 | sha.js "^2.4.0" 997 | 998 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 999 | version "1.1.6" 1000 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1001 | dependencies: 1002 | cipher-base "^1.0.3" 1003 | create-hash "^1.1.0" 1004 | inherits "^2.0.1" 1005 | ripemd160 "^2.0.0" 1006 | safe-buffer "^5.0.1" 1007 | sha.js "^2.4.8" 1008 | 1009 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1010 | version "5.1.0" 1011 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1012 | dependencies: 1013 | lru-cache "^4.0.1" 1014 | shebang-command "^1.2.0" 1015 | which "^1.2.9" 1016 | 1017 | crx-parser@0.1.2: 1018 | version "0.1.2" 1019 | resolved "https://registry.yarnpkg.com/crx-parser/-/crx-parser-0.1.2.tgz#7eeeed9eddc95e22c189382e34624044a89a5a6d" 1020 | 1021 | cryptiles@2.x.x: 1022 | version "2.0.5" 1023 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1024 | dependencies: 1025 | boom "2.x.x" 1026 | 1027 | cryptiles@3.x.x: 1028 | version "3.1.2" 1029 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1030 | dependencies: 1031 | boom "5.x.x" 1032 | 1033 | crypto-browserify@^3.11.0: 1034 | version "3.12.0" 1035 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1036 | dependencies: 1037 | browserify-cipher "^1.0.0" 1038 | browserify-sign "^4.0.0" 1039 | create-ecdh "^4.0.0" 1040 | create-hash "^1.1.0" 1041 | create-hmac "^1.1.0" 1042 | diffie-hellman "^5.0.0" 1043 | inherits "^2.0.1" 1044 | pbkdf2 "^3.0.3" 1045 | public-encrypt "^4.0.0" 1046 | randombytes "^2.0.0" 1047 | randomfill "^1.0.3" 1048 | 1049 | crypto-random-string@^1.0.0: 1050 | version "1.0.0" 1051 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1052 | 1053 | css-select@~1.2.0: 1054 | version "1.2.0" 1055 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1056 | dependencies: 1057 | boolbase "~1.0.0" 1058 | css-what "2.1" 1059 | domutils "1.5.1" 1060 | nth-check "~1.0.1" 1061 | 1062 | css-what@2.1: 1063 | version "2.1.0" 1064 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1065 | 1066 | d@1: 1067 | version "1.0.0" 1068 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1069 | dependencies: 1070 | es5-ext "^0.10.9" 1071 | 1072 | dashdash@^1.12.0: 1073 | version "1.14.1" 1074 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1075 | dependencies: 1076 | assert-plus "^1.0.0" 1077 | 1078 | date-now@^0.1.4: 1079 | version "0.1.4" 1080 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1081 | 1082 | debounce@1.1.0: 1083 | version "1.1.0" 1084 | resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.1.0.tgz#6a1a4ee2a9dc4b7c24bb012558dbcdb05b37f408" 1085 | 1086 | debug@2, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.6.8, debug@~2.6.3: 1087 | version "2.6.9" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1089 | dependencies: 1090 | ms "2.0.0" 1091 | 1092 | debug@^3.1.0: 1093 | version "3.1.0" 1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1095 | dependencies: 1096 | ms "2.0.0" 1097 | 1098 | decamelize@2.0.0: 1099 | version "2.0.0" 1100 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz#656d7bbc8094c4c788ea53c5840908c9c7d063c7" 1101 | dependencies: 1102 | xregexp "4.0.0" 1103 | 1104 | decamelize@^1.0.0, decamelize@^1.1.1: 1105 | version "1.2.0" 1106 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1107 | 1108 | deep-equal@^1.0.0: 1109 | version "1.0.1" 1110 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1111 | 1112 | deep-extend@~0.4.0: 1113 | version "0.4.2" 1114 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1115 | 1116 | deep-is@~0.1.3: 1117 | version "0.1.3" 1118 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1119 | 1120 | deepcopy@0.6.3: 1121 | version "0.6.3" 1122 | resolved "https://registry.yarnpkg.com/deepcopy/-/deepcopy-0.6.3.tgz#634780f2f8656ab771af8fa8431ed1ccee55c7b0" 1123 | 1124 | deepmerge@^1.3.0: 1125 | version "1.5.2" 1126 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" 1127 | 1128 | defaults@^1.0.3: 1129 | version "1.0.3" 1130 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 1131 | dependencies: 1132 | clone "^1.0.2" 1133 | 1134 | del@^2.0.2: 1135 | version "2.2.2" 1136 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1137 | dependencies: 1138 | globby "^5.0.0" 1139 | is-path-cwd "^1.0.0" 1140 | is-path-in-cwd "^1.0.0" 1141 | object-assign "^4.0.1" 1142 | pify "^2.0.0" 1143 | pinkie-promise "^2.0.0" 1144 | rimraf "^2.2.8" 1145 | 1146 | delayed-stream@~1.0.0: 1147 | version "1.0.0" 1148 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1149 | 1150 | delegates@^1.0.0: 1151 | version "1.0.0" 1152 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1153 | 1154 | des.js@^1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1157 | dependencies: 1158 | inherits "^2.0.1" 1159 | minimalistic-assert "^1.0.0" 1160 | 1161 | detect-indent@^4.0.0: 1162 | version "4.0.0" 1163 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1164 | dependencies: 1165 | repeating "^2.0.0" 1166 | 1167 | detect-libc@^1.0.2: 1168 | version "1.0.3" 1169 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1170 | 1171 | diffie-hellman@^5.0.0: 1172 | version "5.0.2" 1173 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1174 | dependencies: 1175 | bn.js "^4.1.0" 1176 | miller-rabin "^4.0.0" 1177 | randombytes "^2.0.0" 1178 | 1179 | dispensary@0.12.0: 1180 | version "0.12.0" 1181 | resolved "https://registry.yarnpkg.com/dispensary/-/dispensary-0.12.0.tgz#cc491bbbfa66a57414c958c68582a4c8703ff159" 1182 | dependencies: 1183 | array-from "2.1.1" 1184 | async "^2.0.0" 1185 | natural-compare-lite "^1.4.0" 1186 | pino "^4.6.0" 1187 | request "^2.81.0" 1188 | semver "5.4.1" 1189 | sha.js "^2.4.4" 1190 | source-map-support "0.5.0" 1191 | yargs "^10.0.3" 1192 | 1193 | doctoc@1.3.0: 1194 | version "1.3.0" 1195 | resolved "https://registry.yarnpkg.com/doctoc/-/doctoc-1.3.0.tgz#7f0839851dd58c808a2cae55d9504e012d08ee30" 1196 | dependencies: 1197 | anchor-markdown-header "^0.5.5" 1198 | htmlparser2 "~3.9.2" 1199 | markdown-to-ast "~3.4.0" 1200 | minimist "~1.2.0" 1201 | underscore "~1.8.3" 1202 | update-section "^0.3.0" 1203 | 1204 | doctrine@^2.0.0, doctrine@^2.0.2: 1205 | version "2.1.0" 1206 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1207 | dependencies: 1208 | esutils "^2.0.2" 1209 | 1210 | dom-serializer@0, dom-serializer@~0.1.0: 1211 | version "0.1.0" 1212 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1213 | dependencies: 1214 | domelementtype "~1.1.1" 1215 | entities "~1.1.1" 1216 | 1217 | domain-browser@^1.1.1: 1218 | version "1.2.0" 1219 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 1220 | 1221 | domelementtype@1, domelementtype@^1.3.0: 1222 | version "1.3.0" 1223 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1224 | 1225 | domelementtype@~1.1.1: 1226 | version "1.1.3" 1227 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1228 | 1229 | domhandler@^2.3.0: 1230 | version "2.4.1" 1231 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1232 | dependencies: 1233 | domelementtype "1" 1234 | 1235 | domutils@1.5.1: 1236 | version "1.5.1" 1237 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1238 | dependencies: 1239 | dom-serializer "0" 1240 | domelementtype "1" 1241 | 1242 | domutils@^1.5.1: 1243 | version "1.6.2" 1244 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 1245 | dependencies: 1246 | dom-serializer "0" 1247 | domelementtype "1" 1248 | 1249 | dot-prop@^4.1.0: 1250 | version "4.2.0" 1251 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1252 | dependencies: 1253 | is-obj "^1.0.0" 1254 | 1255 | dtrace-provider@~0.8: 1256 | version "0.8.6" 1257 | resolved "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.6.tgz#428a223afe03425d2cd6d6347fdf40c66903563d" 1258 | dependencies: 1259 | nan "^2.3.3" 1260 | 1261 | duplexer3@^0.1.4: 1262 | version "0.1.4" 1263 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1264 | 1265 | ecc-jsbn@~0.1.1: 1266 | version "0.1.1" 1267 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1268 | dependencies: 1269 | jsbn "~0.1.0" 1270 | 1271 | ecdsa-sig-formatter@1.0.9: 1272 | version "1.0.9" 1273 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1" 1274 | dependencies: 1275 | base64url "^2.0.0" 1276 | safe-buffer "^5.0.1" 1277 | 1278 | elliptic@^6.0.0: 1279 | version "6.4.0" 1280 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1281 | dependencies: 1282 | bn.js "^4.4.0" 1283 | brorand "^1.0.1" 1284 | hash.js "^1.0.0" 1285 | hmac-drbg "^1.0.0" 1286 | inherits "^2.0.1" 1287 | minimalistic-assert "^1.0.0" 1288 | minimalistic-crypto-utils "^1.0.0" 1289 | 1290 | emoji-regex@~6.1.0: 1291 | version "6.1.3" 1292 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.3.tgz#ec79a3969b02d2ecf2b72254279bf99bc7a83932" 1293 | 1294 | emojis-list@^2.0.0: 1295 | version "2.1.0" 1296 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1297 | 1298 | encoding@^0.1.11: 1299 | version "0.1.12" 1300 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1301 | dependencies: 1302 | iconv-lite "~0.4.13" 1303 | 1304 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1305 | version "1.4.1" 1306 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1307 | dependencies: 1308 | once "^1.4.0" 1309 | 1310 | end-of-stream@~1.1.0: 1311 | version "1.1.0" 1312 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.1.0.tgz#e9353258baa9108965efc41cb0ef8ade2f3cfb07" 1313 | dependencies: 1314 | once "~1.3.0" 1315 | 1316 | enhanced-resolve@^3.4.0: 1317 | version "3.4.1" 1318 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1319 | dependencies: 1320 | graceful-fs "^4.1.2" 1321 | memory-fs "^0.4.0" 1322 | object-assign "^4.0.1" 1323 | tapable "^0.2.7" 1324 | 1325 | entities@^1.1.1, entities@~1.1.1: 1326 | version "1.1.1" 1327 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1328 | 1329 | errno@^0.1.3: 1330 | version "0.1.6" 1331 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 1332 | dependencies: 1333 | prr "~1.0.1" 1334 | 1335 | error-ex@^1.2.0, error-ex@^1.3.1: 1336 | version "1.3.1" 1337 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1338 | dependencies: 1339 | is-arrayish "^0.2.1" 1340 | 1341 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1342 | version "0.10.38" 1343 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.38.tgz#fa7d40d65bbc9bb8a67e1d3f9cc656a00530eed3" 1344 | dependencies: 1345 | es6-iterator "~2.0.3" 1346 | es6-symbol "~3.1.1" 1347 | 1348 | es6-error@4.0.0: 1349 | version "4.0.0" 1350 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.0.tgz#f094c7041f662599bb12720da059d6b9c7ff0f40" 1351 | 1352 | es6-error@4.1.1: 1353 | version "4.1.1" 1354 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 1355 | 1356 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 1357 | version "2.0.3" 1358 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1359 | dependencies: 1360 | d "1" 1361 | es5-ext "^0.10.35" 1362 | es6-symbol "^3.1.1" 1363 | 1364 | es6-map@^0.1.3: 1365 | version "0.1.5" 1366 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1367 | dependencies: 1368 | d "1" 1369 | es5-ext "~0.10.14" 1370 | es6-iterator "~2.0.1" 1371 | es6-set "~0.1.5" 1372 | es6-symbol "~3.1.1" 1373 | event-emitter "~0.3.5" 1374 | 1375 | es6-promise@^2.0.1: 1376 | version "2.3.0" 1377 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-2.3.0.tgz#96edb9f2fdb01995822b263dd8aadab6748181bc" 1378 | 1379 | es6-promise@^4.0.3: 1380 | version "4.2.4" 1381 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 1382 | 1383 | es6-promisify@5.0.0: 1384 | version "5.0.0" 1385 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1386 | dependencies: 1387 | es6-promise "^4.0.3" 1388 | 1389 | es6-set@~0.1.5: 1390 | version "0.1.5" 1391 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1392 | dependencies: 1393 | d "1" 1394 | es5-ext "~0.10.14" 1395 | es6-iterator "~2.0.1" 1396 | es6-symbol "3.1.1" 1397 | event-emitter "~0.3.5" 1398 | 1399 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1400 | version "3.1.1" 1401 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1402 | dependencies: 1403 | d "1" 1404 | es5-ext "~0.10.14" 1405 | 1406 | es6-weak-map@^2.0.1: 1407 | version "2.0.2" 1408 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1409 | dependencies: 1410 | d "1" 1411 | es5-ext "^0.10.14" 1412 | es6-iterator "^2.0.1" 1413 | es6-symbol "^3.1.1" 1414 | 1415 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1416 | version "1.0.5" 1417 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1418 | 1419 | escope@^3.6.0: 1420 | version "3.6.0" 1421 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1422 | dependencies: 1423 | es6-map "^0.1.3" 1424 | es6-weak-map "^2.0.1" 1425 | esrecurse "^4.1.0" 1426 | estraverse "^4.1.1" 1427 | 1428 | eslint-plugin-no-unsafe-innerhtml@1.0.16: 1429 | version "1.0.16" 1430 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-unsafe-innerhtml/-/eslint-plugin-no-unsafe-innerhtml-1.0.16.tgz#7d02878c8e9bf7916b88836d5ac122b42f151932" 1431 | dependencies: 1432 | eslint "^3.7.1" 1433 | 1434 | eslint-scope@^3.7.1: 1435 | version "3.7.1" 1436 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1437 | dependencies: 1438 | esrecurse "^4.1.0" 1439 | estraverse "^4.1.1" 1440 | 1441 | eslint-visitor-keys@^1.0.0: 1442 | version "1.0.0" 1443 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1444 | 1445 | eslint@4.15.0: 1446 | version "4.15.0" 1447 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.15.0.tgz#89ab38c12713eec3d13afac14e4a89e75ef08145" 1448 | dependencies: 1449 | ajv "^5.3.0" 1450 | babel-code-frame "^6.22.0" 1451 | chalk "^2.1.0" 1452 | concat-stream "^1.6.0" 1453 | cross-spawn "^5.1.0" 1454 | debug "^3.1.0" 1455 | doctrine "^2.0.2" 1456 | eslint-scope "^3.7.1" 1457 | eslint-visitor-keys "^1.0.0" 1458 | espree "^3.5.2" 1459 | esquery "^1.0.0" 1460 | esutils "^2.0.2" 1461 | file-entry-cache "^2.0.0" 1462 | functional-red-black-tree "^1.0.1" 1463 | glob "^7.1.2" 1464 | globals "^11.0.1" 1465 | ignore "^3.3.3" 1466 | imurmurhash "^0.1.4" 1467 | inquirer "^3.0.6" 1468 | is-resolvable "^1.0.0" 1469 | js-yaml "^3.9.1" 1470 | json-stable-stringify-without-jsonify "^1.0.1" 1471 | levn "^0.3.0" 1472 | lodash "^4.17.4" 1473 | minimatch "^3.0.2" 1474 | mkdirp "^0.5.1" 1475 | natural-compare "^1.4.0" 1476 | optionator "^0.8.2" 1477 | path-is-inside "^1.0.2" 1478 | pluralize "^7.0.0" 1479 | progress "^2.0.0" 1480 | require-uncached "^1.0.3" 1481 | semver "^5.3.0" 1482 | strip-ansi "^4.0.0" 1483 | strip-json-comments "~2.0.1" 1484 | table "^4.0.1" 1485 | text-table "~0.2.0" 1486 | 1487 | eslint@^3.7.1: 1488 | version "3.19.0" 1489 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1490 | dependencies: 1491 | babel-code-frame "^6.16.0" 1492 | chalk "^1.1.3" 1493 | concat-stream "^1.5.2" 1494 | debug "^2.1.1" 1495 | doctrine "^2.0.0" 1496 | escope "^3.6.0" 1497 | espree "^3.4.0" 1498 | esquery "^1.0.0" 1499 | estraverse "^4.2.0" 1500 | esutils "^2.0.2" 1501 | file-entry-cache "^2.0.0" 1502 | glob "^7.0.3" 1503 | globals "^9.14.0" 1504 | ignore "^3.2.0" 1505 | imurmurhash "^0.1.4" 1506 | inquirer "^0.12.0" 1507 | is-my-json-valid "^2.10.0" 1508 | is-resolvable "^1.0.0" 1509 | js-yaml "^3.5.1" 1510 | json-stable-stringify "^1.0.0" 1511 | levn "^0.3.0" 1512 | lodash "^4.0.0" 1513 | mkdirp "^0.5.0" 1514 | natural-compare "^1.4.0" 1515 | optionator "^0.8.2" 1516 | path-is-inside "^1.0.1" 1517 | pluralize "^1.2.1" 1518 | progress "^1.1.8" 1519 | require-uncached "^1.0.2" 1520 | shelljs "^0.7.5" 1521 | strip-bom "^3.0.0" 1522 | strip-json-comments "~2.0.1" 1523 | table "^3.7.8" 1524 | text-table "~0.2.0" 1525 | user-home "^2.0.0" 1526 | 1527 | espree@^3.4.0, espree@^3.5.2: 1528 | version "3.5.3" 1529 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6" 1530 | dependencies: 1531 | acorn "^5.4.0" 1532 | acorn-jsx "^3.0.0" 1533 | 1534 | esprima@3.1.3: 1535 | version "3.1.3" 1536 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1537 | 1538 | esprima@^4.0.0: 1539 | version "4.0.0" 1540 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1541 | 1542 | esquery@^1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1545 | dependencies: 1546 | estraverse "^4.0.0" 1547 | 1548 | esrecurse@^4.1.0: 1549 | version "4.2.0" 1550 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1551 | dependencies: 1552 | estraverse "^4.1.0" 1553 | object-assign "^4.0.1" 1554 | 1555 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1556 | version "4.2.0" 1557 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1558 | 1559 | esutils@^2.0.2: 1560 | version "2.0.2" 1561 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1562 | 1563 | event-emitter@~0.3.5: 1564 | version "0.3.5" 1565 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1566 | dependencies: 1567 | d "1" 1568 | es5-ext "~0.10.14" 1569 | 1570 | event-to-promise@0.8.0: 1571 | version "0.8.0" 1572 | resolved "https://registry.yarnpkg.com/event-to-promise/-/event-to-promise-0.8.0.tgz#4b84f11772b6f25f7752fc74d971531ac6f5b626" 1573 | 1574 | events@^1.0.0: 1575 | version "1.1.1" 1576 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1577 | 1578 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1579 | version "1.0.3" 1580 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1581 | dependencies: 1582 | md5.js "^1.3.4" 1583 | safe-buffer "^5.1.1" 1584 | 1585 | execa@^0.7.0: 1586 | version "0.7.0" 1587 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1588 | dependencies: 1589 | cross-spawn "^5.0.1" 1590 | get-stream "^3.0.0" 1591 | is-stream "^1.1.0" 1592 | npm-run-path "^2.0.0" 1593 | p-finally "^1.0.0" 1594 | signal-exit "^3.0.0" 1595 | strip-eof "^1.0.0" 1596 | 1597 | exit-hook@^1.0.0: 1598 | version "1.1.1" 1599 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1600 | 1601 | expand-brackets@^0.1.4: 1602 | version "0.1.5" 1603 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1604 | dependencies: 1605 | is-posix-bracket "^0.1.0" 1606 | 1607 | expand-range@^1.8.1: 1608 | version "1.8.2" 1609 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1610 | dependencies: 1611 | fill-range "^2.1.0" 1612 | 1613 | extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: 1614 | version "3.0.1" 1615 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1616 | 1617 | external-editor@^2.0.4: 1618 | version "2.1.0" 1619 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1620 | dependencies: 1621 | chardet "^0.4.0" 1622 | iconv-lite "^0.4.17" 1623 | tmp "^0.0.33" 1624 | 1625 | extglob@^0.3.1: 1626 | version "0.3.2" 1627 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1628 | dependencies: 1629 | is-extglob "^1.0.0" 1630 | 1631 | extract-text-webpack-plugin@3.0.2: 1632 | version "3.0.2" 1633 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7" 1634 | dependencies: 1635 | async "^2.4.1" 1636 | loader-utils "^1.1.0" 1637 | schema-utils "^0.3.0" 1638 | webpack-sources "^1.0.1" 1639 | 1640 | extsprintf@1.3.0: 1641 | version "1.3.0" 1642 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1643 | 1644 | extsprintf@^1.2.0: 1645 | version "1.4.0" 1646 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1647 | 1648 | fast-deep-equal@^1.0.0: 1649 | version "1.0.0" 1650 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1651 | 1652 | fast-json-parse@^1.0.3: 1653 | version "1.0.3" 1654 | resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d" 1655 | 1656 | fast-json-patch@^1.0.0: 1657 | version "1.2.2" 1658 | resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-1.2.2.tgz#d377d97c6911dbdd2a1c80bfacda048a4f83bbf9" 1659 | 1660 | fast-json-stable-stringify@^2.0.0: 1661 | version "2.0.0" 1662 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1663 | 1664 | fast-levenshtein@~2.0.4: 1665 | version "2.0.6" 1666 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1667 | 1668 | fast-safe-stringify@^1.0.8, fast-safe-stringify@^1.2.1, fast-safe-stringify@^1.2.3: 1669 | version "1.2.3" 1670 | resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz#9fe22c37fb2f7f86f06b8f004377dbf8f1ee7bc1" 1671 | 1672 | fd-slicer@~1.0.1: 1673 | version "1.0.1" 1674 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 1675 | dependencies: 1676 | pend "~1.2.0" 1677 | 1678 | figures@^1.3.5: 1679 | version "1.7.0" 1680 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1681 | dependencies: 1682 | escape-string-regexp "^1.0.5" 1683 | object-assign "^4.1.0" 1684 | 1685 | figures@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1688 | dependencies: 1689 | escape-string-regexp "^1.0.5" 1690 | 1691 | file-entry-cache@^2.0.0: 1692 | version "2.0.0" 1693 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1694 | dependencies: 1695 | flat-cache "^1.2.1" 1696 | object-assign "^4.0.1" 1697 | 1698 | filename-regex@^2.0.0: 1699 | version "2.0.1" 1700 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1701 | 1702 | fill-range@^2.1.0: 1703 | version "2.2.3" 1704 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1705 | dependencies: 1706 | is-number "^2.1.0" 1707 | isobject "^2.0.0" 1708 | randomatic "^1.1.3" 1709 | repeat-element "^1.1.2" 1710 | repeat-string "^1.5.2" 1711 | 1712 | find-up@^1.0.0: 1713 | version "1.1.2" 1714 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1715 | dependencies: 1716 | path-exists "^2.0.0" 1717 | pinkie-promise "^2.0.0" 1718 | 1719 | find-up@^2.0.0, find-up@^2.1.0: 1720 | version "2.1.0" 1721 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1722 | dependencies: 1723 | locate-path "^2.0.0" 1724 | 1725 | firefox-client@^0.3.0: 1726 | version "0.3.0" 1727 | resolved "https://registry.yarnpkg.com/firefox-client/-/firefox-client-0.3.0.tgz#3794460f6eb6afcf41376addcbc7462e24a4cd8b" 1728 | dependencies: 1729 | colors "0.5.x" 1730 | js-select "~0.6.0" 1731 | 1732 | firefox-profile@1.1.0: 1733 | version "1.1.0" 1734 | resolved "https://registry.yarnpkg.com/firefox-profile/-/firefox-profile-1.1.0.tgz#50090d1ff62dce3052cc7f46d1243c6a487db47a" 1735 | dependencies: 1736 | adm-zip "~0.4.x" 1737 | archiver "~2.1.0" 1738 | async "~2.5.0" 1739 | fs-extra "~4.0.2" 1740 | ini "~1.3.3" 1741 | jetpack-id "1.0.0" 1742 | lazystream "~1.0.0" 1743 | lodash "~4.17.2" 1744 | minimist "^1.1.1" 1745 | uuid "^3.0.0" 1746 | xml2js "~0.4.4" 1747 | 1748 | first-chunk-stream@2.0.0, first-chunk-stream@^2.0.0: 1749 | version "2.0.0" 1750 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70" 1751 | dependencies: 1752 | readable-stream "^2.0.2" 1753 | 1754 | flat-cache@^1.2.1: 1755 | version "1.3.0" 1756 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1757 | dependencies: 1758 | circular-json "^0.3.1" 1759 | del "^2.0.2" 1760 | graceful-fs "^4.1.2" 1761 | write "^0.2.1" 1762 | 1763 | flatstr@^1.0.5: 1764 | version "1.0.5" 1765 | resolved "https://registry.yarnpkg.com/flatstr/-/flatstr-1.0.5.tgz#5b451b08cbd48e2eac54a2bbe0bf46165aa14be3" 1766 | 1767 | fluent@0.4.1: 1768 | version "0.4.1" 1769 | resolved "https://registry.yarnpkg.com/fluent/-/fluent-0.4.1.tgz#cd3c4cfb9974d51e603b1dead28c73dda2cf4c1e" 1770 | 1771 | for-in@^1.0.1: 1772 | version "1.0.2" 1773 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1774 | 1775 | for-own@^0.1.4: 1776 | version "0.1.5" 1777 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1778 | dependencies: 1779 | for-in "^1.0.1" 1780 | 1781 | forever-agent@~0.6.1: 1782 | version "0.6.1" 1783 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1784 | 1785 | form-data@~2.1.1: 1786 | version "2.1.4" 1787 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1788 | dependencies: 1789 | asynckit "^0.4.0" 1790 | combined-stream "^1.0.5" 1791 | mime-types "^2.1.12" 1792 | 1793 | form-data@~2.3.1: 1794 | version "2.3.1" 1795 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1796 | dependencies: 1797 | asynckit "^0.4.0" 1798 | combined-stream "^1.0.5" 1799 | mime-types "^2.1.12" 1800 | 1801 | fs-extra@~4.0.2: 1802 | version "4.0.3" 1803 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 1804 | dependencies: 1805 | graceful-fs "^4.1.2" 1806 | jsonfile "^4.0.0" 1807 | universalify "^0.1.0" 1808 | 1809 | fs.realpath@^1.0.0: 1810 | version "1.0.0" 1811 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1812 | 1813 | fsevents@^1.0.0: 1814 | version "1.1.3" 1815 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1816 | dependencies: 1817 | nan "^2.3.0" 1818 | node-pre-gyp "^0.6.39" 1819 | 1820 | fstream-ignore@^1.0.5: 1821 | version "1.0.5" 1822 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1823 | dependencies: 1824 | fstream "^1.0.0" 1825 | inherits "2" 1826 | minimatch "^3.0.0" 1827 | 1828 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1829 | version "1.0.11" 1830 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1831 | dependencies: 1832 | graceful-fs "^4.1.2" 1833 | inherits "~2.0.0" 1834 | mkdirp ">=0.5 0" 1835 | rimraf "2" 1836 | 1837 | function-bind@^1.0.2: 1838 | version "1.1.1" 1839 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1840 | 1841 | functional-red-black-tree@^1.0.1: 1842 | version "1.0.1" 1843 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1844 | 1845 | fx-runner@1.0.8: 1846 | version "1.0.8" 1847 | resolved "https://registry.yarnpkg.com/fx-runner/-/fx-runner-1.0.8.tgz#5ced3b04a8d51d634de20d1480f0dc5dd8325dec" 1848 | dependencies: 1849 | commander "2.9.0" 1850 | lodash "3.10.1" 1851 | shell-quote "1.6.1" 1852 | spawn-sync "1.0.15" 1853 | when "3.7.7" 1854 | which "1.2.4" 1855 | winreg "0.0.12" 1856 | 1857 | gauge@~2.7.3: 1858 | version "2.7.4" 1859 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1860 | dependencies: 1861 | aproba "^1.0.3" 1862 | console-control-strings "^1.0.0" 1863 | has-unicode "^2.0.0" 1864 | object-assign "^4.1.0" 1865 | signal-exit "^3.0.0" 1866 | string-width "^1.0.1" 1867 | strip-ansi "^3.0.1" 1868 | wide-align "^1.1.0" 1869 | 1870 | generate-function@^2.0.0: 1871 | version "2.0.0" 1872 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1873 | 1874 | generate-object-property@^1.1.0: 1875 | version "1.2.0" 1876 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1877 | dependencies: 1878 | is-property "^1.0.0" 1879 | 1880 | get-caller-file@^1.0.1: 1881 | version "1.0.2" 1882 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1883 | 1884 | get-stream@^3.0.0: 1885 | version "3.0.0" 1886 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1887 | 1888 | getpass@^0.1.1: 1889 | version "0.1.7" 1890 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1891 | dependencies: 1892 | assert-plus "^1.0.0" 1893 | 1894 | gettext-parser@1.1.0: 1895 | version "1.1.0" 1896 | resolved "https://registry.yarnpkg.com/gettext-parser/-/gettext-parser-1.1.0.tgz#2c5a6638d893934b9b55037d0ad82cb7004b2679" 1897 | dependencies: 1898 | encoding "^0.1.11" 1899 | 1900 | git-rev-sync@1.9.1: 1901 | version "1.9.1" 1902 | resolved "https://registry.yarnpkg.com/git-rev-sync/-/git-rev-sync-1.9.1.tgz#a0c2e3dd392abcf6b76962e27fc75fb3223449ce" 1903 | dependencies: 1904 | escape-string-regexp "1.0.5" 1905 | graceful-fs "4.1.11" 1906 | shelljs "0.7.7" 1907 | 1908 | glob-base@^0.3.0: 1909 | version "0.3.0" 1910 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1911 | dependencies: 1912 | glob-parent "^2.0.0" 1913 | is-glob "^2.0.0" 1914 | 1915 | glob-parent@^2.0.0: 1916 | version "2.0.0" 1917 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1918 | dependencies: 1919 | is-glob "^2.0.0" 1920 | 1921 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1922 | version "7.1.2" 1923 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1924 | dependencies: 1925 | fs.realpath "^1.0.0" 1926 | inflight "^1.0.4" 1927 | inherits "2" 1928 | minimatch "^3.0.4" 1929 | once "^1.3.0" 1930 | path-is-absolute "^1.0.0" 1931 | 1932 | glob@^6.0.1: 1933 | version "6.0.4" 1934 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 1935 | dependencies: 1936 | inflight "^1.0.4" 1937 | inherits "2" 1938 | minimatch "2 || 3" 1939 | once "^1.3.0" 1940 | path-is-absolute "^1.0.0" 1941 | 1942 | global-dirs@^0.1.0: 1943 | version "0.1.1" 1944 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1945 | dependencies: 1946 | ini "^1.3.4" 1947 | 1948 | globals@^11.0.1: 1949 | version "11.3.0" 1950 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" 1951 | 1952 | globals@^9.14.0, globals@^9.18.0: 1953 | version "9.18.0" 1954 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1955 | 1956 | globby@^5.0.0: 1957 | version "5.0.0" 1958 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1959 | dependencies: 1960 | array-union "^1.0.1" 1961 | arrify "^1.0.0" 1962 | glob "^7.0.3" 1963 | object-assign "^4.0.1" 1964 | pify "^2.0.0" 1965 | pinkie-promise "^2.0.0" 1966 | 1967 | got@^6.7.1: 1968 | version "6.7.1" 1969 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1970 | dependencies: 1971 | create-error-class "^3.0.0" 1972 | duplexer3 "^0.1.4" 1973 | get-stream "^3.0.0" 1974 | is-redirect "^1.0.0" 1975 | is-retry-allowed "^1.0.0" 1976 | is-stream "^1.0.0" 1977 | lowercase-keys "^1.0.0" 1978 | safe-buffer "^5.0.1" 1979 | timed-out "^4.0.0" 1980 | unzip-response "^2.0.1" 1981 | url-parse-lax "^1.0.0" 1982 | 1983 | graceful-fs@4.1.11, graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1984 | version "4.1.11" 1985 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1986 | 1987 | "graceful-readlink@>= 1.0.0": 1988 | version "1.0.1" 1989 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1990 | 1991 | growly@^1.3.0: 1992 | version "1.3.0" 1993 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1994 | 1995 | har-schema@^1.0.5: 1996 | version "1.0.5" 1997 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1998 | 1999 | har-schema@^2.0.0: 2000 | version "2.0.0" 2001 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 2002 | 2003 | har-validator@~2.0.6: 2004 | version "2.0.6" 2005 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2006 | dependencies: 2007 | chalk "^1.1.1" 2008 | commander "^2.9.0" 2009 | is-my-json-valid "^2.12.4" 2010 | pinkie-promise "^2.0.0" 2011 | 2012 | har-validator@~4.2.1: 2013 | version "4.2.1" 2014 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2015 | dependencies: 2016 | ajv "^4.9.1" 2017 | har-schema "^1.0.5" 2018 | 2019 | har-validator@~5.0.3: 2020 | version "5.0.3" 2021 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 2022 | dependencies: 2023 | ajv "^5.1.0" 2024 | har-schema "^2.0.0" 2025 | 2026 | has-ansi@^2.0.0: 2027 | version "2.0.0" 2028 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2029 | dependencies: 2030 | ansi-regex "^2.0.0" 2031 | 2032 | has-color@~0.1.0: 2033 | version "0.1.7" 2034 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 2035 | 2036 | has-flag@^2.0.0: 2037 | version "2.0.0" 2038 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2039 | 2040 | has-unicode@^2.0.0: 2041 | version "2.0.1" 2042 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2043 | 2044 | has@^1.0.1: 2045 | version "1.0.1" 2046 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2047 | dependencies: 2048 | function-bind "^1.0.2" 2049 | 2050 | hash-base@^2.0.0: 2051 | version "2.0.2" 2052 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 2053 | dependencies: 2054 | inherits "^2.0.1" 2055 | 2056 | hash-base@^3.0.0: 2057 | version "3.0.4" 2058 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 2059 | dependencies: 2060 | inherits "^2.0.1" 2061 | safe-buffer "^5.0.1" 2062 | 2063 | hash.js@^1.0.0, hash.js@^1.0.3: 2064 | version "1.1.3" 2065 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 2066 | dependencies: 2067 | inherits "^2.0.3" 2068 | minimalistic-assert "^1.0.0" 2069 | 2070 | hawk@3.1.3, hawk@~3.1.3: 2071 | version "3.1.3" 2072 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2073 | dependencies: 2074 | boom "2.x.x" 2075 | cryptiles "2.x.x" 2076 | hoek "2.x.x" 2077 | sntp "1.x.x" 2078 | 2079 | hawk@~6.0.2: 2080 | version "6.0.2" 2081 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 2082 | dependencies: 2083 | boom "4.x.x" 2084 | cryptiles "3.x.x" 2085 | hoek "4.x.x" 2086 | sntp "2.x.x" 2087 | 2088 | hmac-drbg@^1.0.0: 2089 | version "1.0.1" 2090 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2091 | dependencies: 2092 | hash.js "^1.0.3" 2093 | minimalistic-assert "^1.0.0" 2094 | minimalistic-crypto-utils "^1.0.1" 2095 | 2096 | hoek@2.x.x: 2097 | version "2.16.3" 2098 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2099 | 2100 | hoek@4.x.x: 2101 | version "4.2.0" 2102 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 2103 | 2104 | home-or-tmp@^2.0.0: 2105 | version "2.0.0" 2106 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2107 | dependencies: 2108 | os-homedir "^1.0.0" 2109 | os-tmpdir "^1.0.1" 2110 | 2111 | hosted-git-info@^2.1.4: 2112 | version "2.5.0" 2113 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 2114 | 2115 | htmlparser2@^3.9.1, htmlparser2@~3.9.2: 2116 | version "3.9.2" 2117 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 2118 | dependencies: 2119 | domelementtype "^1.3.0" 2120 | domhandler "^2.3.0" 2121 | domutils "^1.5.1" 2122 | entities "^1.1.1" 2123 | inherits "^2.0.1" 2124 | readable-stream "^2.0.2" 2125 | 2126 | http-signature@~1.1.0: 2127 | version "1.1.1" 2128 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2129 | dependencies: 2130 | assert-plus "^0.2.0" 2131 | jsprim "^1.2.2" 2132 | sshpk "^1.7.0" 2133 | 2134 | http-signature@~1.2.0: 2135 | version "1.2.0" 2136 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2137 | dependencies: 2138 | assert-plus "^1.0.0" 2139 | jsprim "^1.2.2" 2140 | sshpk "^1.7.0" 2141 | 2142 | https-browserify@^1.0.0: 2143 | version "1.0.0" 2144 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 2145 | 2146 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 2147 | version "0.4.19" 2148 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2149 | 2150 | ieee754@^1.1.4: 2151 | version "1.1.8" 2152 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2153 | 2154 | ignore@^3.2.0, ignore@^3.3.3: 2155 | version "3.3.7" 2156 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2157 | 2158 | import-lazy@^2.1.0: 2159 | version "2.1.0" 2160 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 2161 | 2162 | imurmurhash@^0.1.4: 2163 | version "0.1.4" 2164 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2165 | 2166 | indexof@0.0.1: 2167 | version "0.0.1" 2168 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2169 | 2170 | inflight@^1.0.4: 2171 | version "1.0.6" 2172 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2173 | dependencies: 2174 | once "^1.3.0" 2175 | wrappy "1" 2176 | 2177 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2178 | version "2.0.3" 2179 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2180 | 2181 | inherits@2.0.1: 2182 | version "2.0.1" 2183 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2184 | 2185 | ini@^1.3.4, ini@~1.3.0, ini@~1.3.3: 2186 | version "1.3.5" 2187 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2188 | 2189 | inquirer@^0.12.0: 2190 | version "0.12.0" 2191 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2192 | dependencies: 2193 | ansi-escapes "^1.1.0" 2194 | ansi-regex "^2.0.0" 2195 | chalk "^1.0.0" 2196 | cli-cursor "^1.0.1" 2197 | cli-width "^2.0.0" 2198 | figures "^1.3.5" 2199 | lodash "^4.3.0" 2200 | readline2 "^1.0.1" 2201 | run-async "^0.1.0" 2202 | rx-lite "^3.1.2" 2203 | string-width "^1.0.1" 2204 | strip-ansi "^3.0.0" 2205 | through "^2.3.6" 2206 | 2207 | inquirer@^3.0.6: 2208 | version "3.3.0" 2209 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2210 | dependencies: 2211 | ansi-escapes "^3.0.0" 2212 | chalk "^2.0.0" 2213 | cli-cursor "^2.1.0" 2214 | cli-width "^2.0.0" 2215 | external-editor "^2.0.4" 2216 | figures "^2.0.0" 2217 | lodash "^4.3.0" 2218 | mute-stream "0.0.7" 2219 | run-async "^2.2.0" 2220 | rx-lite "^4.0.8" 2221 | rx-lite-aggregates "^4.0.8" 2222 | string-width "^2.1.0" 2223 | strip-ansi "^4.0.0" 2224 | through "^2.3.6" 2225 | 2226 | interpret@^1.0.0: 2227 | version "1.1.0" 2228 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 2229 | 2230 | invariant@^2.2.2: 2231 | version "2.2.2" 2232 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2233 | dependencies: 2234 | loose-envify "^1.0.0" 2235 | 2236 | invert-kv@^1.0.0: 2237 | version "1.0.0" 2238 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2239 | 2240 | is-absolute@^0.1.7: 2241 | version "0.1.7" 2242 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.1.7.tgz#847491119fccb5fb436217cc737f7faad50f603f" 2243 | dependencies: 2244 | is-relative "^0.1.0" 2245 | 2246 | is-alphabetical@^1.0.0: 2247 | version "1.0.1" 2248 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.1.tgz#c77079cc91d4efac775be1034bf2d243f95e6f08" 2249 | 2250 | is-alphanumerical@^1.0.0: 2251 | version "1.0.1" 2252 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.1.tgz#dfb4aa4d1085e33bdb61c2dee9c80e9c6c19f53b" 2253 | dependencies: 2254 | is-alphabetical "^1.0.0" 2255 | is-decimal "^1.0.0" 2256 | 2257 | is-arrayish@^0.2.1: 2258 | version "0.2.1" 2259 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2260 | 2261 | is-binary-path@^1.0.0: 2262 | version "1.0.1" 2263 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2264 | dependencies: 2265 | binary-extensions "^1.0.0" 2266 | 2267 | is-buffer@^1.1.5: 2268 | version "1.1.6" 2269 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2270 | 2271 | is-builtin-module@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2274 | dependencies: 2275 | builtin-modules "^1.0.0" 2276 | 2277 | is-decimal@^1.0.0: 2278 | version "1.0.1" 2279 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.1.tgz#f5fb6a94996ad9e8e3761fbfbd091f1fca8c4e82" 2280 | 2281 | is-dotfile@^1.0.0: 2282 | version "1.0.3" 2283 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2284 | 2285 | is-equal-shallow@^0.1.3: 2286 | version "0.1.3" 2287 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2288 | dependencies: 2289 | is-primitive "^2.0.0" 2290 | 2291 | is-extendable@^0.1.1: 2292 | version "0.1.1" 2293 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2294 | 2295 | is-extglob@^1.0.0: 2296 | version "1.0.0" 2297 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2298 | 2299 | is-finite@^1.0.0: 2300 | version "1.0.2" 2301 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2302 | dependencies: 2303 | number-is-nan "^1.0.0" 2304 | 2305 | is-fullwidth-code-point@^1.0.0: 2306 | version "1.0.0" 2307 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2308 | dependencies: 2309 | number-is-nan "^1.0.0" 2310 | 2311 | is-fullwidth-code-point@^2.0.0: 2312 | version "2.0.0" 2313 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2314 | 2315 | is-glob@^2.0.0, is-glob@^2.0.1: 2316 | version "2.0.1" 2317 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2318 | dependencies: 2319 | is-extglob "^1.0.0" 2320 | 2321 | is-hexadecimal@^1.0.0: 2322 | version "1.0.1" 2323 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.1.tgz#6e084bbc92061fbb0971ec58b6ce6d404e24da69" 2324 | 2325 | is-installed-globally@^0.1.0: 2326 | version "0.1.0" 2327 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 2328 | dependencies: 2329 | global-dirs "^0.1.0" 2330 | is-path-inside "^1.0.0" 2331 | 2332 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2333 | version "2.17.1" 2334 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" 2335 | dependencies: 2336 | generate-function "^2.0.0" 2337 | generate-object-property "^1.1.0" 2338 | jsonpointer "^4.0.0" 2339 | xtend "^4.0.0" 2340 | 2341 | is-npm@^1.0.0: 2342 | version "1.0.0" 2343 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2344 | 2345 | is-number@^2.1.0: 2346 | version "2.1.0" 2347 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2348 | dependencies: 2349 | kind-of "^3.0.2" 2350 | 2351 | is-number@^3.0.0: 2352 | version "3.0.0" 2353 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2354 | dependencies: 2355 | kind-of "^3.0.2" 2356 | 2357 | is-obj@^1.0.0: 2358 | version "1.0.1" 2359 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2360 | 2361 | is-path-cwd@^1.0.0: 2362 | version "1.0.0" 2363 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2364 | 2365 | is-path-in-cwd@^1.0.0: 2366 | version "1.0.0" 2367 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2368 | dependencies: 2369 | is-path-inside "^1.0.0" 2370 | 2371 | is-path-inside@^1.0.0: 2372 | version "1.0.1" 2373 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2374 | dependencies: 2375 | path-is-inside "^1.0.1" 2376 | 2377 | is-posix-bracket@^0.1.0: 2378 | version "0.1.1" 2379 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2380 | 2381 | is-primitive@^2.0.0: 2382 | version "2.0.0" 2383 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2384 | 2385 | is-promise@^2.1.0: 2386 | version "2.1.0" 2387 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2388 | 2389 | is-property@^1.0.0: 2390 | version "1.0.2" 2391 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2392 | 2393 | is-redirect@^1.0.0: 2394 | version "1.0.0" 2395 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2396 | 2397 | is-relative@^0.1.0: 2398 | version "0.1.3" 2399 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.1.3.tgz#905fee8ae86f45b3ec614bc3c15c869df0876e82" 2400 | 2401 | is-resolvable@^1.0.0: 2402 | version "1.1.0" 2403 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2404 | 2405 | is-retry-allowed@^1.0.0: 2406 | version "1.1.0" 2407 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2408 | 2409 | is-stream@^1.0.0, is-stream@^1.1.0: 2410 | version "1.1.0" 2411 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2412 | 2413 | is-typedarray@~1.0.0: 2414 | version "1.0.0" 2415 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2416 | 2417 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2418 | version "0.2.1" 2419 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2420 | 2421 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2422 | version "1.0.0" 2423 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2424 | 2425 | isemail@1.x.x: 2426 | version "1.2.0" 2427 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 2428 | 2429 | isexe@^1.1.1: 2430 | version "1.1.2" 2431 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2432 | 2433 | isexe@^2.0.0: 2434 | version "2.0.0" 2435 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2436 | 2437 | isobject@^2.0.0: 2438 | version "2.1.0" 2439 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2440 | dependencies: 2441 | isarray "1.0.0" 2442 | 2443 | isstream@~0.1.2: 2444 | version "0.1.2" 2445 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2446 | 2447 | jed@1.1.1: 2448 | version "1.1.1" 2449 | resolved "https://registry.yarnpkg.com/jed/-/jed-1.1.1.tgz#7a549bbd9ffe1585b0cd0a191e203055bee574b4" 2450 | 2451 | jetpack-id@1.0.0: 2452 | version "1.0.0" 2453 | resolved "https://registry.yarnpkg.com/jetpack-id/-/jetpack-id-1.0.0.tgz#2cf9fbae46d8074fc16b7de0071c8efebca473a6" 2454 | 2455 | joi@^6.10.1: 2456 | version "6.10.1" 2457 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 2458 | dependencies: 2459 | hoek "2.x.x" 2460 | isemail "1.x.x" 2461 | moment "2.x.x" 2462 | topo "1.x.x" 2463 | 2464 | js-select@~0.6.0: 2465 | version "0.6.0" 2466 | resolved "https://registry.yarnpkg.com/js-select/-/js-select-0.6.0.tgz#c284e22824d5927aec962dcdf247174aefb0d190" 2467 | dependencies: 2468 | JSONSelect "0.2.1" 2469 | traverse "0.4.x" 2470 | 2471 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2472 | version "3.0.2" 2473 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2474 | 2475 | js-yaml@^3.5.1, js-yaml@^3.9.1: 2476 | version "3.10.0" 2477 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2478 | dependencies: 2479 | argparse "^1.0.7" 2480 | esprima "^4.0.0" 2481 | 2482 | jsbn@~0.1.0: 2483 | version "0.1.1" 2484 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2485 | 2486 | jsesc@^1.3.0: 2487 | version "1.3.0" 2488 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2489 | 2490 | json-loader@^0.5.4: 2491 | version "0.5.7" 2492 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 2493 | 2494 | json-merge-patch@^0.2.3: 2495 | version "0.2.3" 2496 | resolved "https://registry.yarnpkg.com/json-merge-patch/-/json-merge-patch-0.2.3.tgz#fa2c6b5af87da77bae2966a589d52e23ed81fe40" 2497 | dependencies: 2498 | deep-equal "^1.0.0" 2499 | 2500 | json-parse-better-errors@^1.0.1: 2501 | version "1.0.1" 2502 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 2503 | 2504 | json-schema-traverse@^0.3.0: 2505 | version "0.3.1" 2506 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2507 | 2508 | json-schema@0.2.3: 2509 | version "0.2.3" 2510 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2511 | 2512 | json-stable-stringify-without-jsonify@^1.0.1: 2513 | version "1.0.1" 2514 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2515 | 2516 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2517 | version "1.0.1" 2518 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2519 | dependencies: 2520 | jsonify "~0.0.0" 2521 | 2522 | json-stringify-safe@~5.0.1: 2523 | version "5.0.1" 2524 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2525 | 2526 | json5@^0.5.0, json5@^0.5.1: 2527 | version "0.5.1" 2528 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2529 | 2530 | jsonfile@^4.0.0: 2531 | version "4.0.0" 2532 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2533 | optionalDependencies: 2534 | graceful-fs "^4.1.6" 2535 | 2536 | jsonify@~0.0.0: 2537 | version "0.0.0" 2538 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2539 | 2540 | jsonpointer@^4.0.0: 2541 | version "4.0.1" 2542 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2543 | 2544 | jsonwebtoken@7.1.9: 2545 | version "7.1.9" 2546 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-7.1.9.tgz#847804e5258bec5a9499a8dc4a5e7a3bae08d58a" 2547 | dependencies: 2548 | joi "^6.10.1" 2549 | jws "^3.1.3" 2550 | lodash.once "^4.0.0" 2551 | ms "^0.7.1" 2552 | xtend "^4.0.1" 2553 | 2554 | jsprim@^1.2.2: 2555 | version "1.4.1" 2556 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2557 | dependencies: 2558 | assert-plus "1.0.0" 2559 | extsprintf "1.3.0" 2560 | json-schema "0.2.3" 2561 | verror "1.10.0" 2562 | 2563 | jszip@^2.4.0: 2564 | version "2.6.1" 2565 | resolved "https://registry.yarnpkg.com/jszip/-/jszip-2.6.1.tgz#b88f3a7b2e67a2a048152982c7a3756d9c4828f0" 2566 | dependencies: 2567 | pako "~1.0.2" 2568 | 2569 | jwa@^1.1.4: 2570 | version "1.1.5" 2571 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5" 2572 | dependencies: 2573 | base64url "2.0.0" 2574 | buffer-equal-constant-time "1.0.1" 2575 | ecdsa-sig-formatter "1.0.9" 2576 | safe-buffer "^5.0.1" 2577 | 2578 | jws@^3.1.3: 2579 | version "3.1.4" 2580 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2" 2581 | dependencies: 2582 | base64url "^2.0.0" 2583 | jwa "^1.1.4" 2584 | safe-buffer "^5.0.1" 2585 | 2586 | kind-of@^3.0.2: 2587 | version "3.2.2" 2588 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2589 | dependencies: 2590 | is-buffer "^1.1.5" 2591 | 2592 | kind-of@^4.0.0: 2593 | version "4.0.0" 2594 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2595 | dependencies: 2596 | is-buffer "^1.1.5" 2597 | 2598 | latest-version@^3.0.0: 2599 | version "3.1.0" 2600 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2601 | dependencies: 2602 | package-json "^4.0.0" 2603 | 2604 | lazy-cache@^1.0.3: 2605 | version "1.0.4" 2606 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2607 | 2608 | lazystream@^1.0.0, lazystream@~1.0.0: 2609 | version "1.0.0" 2610 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 2611 | dependencies: 2612 | readable-stream "^2.0.5" 2613 | 2614 | lcid@^1.0.0: 2615 | version "1.0.0" 2616 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2617 | dependencies: 2618 | invert-kv "^1.0.0" 2619 | 2620 | levn@^0.3.0, levn@~0.3.0: 2621 | version "0.3.0" 2622 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2623 | dependencies: 2624 | prelude-ls "~1.1.2" 2625 | type-check "~0.3.2" 2626 | 2627 | load-json-file@^1.0.0: 2628 | version "1.1.0" 2629 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2630 | dependencies: 2631 | graceful-fs "^4.1.2" 2632 | parse-json "^2.2.0" 2633 | pify "^2.0.0" 2634 | pinkie-promise "^2.0.0" 2635 | strip-bom "^2.0.0" 2636 | 2637 | load-json-file@^2.0.0: 2638 | version "2.0.0" 2639 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2640 | dependencies: 2641 | graceful-fs "^4.1.2" 2642 | parse-json "^2.2.0" 2643 | pify "^2.0.0" 2644 | strip-bom "^3.0.0" 2645 | 2646 | loader-runner@^2.3.0: 2647 | version "2.3.0" 2648 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2649 | 2650 | loader-utils@^1.1.0: 2651 | version "1.1.0" 2652 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2653 | dependencies: 2654 | big.js "^3.1.3" 2655 | emojis-list "^2.0.0" 2656 | json5 "^0.5.0" 2657 | 2658 | locate-path@^2.0.0: 2659 | version "2.0.0" 2660 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2661 | dependencies: 2662 | p-locate "^2.0.0" 2663 | path-exists "^3.0.0" 2664 | 2665 | lodash.endswith@^4.2.1: 2666 | version "4.2.1" 2667 | resolved "https://registry.yarnpkg.com/lodash.endswith/-/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09" 2668 | 2669 | lodash.isfunction@^3.0.8: 2670 | version "3.0.9" 2671 | resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" 2672 | 2673 | lodash.isstring@^4.0.1: 2674 | version "4.0.1" 2675 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2676 | 2677 | lodash.once@^4.0.0: 2678 | version "4.1.1" 2679 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 2680 | 2681 | lodash.sortby@^4.7.0: 2682 | version "4.7.0" 2683 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2684 | 2685 | lodash.startswith@^4.2.1: 2686 | version "4.2.1" 2687 | resolved "https://registry.yarnpkg.com/lodash.startswith/-/lodash.startswith-4.2.1.tgz#c598c4adce188a27e53145731cdc6c0e7177600c" 2688 | 2689 | lodash@3.10.1: 2690 | version "3.10.1" 2691 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2692 | 2693 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.8.0, lodash@~4.17.2: 2694 | version "4.17.5" 2695 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2696 | 2697 | longest-streak@^1.0.0: 2698 | version "1.0.0" 2699 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-1.0.0.tgz#d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965" 2700 | 2701 | longest@^1.0.1: 2702 | version "1.0.1" 2703 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2704 | 2705 | loose-envify@^1.0.0: 2706 | version "1.3.1" 2707 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2708 | dependencies: 2709 | js-tokens "^3.0.0" 2710 | 2711 | lowercase-keys@^1.0.0: 2712 | version "1.0.0" 2713 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2714 | 2715 | lru-cache@^4.0.1: 2716 | version "4.1.1" 2717 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2718 | dependencies: 2719 | pseudomap "^1.0.2" 2720 | yallist "^2.1.2" 2721 | 2722 | make-dir@^1.0.0: 2723 | version "1.1.0" 2724 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2725 | dependencies: 2726 | pify "^3.0.0" 2727 | 2728 | markdown-table@^0.4.0: 2729 | version "0.4.0" 2730 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-0.4.0.tgz#890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1" 2731 | 2732 | markdown-to-ast@~3.4.0: 2733 | version "3.4.0" 2734 | resolved "https://registry.yarnpkg.com/markdown-to-ast/-/markdown-to-ast-3.4.0.tgz#0e2cba81390b0549a9153ec3b0d915b61c164be7" 2735 | dependencies: 2736 | debug "^2.1.3" 2737 | remark "^5.0.1" 2738 | structured-source "^3.0.2" 2739 | traverse "^0.6.6" 2740 | 2741 | md5.js@^1.3.4: 2742 | version "1.3.4" 2743 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2744 | dependencies: 2745 | hash-base "^3.0.0" 2746 | inherits "^2.0.1" 2747 | 2748 | mem@^1.1.0: 2749 | version "1.1.0" 2750 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2751 | dependencies: 2752 | mimic-fn "^1.0.0" 2753 | 2754 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2755 | version "0.4.1" 2756 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2757 | dependencies: 2758 | errno "^0.1.3" 2759 | readable-stream "^2.0.1" 2760 | 2761 | micromatch@^2.1.5: 2762 | version "2.3.11" 2763 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2764 | dependencies: 2765 | arr-diff "^2.0.0" 2766 | array-unique "^0.2.1" 2767 | braces "^1.8.2" 2768 | expand-brackets "^0.1.4" 2769 | extglob "^0.3.1" 2770 | filename-regex "^2.0.0" 2771 | is-extglob "^1.0.0" 2772 | is-glob "^2.0.1" 2773 | kind-of "^3.0.2" 2774 | normalize-path "^2.0.1" 2775 | object.omit "^2.0.0" 2776 | parse-glob "^3.0.4" 2777 | regex-cache "^0.4.2" 2778 | 2779 | miller-rabin@^4.0.0: 2780 | version "4.0.1" 2781 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2782 | dependencies: 2783 | bn.js "^4.0.0" 2784 | brorand "^1.0.1" 2785 | 2786 | mime-db@~1.30.0: 2787 | version "1.30.0" 2788 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2789 | 2790 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2791 | version "2.1.17" 2792 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2793 | dependencies: 2794 | mime-db "~1.30.0" 2795 | 2796 | mimic-fn@^1.0.0: 2797 | version "1.2.0" 2798 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2799 | 2800 | minimalistic-assert@^1.0.0: 2801 | version "1.0.0" 2802 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2803 | 2804 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2805 | version "1.0.1" 2806 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2807 | 2808 | "minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2809 | version "3.0.4" 2810 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2811 | dependencies: 2812 | brace-expansion "^1.1.7" 2813 | 2814 | minimist@0.0.8: 2815 | version "0.0.8" 2816 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2817 | 2818 | minimist@^1.1.1, minimist@^1.2.0, minimist@~1.2.0: 2819 | version "1.2.0" 2820 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2821 | 2822 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2823 | version "0.5.1" 2824 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2825 | dependencies: 2826 | minimist "0.0.8" 2827 | 2828 | moment@2.x.x, moment@^2.10.6: 2829 | version "2.20.1" 2830 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd" 2831 | 2832 | ms@2.0.0: 2833 | version "2.0.0" 2834 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2835 | 2836 | ms@^0.7.1: 2837 | version "0.7.3" 2838 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2839 | 2840 | mute-stream@0.0.5: 2841 | version "0.0.5" 2842 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2843 | 2844 | mute-stream@0.0.7: 2845 | version "0.0.7" 2846 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2847 | 2848 | mv@~2: 2849 | version "2.1.1" 2850 | resolved "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz#ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2" 2851 | dependencies: 2852 | mkdirp "~0.5.1" 2853 | ncp "~2.0.0" 2854 | rimraf "~2.4.0" 2855 | 2856 | mz@2.5.0: 2857 | version "2.5.0" 2858 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.5.0.tgz#2859025df03d46b57bb317174b196477ce64cec1" 2859 | dependencies: 2860 | any-promise "^1.0.0" 2861 | object-assign "^4.0.1" 2862 | thenify-all "^1.0.0" 2863 | 2864 | mz@2.7.0: 2865 | version "2.7.0" 2866 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 2867 | dependencies: 2868 | any-promise "^1.0.0" 2869 | object-assign "^4.0.1" 2870 | thenify-all "^1.0.0" 2871 | 2872 | nan@^2.3.0, nan@^2.3.3: 2873 | version "2.8.0" 2874 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2875 | 2876 | natural-compare-lite@^1.4.0: 2877 | version "1.4.0" 2878 | resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" 2879 | 2880 | natural-compare@^1.4.0: 2881 | version "1.4.0" 2882 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2883 | 2884 | ncp@~2.0.0: 2885 | version "2.0.0" 2886 | resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" 2887 | 2888 | next-tick@^1.0.0: 2889 | version "1.0.0" 2890 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2891 | 2892 | node-firefox-connect@1.2.0: 2893 | version "1.2.0" 2894 | resolved "https://registry.yarnpkg.com/node-firefox-connect/-/node-firefox-connect-1.2.0.tgz#42403848313240c98514ef14b3302816fe3b84e1" 2895 | dependencies: 2896 | es6-promise "^2.0.1" 2897 | firefox-client "^0.3.0" 2898 | 2899 | node-forge@^0.7.1: 2900 | version "0.7.1" 2901 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.1.tgz#9da611ea08982f4b94206b3beb4cc9665f20c300" 2902 | 2903 | node-libs-browser@^2.0.0: 2904 | version "2.1.0" 2905 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2906 | dependencies: 2907 | assert "^1.1.1" 2908 | browserify-zlib "^0.2.0" 2909 | buffer "^4.3.0" 2910 | console-browserify "^1.1.0" 2911 | constants-browserify "^1.0.0" 2912 | crypto-browserify "^3.11.0" 2913 | domain-browser "^1.1.1" 2914 | events "^1.0.0" 2915 | https-browserify "^1.0.0" 2916 | os-browserify "^0.3.0" 2917 | path-browserify "0.0.0" 2918 | process "^0.11.10" 2919 | punycode "^1.2.4" 2920 | querystring-es3 "^0.2.0" 2921 | readable-stream "^2.3.3" 2922 | stream-browserify "^2.0.1" 2923 | stream-http "^2.7.2" 2924 | string_decoder "^1.0.0" 2925 | timers-browserify "^2.0.4" 2926 | tty-browserify "0.0.0" 2927 | url "^0.11.0" 2928 | util "^0.10.3" 2929 | vm-browserify "0.0.4" 2930 | 2931 | node-notifier@5.2.1: 2932 | version "5.2.1" 2933 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2934 | dependencies: 2935 | growly "^1.3.0" 2936 | semver "^5.4.1" 2937 | shellwords "^0.1.1" 2938 | which "^1.3.0" 2939 | 2940 | node-pre-gyp@^0.6.39: 2941 | version "0.6.39" 2942 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2943 | dependencies: 2944 | detect-libc "^1.0.2" 2945 | hawk "3.1.3" 2946 | mkdirp "^0.5.1" 2947 | nopt "^4.0.1" 2948 | npmlog "^4.0.2" 2949 | rc "^1.1.7" 2950 | request "2.81.0" 2951 | rimraf "^2.6.1" 2952 | semver "^5.3.0" 2953 | tar "^2.2.1" 2954 | tar-pack "^3.4.0" 2955 | 2956 | nomnom@1.8.1: 2957 | version "1.8.1" 2958 | resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7" 2959 | dependencies: 2960 | chalk "~0.4.0" 2961 | underscore "~1.6.0" 2962 | 2963 | nopt@^4.0.1: 2964 | version "4.0.1" 2965 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2966 | dependencies: 2967 | abbrev "1" 2968 | osenv "^0.1.4" 2969 | 2970 | normalize-package-data@^2.3.2: 2971 | version "2.4.0" 2972 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2973 | dependencies: 2974 | hosted-git-info "^2.1.4" 2975 | is-builtin-module "^1.0.0" 2976 | semver "2 || 3 || 4 || 5" 2977 | validate-npm-package-license "^3.0.1" 2978 | 2979 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2980 | version "2.1.1" 2981 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2982 | dependencies: 2983 | remove-trailing-separator "^1.0.1" 2984 | 2985 | npm-run-path@^2.0.0: 2986 | version "2.0.2" 2987 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2988 | dependencies: 2989 | path-key "^2.0.0" 2990 | 2991 | npmlog@^4.0.2: 2992 | version "4.1.2" 2993 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2994 | dependencies: 2995 | are-we-there-yet "~1.1.2" 2996 | console-control-strings "~1.1.0" 2997 | gauge "~2.7.3" 2998 | set-blocking "~2.0.0" 2999 | 3000 | nth-check@~1.0.1: 3001 | version "1.0.1" 3002 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 3003 | dependencies: 3004 | boolbase "~1.0.0" 3005 | 3006 | number-is-nan@^1.0.0: 3007 | version "1.0.1" 3008 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3009 | 3010 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 3011 | version "0.8.2" 3012 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3013 | 3014 | object-assign@^4.0.1, object-assign@^4.1.0: 3015 | version "4.1.1" 3016 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3017 | 3018 | object.omit@^2.0.0: 3019 | version "2.0.1" 3020 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3021 | dependencies: 3022 | for-own "^0.1.4" 3023 | is-extendable "^0.1.1" 3024 | 3025 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 3026 | version "1.4.0" 3027 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3028 | dependencies: 3029 | wrappy "1" 3030 | 3031 | once@~1.3.0: 3032 | version "1.3.3" 3033 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3034 | dependencies: 3035 | wrappy "1" 3036 | 3037 | onetime@^1.0.0: 3038 | version "1.1.0" 3039 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3040 | 3041 | onetime@^2.0.0: 3042 | version "2.0.1" 3043 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3044 | dependencies: 3045 | mimic-fn "^1.0.0" 3046 | 3047 | open@0.0.5: 3048 | version "0.0.5" 3049 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 3050 | 3051 | optionator@^0.8.2: 3052 | version "0.8.2" 3053 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3054 | dependencies: 3055 | deep-is "~0.1.3" 3056 | fast-levenshtein "~2.0.4" 3057 | levn "~0.3.0" 3058 | prelude-ls "~1.1.2" 3059 | type-check "~0.3.2" 3060 | wordwrap "~1.0.0" 3061 | 3062 | os-browserify@^0.3.0: 3063 | version "0.3.0" 3064 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 3065 | 3066 | os-homedir@^1.0.0: 3067 | version "1.0.2" 3068 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3069 | 3070 | os-locale@^1.4.0: 3071 | version "1.4.0" 3072 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3073 | dependencies: 3074 | lcid "^1.0.0" 3075 | 3076 | os-locale@^2.0.0: 3077 | version "2.1.0" 3078 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3079 | dependencies: 3080 | execa "^0.7.0" 3081 | lcid "^1.0.0" 3082 | mem "^1.1.0" 3083 | 3084 | os-shim@^0.1.2: 3085 | version "0.1.3" 3086 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3087 | 3088 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3089 | version "1.0.2" 3090 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3091 | 3092 | osenv@^0.1.4: 3093 | version "0.1.4" 3094 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3095 | dependencies: 3096 | os-homedir "^1.0.0" 3097 | os-tmpdir "^1.0.0" 3098 | 3099 | p-finally@^1.0.0: 3100 | version "1.0.0" 3101 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3102 | 3103 | p-limit@^1.1.0: 3104 | version "1.2.0" 3105 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 3106 | dependencies: 3107 | p-try "^1.0.0" 3108 | 3109 | p-locate@^2.0.0: 3110 | version "2.0.0" 3111 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3112 | dependencies: 3113 | p-limit "^1.1.0" 3114 | 3115 | p-try@^1.0.0: 3116 | version "1.0.0" 3117 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3118 | 3119 | package-json@^4.0.0: 3120 | version "4.0.1" 3121 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 3122 | dependencies: 3123 | got "^6.7.1" 3124 | registry-auth-token "^3.0.1" 3125 | registry-url "^3.0.3" 3126 | semver "^5.1.0" 3127 | 3128 | pako@~1.0.2, pako@~1.0.5: 3129 | version "1.0.6" 3130 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 3131 | 3132 | parse-asn1@^5.0.0: 3133 | version "5.1.0" 3134 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 3135 | dependencies: 3136 | asn1.js "^4.0.0" 3137 | browserify-aes "^1.0.0" 3138 | create-hash "^1.1.0" 3139 | evp_bytestokey "^1.0.0" 3140 | pbkdf2 "^3.0.3" 3141 | 3142 | parse-entities@^1.0.2: 3143 | version "1.1.1" 3144 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.1.tgz#8112d88471319f27abae4d64964b122fe4e1b890" 3145 | dependencies: 3146 | character-entities "^1.0.0" 3147 | character-entities-legacy "^1.0.0" 3148 | character-reference-invalid "^1.0.0" 3149 | is-alphanumerical "^1.0.0" 3150 | is-decimal "^1.0.0" 3151 | is-hexadecimal "^1.0.0" 3152 | 3153 | parse-glob@^3.0.4: 3154 | version "3.0.4" 3155 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3156 | dependencies: 3157 | glob-base "^0.3.0" 3158 | is-dotfile "^1.0.0" 3159 | is-extglob "^1.0.0" 3160 | is-glob "^2.0.0" 3161 | 3162 | parse-json@4.0.0: 3163 | version "4.0.0" 3164 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 3165 | dependencies: 3166 | error-ex "^1.3.1" 3167 | json-parse-better-errors "^1.0.1" 3168 | 3169 | parse-json@^2.2.0: 3170 | version "2.2.0" 3171 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3172 | dependencies: 3173 | error-ex "^1.2.0" 3174 | 3175 | parse5@^3.0.1: 3176 | version "3.0.3" 3177 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 3178 | dependencies: 3179 | "@types/node" "*" 3180 | 3181 | path-browserify@0.0.0: 3182 | version "0.0.0" 3183 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3184 | 3185 | path-exists@^2.0.0: 3186 | version "2.1.0" 3187 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3188 | dependencies: 3189 | pinkie-promise "^2.0.0" 3190 | 3191 | path-exists@^3.0.0: 3192 | version "3.0.0" 3193 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3194 | 3195 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3196 | version "1.0.1" 3197 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3198 | 3199 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3200 | version "1.0.2" 3201 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3202 | 3203 | path-key@^2.0.0: 3204 | version "2.0.1" 3205 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3206 | 3207 | path-parse@^1.0.5: 3208 | version "1.0.5" 3209 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3210 | 3211 | path-type@^1.0.0: 3212 | version "1.1.0" 3213 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3214 | dependencies: 3215 | graceful-fs "^4.1.2" 3216 | pify "^2.0.0" 3217 | pinkie-promise "^2.0.0" 3218 | 3219 | path-type@^2.0.0: 3220 | version "2.0.0" 3221 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3222 | dependencies: 3223 | pify "^2.0.0" 3224 | 3225 | pbkdf2@^3.0.3: 3226 | version "3.0.14" 3227 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 3228 | dependencies: 3229 | create-hash "^1.1.2" 3230 | create-hmac "^1.1.4" 3231 | ripemd160 "^2.0.1" 3232 | safe-buffer "^5.0.1" 3233 | sha.js "^2.4.8" 3234 | 3235 | pend@~1.2.0: 3236 | version "1.2.0" 3237 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 3238 | 3239 | performance-now@^0.2.0: 3240 | version "0.2.0" 3241 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3242 | 3243 | performance-now@^2.1.0: 3244 | version "2.1.0" 3245 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3246 | 3247 | pify@^2.0.0: 3248 | version "2.3.0" 3249 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3250 | 3251 | pify@^3.0.0: 3252 | version "3.0.0" 3253 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3254 | 3255 | pinkie-promise@^2.0.0: 3256 | version "2.0.1" 3257 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3258 | dependencies: 3259 | pinkie "^2.0.0" 3260 | 3261 | pinkie@^2.0.0: 3262 | version "2.0.4" 3263 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3264 | 3265 | pino@4.10.3: 3266 | version "4.10.3" 3267 | resolved "https://registry.yarnpkg.com/pino/-/pino-4.10.3.tgz#d46030524f2294fe43a2e2247ce1a7ef028c46bc" 3268 | dependencies: 3269 | chalk "^2.3.0" 3270 | fast-json-parse "^1.0.3" 3271 | fast-safe-stringify "^1.2.1" 3272 | flatstr "^1.0.5" 3273 | pump "^2.0.0" 3274 | quick-format-unescaped "^1.1.1" 3275 | split2 "^2.2.0" 3276 | 3277 | pino@^4.6.0: 3278 | version "4.10.4" 3279 | resolved "https://registry.yarnpkg.com/pino/-/pino-4.10.4.tgz#71c2e5f61b3e547c6f31a185dde4a01272372c15" 3280 | dependencies: 3281 | chalk "^2.3.0" 3282 | fast-json-parse "^1.0.3" 3283 | fast-safe-stringify "^1.2.3" 3284 | flatstr "^1.0.5" 3285 | pump "^2.0.1" 3286 | quick-format-unescaped "^1.1.2" 3287 | split2 "^2.2.0" 3288 | 3289 | pluralize@^1.2.1: 3290 | version "1.2.1" 3291 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3292 | 3293 | pluralize@^7.0.0: 3294 | version "7.0.0" 3295 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3296 | 3297 | po2json@0.4.5: 3298 | version "0.4.5" 3299 | resolved "https://registry.yarnpkg.com/po2json/-/po2json-0.4.5.tgz#47bb2952da32d58a1be2f256a598eebc0b745118" 3300 | dependencies: 3301 | gettext-parser "1.1.0" 3302 | nomnom "1.8.1" 3303 | 3304 | postcss@6.0.14: 3305 | version "6.0.14" 3306 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.14.tgz#5534c72114739e75d0afcf017db853099f562885" 3307 | dependencies: 3308 | chalk "^2.3.0" 3309 | source-map "^0.6.1" 3310 | supports-color "^4.4.0" 3311 | 3312 | prelude-ls@~1.1.2: 3313 | version "1.1.2" 3314 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3315 | 3316 | prepend-http@^1.0.1: 3317 | version "1.0.4" 3318 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3319 | 3320 | preserve@^0.2.0: 3321 | version "0.2.0" 3322 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3323 | 3324 | private@^0.1.7: 3325 | version "0.1.8" 3326 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3327 | 3328 | probe-image-size@3.2.0: 3329 | version "3.2.0" 3330 | resolved "https://registry.yarnpkg.com/probe-image-size/-/probe-image-size-3.2.0.tgz#0b8d7cd6e8dce8356bec732a1d9e793bcc8aed44" 3331 | dependencies: 3332 | any-promise "^1.3.0" 3333 | deepmerge "^1.3.0" 3334 | got "^6.7.1" 3335 | inherits "^2.0.3" 3336 | next-tick "^1.0.0" 3337 | stream-parser "~0.3.1" 3338 | 3339 | process-nextick-args@~1.0.6: 3340 | version "1.0.7" 3341 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3342 | 3343 | process@^0.11.10: 3344 | version "0.11.10" 3345 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3346 | 3347 | progress@^1.1.8: 3348 | version "1.1.8" 3349 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3350 | 3351 | progress@^2.0.0: 3352 | version "2.0.0" 3353 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3354 | 3355 | prr@~1.0.1: 3356 | version "1.0.1" 3357 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 3358 | 3359 | pseudomap@^1.0.2: 3360 | version "1.0.2" 3361 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3362 | 3363 | public-encrypt@^4.0.0: 3364 | version "4.0.0" 3365 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3366 | dependencies: 3367 | bn.js "^4.1.0" 3368 | browserify-rsa "^4.0.0" 3369 | create-hash "^1.1.0" 3370 | parse-asn1 "^5.0.0" 3371 | randombytes "^2.0.1" 3372 | 3373 | pump@^2.0.0, pump@^2.0.1: 3374 | version "2.0.1" 3375 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 3376 | dependencies: 3377 | end-of-stream "^1.1.0" 3378 | once "^1.3.1" 3379 | 3380 | punycode@1.3.2: 3381 | version "1.3.2" 3382 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3383 | 3384 | punycode@^1.2.4, punycode@^1.4.1: 3385 | version "1.4.1" 3386 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3387 | 3388 | punycode@^2.1.0: 3389 | version "2.1.0" 3390 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 3391 | 3392 | qs@~6.3.0: 3393 | version "6.3.2" 3394 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3395 | 3396 | qs@~6.4.0: 3397 | version "6.4.0" 3398 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3399 | 3400 | qs@~6.5.1: 3401 | version "6.5.1" 3402 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3403 | 3404 | querystring-es3@^0.2.0: 3405 | version "0.2.1" 3406 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3407 | 3408 | querystring@0.2.0: 3409 | version "0.2.0" 3410 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3411 | 3412 | quick-format-unescaped@^1.1.1, quick-format-unescaped@^1.1.2: 3413 | version "1.1.2" 3414 | resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz#0ca581de3174becef25ac3c2e8956342381db698" 3415 | dependencies: 3416 | fast-safe-stringify "^1.0.8" 3417 | 3418 | randomatic@^1.1.3: 3419 | version "1.1.7" 3420 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3421 | dependencies: 3422 | is-number "^3.0.0" 3423 | kind-of "^4.0.0" 3424 | 3425 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3426 | version "2.0.6" 3427 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3428 | dependencies: 3429 | safe-buffer "^5.1.0" 3430 | 3431 | randomfill@^1.0.3: 3432 | version "1.0.3" 3433 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 3434 | dependencies: 3435 | randombytes "^2.0.5" 3436 | safe-buffer "^5.1.0" 3437 | 3438 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3439 | version "1.2.5" 3440 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 3441 | dependencies: 3442 | deep-extend "~0.4.0" 3443 | ini "~1.3.0" 3444 | minimist "^1.2.0" 3445 | strip-json-comments "~2.0.1" 3446 | 3447 | read-pkg-up@^1.0.1: 3448 | version "1.0.1" 3449 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3450 | dependencies: 3451 | find-up "^1.0.0" 3452 | read-pkg "^1.0.0" 3453 | 3454 | read-pkg-up@^2.0.0: 3455 | version "2.0.0" 3456 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3457 | dependencies: 3458 | find-up "^2.0.0" 3459 | read-pkg "^2.0.0" 3460 | 3461 | read-pkg@^1.0.0: 3462 | version "1.1.0" 3463 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3464 | dependencies: 3465 | load-json-file "^1.0.0" 3466 | normalize-package-data "^2.3.2" 3467 | path-type "^1.0.0" 3468 | 3469 | read-pkg@^2.0.0: 3470 | version "2.0.0" 3471 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3472 | dependencies: 3473 | load-json-file "^2.0.0" 3474 | normalize-package-data "^2.3.2" 3475 | path-type "^2.0.0" 3476 | 3477 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3: 3478 | version "2.3.3" 3479 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3480 | dependencies: 3481 | core-util-is "~1.0.0" 3482 | inherits "~2.0.3" 3483 | isarray "~1.0.0" 3484 | process-nextick-args "~1.0.6" 3485 | safe-buffer "~5.1.1" 3486 | string_decoder "~1.0.3" 3487 | util-deprecate "~1.0.1" 3488 | 3489 | readdirp@^2.0.0: 3490 | version "2.1.0" 3491 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3492 | dependencies: 3493 | graceful-fs "^4.1.2" 3494 | minimatch "^3.0.2" 3495 | readable-stream "^2.0.2" 3496 | set-immediate-shim "^1.0.1" 3497 | 3498 | readline2@^1.0.1: 3499 | version "1.0.1" 3500 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3501 | dependencies: 3502 | code-point-at "^1.0.0" 3503 | is-fullwidth-code-point "^1.0.0" 3504 | mute-stream "0.0.5" 3505 | 3506 | rechoir@^0.6.2: 3507 | version "0.6.2" 3508 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3509 | dependencies: 3510 | resolve "^1.1.6" 3511 | 3512 | regenerator-runtime@0.11.1, regenerator-runtime@^0.11.0: 3513 | version "0.11.1" 3514 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3515 | 3516 | regenerator-runtime@^0.10.5: 3517 | version "0.10.5" 3518 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3519 | 3520 | regenerator-runtime@^0.9.5: 3521 | version "0.9.6" 3522 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 3523 | 3524 | regex-cache@^0.4.2: 3525 | version "0.4.4" 3526 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3527 | dependencies: 3528 | is-equal-shallow "^0.1.3" 3529 | 3530 | registry-auth-token@^3.0.1: 3531 | version "3.3.2" 3532 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 3533 | dependencies: 3534 | rc "^1.1.6" 3535 | safe-buffer "^5.0.1" 3536 | 3537 | registry-url@^3.0.3: 3538 | version "3.1.0" 3539 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3540 | dependencies: 3541 | rc "^1.0.1" 3542 | 3543 | relaxed-json@1.0.1: 3544 | version "1.0.1" 3545 | resolved "https://registry.yarnpkg.com/relaxed-json/-/relaxed-json-1.0.1.tgz#7c8d4aa2f095704cd020e32e8099bcae103f0bd4" 3546 | dependencies: 3547 | chalk "^1.0.0" 3548 | commander "^2.6.0" 3549 | 3550 | remark-parse@^1.1.0: 3551 | version "1.1.0" 3552 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-1.1.0.tgz#c3ca10f9a8da04615c28f09aa4e304510526ec21" 3553 | dependencies: 3554 | collapse-white-space "^1.0.0" 3555 | extend "^3.0.0" 3556 | parse-entities "^1.0.2" 3557 | repeat-string "^1.5.4" 3558 | trim "0.0.1" 3559 | trim-trailing-lines "^1.0.0" 3560 | unherit "^1.0.4" 3561 | unist-util-remove-position "^1.0.0" 3562 | vfile-location "^2.0.0" 3563 | 3564 | remark-stringify@^1.1.0: 3565 | version "1.1.0" 3566 | resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-1.1.0.tgz#a7105e25b9ee2bf9a49b75d2c423f11b06ae2092" 3567 | dependencies: 3568 | ccount "^1.0.0" 3569 | extend "^3.0.0" 3570 | longest-streak "^1.0.0" 3571 | markdown-table "^0.4.0" 3572 | parse-entities "^1.0.2" 3573 | repeat-string "^1.5.4" 3574 | stringify-entities "^1.0.1" 3575 | unherit "^1.0.4" 3576 | 3577 | remark@^5.0.1: 3578 | version "5.1.0" 3579 | resolved "https://registry.yarnpkg.com/remark/-/remark-5.1.0.tgz#cb463bd3dbcb4b99794935eee1cf71d7a8e3068c" 3580 | dependencies: 3581 | remark-parse "^1.1.0" 3582 | remark-stringify "^1.1.0" 3583 | unified "^4.1.1" 3584 | 3585 | remove-trailing-separator@^1.0.1: 3586 | version "1.1.0" 3587 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3588 | 3589 | repeat-element@^1.1.2: 3590 | version "1.1.2" 3591 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3592 | 3593 | repeat-string@^1.5.2, repeat-string@^1.5.4: 3594 | version "1.6.1" 3595 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3596 | 3597 | repeating@^2.0.0: 3598 | version "2.0.1" 3599 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3600 | dependencies: 3601 | is-finite "^1.0.0" 3602 | 3603 | request@2.79.0: 3604 | version "2.79.0" 3605 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3606 | dependencies: 3607 | aws-sign2 "~0.6.0" 3608 | aws4 "^1.2.1" 3609 | caseless "~0.11.0" 3610 | combined-stream "~1.0.5" 3611 | extend "~3.0.0" 3612 | forever-agent "~0.6.1" 3613 | form-data "~2.1.1" 3614 | har-validator "~2.0.6" 3615 | hawk "~3.1.3" 3616 | http-signature "~1.1.0" 3617 | is-typedarray "~1.0.0" 3618 | isstream "~0.1.2" 3619 | json-stringify-safe "~5.0.1" 3620 | mime-types "~2.1.7" 3621 | oauth-sign "~0.8.1" 3622 | qs "~6.3.0" 3623 | stringstream "~0.0.4" 3624 | tough-cookie "~2.3.0" 3625 | tunnel-agent "~0.4.1" 3626 | uuid "^3.0.0" 3627 | 3628 | request@2.81.0: 3629 | version "2.81.0" 3630 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3631 | dependencies: 3632 | aws-sign2 "~0.6.0" 3633 | aws4 "^1.2.1" 3634 | caseless "~0.12.0" 3635 | combined-stream "~1.0.5" 3636 | extend "~3.0.0" 3637 | forever-agent "~0.6.1" 3638 | form-data "~2.1.1" 3639 | har-validator "~4.2.1" 3640 | hawk "~3.1.3" 3641 | http-signature "~1.1.0" 3642 | is-typedarray "~1.0.0" 3643 | isstream "~0.1.2" 3644 | json-stringify-safe "~5.0.1" 3645 | mime-types "~2.1.7" 3646 | oauth-sign "~0.8.1" 3647 | performance-now "^0.2.0" 3648 | qs "~6.4.0" 3649 | safe-buffer "^5.0.1" 3650 | stringstream "~0.0.4" 3651 | tough-cookie "~2.3.0" 3652 | tunnel-agent "^0.6.0" 3653 | uuid "^3.0.0" 3654 | 3655 | request@^2.81.0: 3656 | version "2.83.0" 3657 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 3658 | dependencies: 3659 | aws-sign2 "~0.7.0" 3660 | aws4 "^1.6.0" 3661 | caseless "~0.12.0" 3662 | combined-stream "~1.0.5" 3663 | extend "~3.0.1" 3664 | forever-agent "~0.6.1" 3665 | form-data "~2.3.1" 3666 | har-validator "~5.0.3" 3667 | hawk "~6.0.2" 3668 | http-signature "~1.2.0" 3669 | is-typedarray "~1.0.0" 3670 | isstream "~0.1.2" 3671 | json-stringify-safe "~5.0.1" 3672 | mime-types "~2.1.17" 3673 | oauth-sign "~0.8.2" 3674 | performance-now "^2.1.0" 3675 | qs "~6.5.1" 3676 | safe-buffer "^5.1.1" 3677 | stringstream "~0.0.5" 3678 | tough-cookie "~2.3.3" 3679 | tunnel-agent "^0.6.0" 3680 | uuid "^3.1.0" 3681 | 3682 | require-directory@^2.1.1: 3683 | version "2.1.1" 3684 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3685 | 3686 | require-main-filename@^1.0.1: 3687 | version "1.0.1" 3688 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3689 | 3690 | require-uncached@1.0.3, require-uncached@^1.0.2, require-uncached@^1.0.3: 3691 | version "1.0.3" 3692 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3693 | dependencies: 3694 | caller-path "^0.1.0" 3695 | resolve-from "^1.0.0" 3696 | 3697 | resolve-from@^1.0.0: 3698 | version "1.0.1" 3699 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3700 | 3701 | resolve@^1.1.6: 3702 | version "1.5.0" 3703 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3704 | dependencies: 3705 | path-parse "^1.0.5" 3706 | 3707 | restore-cursor@^1.0.1: 3708 | version "1.0.1" 3709 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3710 | dependencies: 3711 | exit-hook "^1.0.0" 3712 | onetime "^1.0.0" 3713 | 3714 | restore-cursor@^2.0.0: 3715 | version "2.0.0" 3716 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3717 | dependencies: 3718 | onetime "^2.0.0" 3719 | signal-exit "^3.0.2" 3720 | 3721 | right-align@^0.1.1: 3722 | version "0.1.3" 3723 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3724 | dependencies: 3725 | align-text "^0.1.1" 3726 | 3727 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3728 | version "2.6.2" 3729 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3730 | dependencies: 3731 | glob "^7.0.5" 3732 | 3733 | rimraf@~2.4.0: 3734 | version "2.4.5" 3735 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da" 3736 | dependencies: 3737 | glob "^6.0.1" 3738 | 3739 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3740 | version "2.0.1" 3741 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3742 | dependencies: 3743 | hash-base "^2.0.0" 3744 | inherits "^2.0.1" 3745 | 3746 | run-async@^0.1.0: 3747 | version "0.1.0" 3748 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3749 | dependencies: 3750 | once "^1.3.0" 3751 | 3752 | run-async@^2.2.0: 3753 | version "2.3.0" 3754 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3755 | dependencies: 3756 | is-promise "^2.1.0" 3757 | 3758 | rx-lite-aggregates@^4.0.8: 3759 | version "4.0.8" 3760 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3761 | dependencies: 3762 | rx-lite "*" 3763 | 3764 | rx-lite@*, rx-lite@^4.0.8: 3765 | version "4.0.8" 3766 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3767 | 3768 | rx-lite@^3.1.2: 3769 | version "3.1.2" 3770 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3771 | 3772 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3773 | version "5.1.1" 3774 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3775 | 3776 | safe-json-stringify@~1: 3777 | version "1.0.4" 3778 | resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.0.4.tgz#81a098f447e4bbc3ff3312a243521bc060ef5911" 3779 | 3780 | sax@>=0.6.0: 3781 | version "1.2.4" 3782 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3783 | 3784 | schema-utils@^0.3.0: 3785 | version "0.3.0" 3786 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3787 | dependencies: 3788 | ajv "^5.0.0" 3789 | 3790 | semver-diff@^2.0.0: 3791 | version "2.1.0" 3792 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3793 | dependencies: 3794 | semver "^5.0.3" 3795 | 3796 | "semver@2 || 3 || 4 || 5", semver@5.5.0, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 3797 | version "5.5.0" 3798 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3799 | 3800 | semver@5.4.1: 3801 | version "5.4.1" 3802 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3803 | 3804 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3805 | version "2.0.0" 3806 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3807 | 3808 | set-immediate-shim@^1.0.1: 3809 | version "1.0.1" 3810 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3811 | 3812 | setimmediate@^1.0.4: 3813 | version "1.0.5" 3814 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3815 | 3816 | sha.js@^2.4.0, sha.js@^2.4.4, sha.js@^2.4.8: 3817 | version "2.4.10" 3818 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b" 3819 | dependencies: 3820 | inherits "^2.0.1" 3821 | safe-buffer "^5.0.1" 3822 | 3823 | shebang-command@^1.2.0: 3824 | version "1.2.0" 3825 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3826 | dependencies: 3827 | shebang-regex "^1.0.0" 3828 | 3829 | shebang-regex@^1.0.0: 3830 | version "1.0.0" 3831 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3832 | 3833 | shell-quote@1.6.1: 3834 | version "1.6.1" 3835 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3836 | dependencies: 3837 | array-filter "~0.0.0" 3838 | array-map "~0.0.0" 3839 | array-reduce "~0.0.0" 3840 | jsonify "~0.0.0" 3841 | 3842 | shelljs@0.7.7: 3843 | version "0.7.7" 3844 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3845 | dependencies: 3846 | glob "^7.0.0" 3847 | interpret "^1.0.0" 3848 | rechoir "^0.6.2" 3849 | 3850 | shelljs@0.8.1: 3851 | version "0.8.1" 3852 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.1.tgz#729e038c413a2254c4078b95ed46e0397154a9f1" 3853 | dependencies: 3854 | glob "^7.0.0" 3855 | interpret "^1.0.0" 3856 | rechoir "^0.6.2" 3857 | 3858 | shelljs@^0.7.5: 3859 | version "0.7.8" 3860 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 3861 | dependencies: 3862 | glob "^7.0.0" 3863 | interpret "^1.0.0" 3864 | rechoir "^0.6.2" 3865 | 3866 | shellwords@^0.1.1: 3867 | version "0.1.1" 3868 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3869 | 3870 | sign-addon@0.2.2: 3871 | version "0.2.2" 3872 | resolved "https://registry.yarnpkg.com/sign-addon/-/sign-addon-0.2.2.tgz#8905708d099f7bc61a3e3c1470b30b59fa3207cd" 3873 | dependencies: 3874 | babel-polyfill "6.16.0" 3875 | deepcopy "0.6.3" 3876 | es6-error "4.0.0" 3877 | es6-promisify "5.0.0" 3878 | jsonwebtoken "7.1.9" 3879 | mz "2.5.0" 3880 | request "2.79.0" 3881 | source-map-support "0.4.6" 3882 | stream-to-promise "2.2.0" 3883 | when "3.7.7" 3884 | 3885 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3886 | version "3.0.2" 3887 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3888 | 3889 | slash@^1.0.0: 3890 | version "1.0.0" 3891 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3892 | 3893 | slice-ansi@0.0.4: 3894 | version "0.0.4" 3895 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3896 | 3897 | slice-ansi@1.0.0: 3898 | version "1.0.0" 3899 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3900 | dependencies: 3901 | is-fullwidth-code-point "^2.0.0" 3902 | 3903 | sntp@1.x.x: 3904 | version "1.0.9" 3905 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3906 | dependencies: 3907 | hoek "2.x.x" 3908 | 3909 | sntp@2.x.x: 3910 | version "2.1.0" 3911 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3912 | dependencies: 3913 | hoek "4.x.x" 3914 | 3915 | source-list-map@^2.0.0: 3916 | version "2.0.0" 3917 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3918 | 3919 | source-map-support@0.4.6: 3920 | version "0.4.6" 3921 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 3922 | dependencies: 3923 | source-map "^0.5.3" 3924 | 3925 | source-map-support@0.5.0: 3926 | version "0.5.0" 3927 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 3928 | dependencies: 3929 | source-map "^0.6.0" 3930 | 3931 | source-map-support@0.5.1: 3932 | version "0.5.1" 3933 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.1.tgz#72291517d1fd0cb9542cee6c27520884b5da1a07" 3934 | dependencies: 3935 | source-map "^0.6.0" 3936 | 3937 | source-map-support@0.5.3: 3938 | version "0.5.3" 3939 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76" 3940 | dependencies: 3941 | source-map "^0.6.0" 3942 | 3943 | source-map-support@^0.4.15: 3944 | version "0.4.18" 3945 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3946 | dependencies: 3947 | source-map "^0.5.6" 3948 | 3949 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3950 | version "0.5.7" 3951 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3952 | 3953 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3954 | version "0.6.1" 3955 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3956 | 3957 | spawn-sync@1.0.15: 3958 | version "1.0.15" 3959 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 3960 | dependencies: 3961 | concat-stream "^1.4.7" 3962 | os-shim "^0.1.2" 3963 | 3964 | spdx-correct@~1.0.0: 3965 | version "1.0.2" 3966 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3967 | dependencies: 3968 | spdx-license-ids "^1.0.2" 3969 | 3970 | spdx-expression-parse@~1.0.0: 3971 | version "1.0.4" 3972 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3973 | 3974 | spdx-license-ids@^1.0.2: 3975 | version "1.2.2" 3976 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3977 | 3978 | split2@^2.2.0: 3979 | version "2.2.0" 3980 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 3981 | dependencies: 3982 | through2 "^2.0.2" 3983 | 3984 | split@~0.3.3: 3985 | version "0.3.3" 3986 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3987 | dependencies: 3988 | through "2" 3989 | 3990 | sprintf-js@~1.0.2: 3991 | version "1.0.3" 3992 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3993 | 3994 | sshpk@^1.7.0: 3995 | version "1.13.1" 3996 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3997 | dependencies: 3998 | asn1 "~0.2.3" 3999 | assert-plus "^1.0.0" 4000 | dashdash "^1.12.0" 4001 | getpass "^0.1.1" 4002 | optionalDependencies: 4003 | bcrypt-pbkdf "^1.0.0" 4004 | ecc-jsbn "~0.1.1" 4005 | jsbn "~0.1.0" 4006 | tweetnacl "~0.14.0" 4007 | 4008 | stream-browserify@^2.0.1: 4009 | version "2.0.1" 4010 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 4011 | dependencies: 4012 | inherits "~2.0.1" 4013 | readable-stream "^2.0.2" 4014 | 4015 | stream-http@^2.7.2: 4016 | version "2.8.0" 4017 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10" 4018 | dependencies: 4019 | builtin-status-codes "^3.0.0" 4020 | inherits "^2.0.1" 4021 | readable-stream "^2.3.3" 4022 | to-arraybuffer "^1.0.0" 4023 | xtend "^4.0.0" 4024 | 4025 | stream-parser@~0.3.1: 4026 | version "0.3.1" 4027 | resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773" 4028 | dependencies: 4029 | debug "2" 4030 | 4031 | stream-to-array@~2.3.0: 4032 | version "2.3.0" 4033 | resolved "https://registry.yarnpkg.com/stream-to-array/-/stream-to-array-2.3.0.tgz#bbf6b39f5f43ec30bc71babcb37557acecf34353" 4034 | dependencies: 4035 | any-promise "^1.1.0" 4036 | 4037 | stream-to-promise@2.2.0: 4038 | version "2.2.0" 4039 | resolved "https://registry.yarnpkg.com/stream-to-promise/-/stream-to-promise-2.2.0.tgz#b1edb2e1c8cb11289d1b503c08d3f2aef51e650f" 4040 | dependencies: 4041 | any-promise "~1.3.0" 4042 | end-of-stream "~1.1.0" 4043 | stream-to-array "~2.3.0" 4044 | 4045 | string-width@^1.0.1, string-width@^1.0.2: 4046 | version "1.0.2" 4047 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4048 | dependencies: 4049 | code-point-at "^1.0.0" 4050 | is-fullwidth-code-point "^1.0.0" 4051 | strip-ansi "^3.0.0" 4052 | 4053 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 4054 | version "2.1.1" 4055 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4056 | dependencies: 4057 | is-fullwidth-code-point "^2.0.0" 4058 | strip-ansi "^4.0.0" 4059 | 4060 | string_decoder@^1.0.0, string_decoder@~1.0.3: 4061 | version "1.0.3" 4062 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4063 | dependencies: 4064 | safe-buffer "~5.1.0" 4065 | 4066 | stringify-entities@^1.0.1: 4067 | version "1.3.1" 4068 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.1.tgz#b150ec2d72ac4c1b5f324b51fb6b28c9cdff058c" 4069 | dependencies: 4070 | character-entities-html4 "^1.0.0" 4071 | character-entities-legacy "^1.0.0" 4072 | is-alphanumerical "^1.0.0" 4073 | is-hexadecimal "^1.0.0" 4074 | 4075 | stringstream@~0.0.4, stringstream@~0.0.5: 4076 | version "0.0.5" 4077 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4078 | 4079 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4080 | version "3.0.1" 4081 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4082 | dependencies: 4083 | ansi-regex "^2.0.0" 4084 | 4085 | strip-ansi@^4.0.0: 4086 | version "4.0.0" 4087 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4088 | dependencies: 4089 | ansi-regex "^3.0.0" 4090 | 4091 | strip-ansi@~0.1.0: 4092 | version "0.1.1" 4093 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 4094 | 4095 | strip-bom-buf@^1.0.0: 4096 | version "1.0.0" 4097 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 4098 | dependencies: 4099 | is-utf8 "^0.2.1" 4100 | 4101 | strip-bom-stream@3.0.0: 4102 | version "3.0.0" 4103 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz#956bcc5d84430f69256a90ed823765cd858e159c" 4104 | dependencies: 4105 | first-chunk-stream "^2.0.0" 4106 | strip-bom-buf "^1.0.0" 4107 | 4108 | strip-bom@^2.0.0: 4109 | version "2.0.0" 4110 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4111 | dependencies: 4112 | is-utf8 "^0.2.0" 4113 | 4114 | strip-bom@^3.0.0: 4115 | version "3.0.0" 4116 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4117 | 4118 | strip-eof@^1.0.0: 4119 | version "1.0.0" 4120 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4121 | 4122 | strip-json-comments@~2.0.1: 4123 | version "2.0.1" 4124 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4125 | 4126 | structured-source@^3.0.2: 4127 | version "3.0.2" 4128 | resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" 4129 | dependencies: 4130 | boundary "^1.0.1" 4131 | 4132 | supports-color@^2.0.0: 4133 | version "2.0.0" 4134 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4135 | 4136 | supports-color@^4.0.0, supports-color@^4.2.1, supports-color@^4.4.0: 4137 | version "4.5.0" 4138 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 4139 | dependencies: 4140 | has-flag "^2.0.0" 4141 | 4142 | table@^3.7.8: 4143 | version "3.8.3" 4144 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 4145 | dependencies: 4146 | ajv "^4.7.0" 4147 | ajv-keywords "^1.0.0" 4148 | chalk "^1.1.1" 4149 | lodash "^4.0.0" 4150 | slice-ansi "0.0.4" 4151 | string-width "^2.0.0" 4152 | 4153 | table@^4.0.1: 4154 | version "4.0.2" 4155 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 4156 | dependencies: 4157 | ajv "^5.2.3" 4158 | ajv-keywords "^2.1.0" 4159 | chalk "^2.1.0" 4160 | lodash "^4.17.4" 4161 | slice-ansi "1.0.0" 4162 | string-width "^2.1.1" 4163 | 4164 | tapable@^0.2.7: 4165 | version "0.2.8" 4166 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 4167 | 4168 | tar-pack@^3.4.0: 4169 | version "3.4.1" 4170 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 4171 | dependencies: 4172 | debug "^2.2.0" 4173 | fstream "^1.0.10" 4174 | fstream-ignore "^1.0.5" 4175 | once "^1.3.3" 4176 | readable-stream "^2.1.4" 4177 | rimraf "^2.5.1" 4178 | tar "^2.2.1" 4179 | uid-number "^0.0.6" 4180 | 4181 | tar-stream@^1.5.0: 4182 | version "1.5.5" 4183 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.5.tgz#5cad84779f45c83b1f2508d96b09d88c7218af55" 4184 | dependencies: 4185 | bl "^1.0.0" 4186 | end-of-stream "^1.0.0" 4187 | readable-stream "^2.0.0" 4188 | xtend "^4.0.0" 4189 | 4190 | tar@^2.2.1: 4191 | version "2.2.1" 4192 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4193 | dependencies: 4194 | block-stream "*" 4195 | fstream "^1.0.2" 4196 | inherits "2" 4197 | 4198 | term-size@^1.2.0: 4199 | version "1.2.0" 4200 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 4201 | dependencies: 4202 | execa "^0.7.0" 4203 | 4204 | text-table@~0.2.0: 4205 | version "0.2.0" 4206 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4207 | 4208 | thenify-all@^1.0.0: 4209 | version "1.6.0" 4210 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 4211 | dependencies: 4212 | thenify ">= 3.1.0 < 4" 4213 | 4214 | "thenify@>= 3.1.0 < 4": 4215 | version "3.3.0" 4216 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 4217 | dependencies: 4218 | any-promise "^1.0.0" 4219 | 4220 | through2@^2.0.2: 4221 | version "2.0.3" 4222 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4223 | dependencies: 4224 | readable-stream "^2.1.5" 4225 | xtend "~4.0.1" 4226 | 4227 | through@2, through@^2.3.6: 4228 | version "2.3.8" 4229 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4230 | 4231 | timed-out@^4.0.0: 4232 | version "4.0.1" 4233 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 4234 | 4235 | timers-browserify@^2.0.4: 4236 | version "2.0.6" 4237 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.6.tgz#241e76927d9ca05f4d959819022f5b3664b64bae" 4238 | dependencies: 4239 | setimmediate "^1.0.4" 4240 | 4241 | tmp@0.0.33, tmp@^0.0.33: 4242 | version "0.0.33" 4243 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4244 | dependencies: 4245 | os-tmpdir "~1.0.2" 4246 | 4247 | to-arraybuffer@^1.0.0: 4248 | version "1.0.1" 4249 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4250 | 4251 | to-fast-properties@^1.0.3: 4252 | version "1.0.3" 4253 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4254 | 4255 | topo@1.x.x: 4256 | version "1.1.0" 4257 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 4258 | dependencies: 4259 | hoek "2.x.x" 4260 | 4261 | tosource@1.0.0: 4262 | version "1.0.0" 4263 | resolved "https://registry.yarnpkg.com/tosource/-/tosource-1.0.0.tgz#42d88dd116618bcf00d6106dd5446f3427902ff1" 4264 | 4265 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 4266 | version "2.3.3" 4267 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 4268 | dependencies: 4269 | punycode "^1.4.1" 4270 | 4271 | tr46@^1.0.0: 4272 | version "1.0.1" 4273 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 4274 | dependencies: 4275 | punycode "^2.1.0" 4276 | 4277 | traverse@0.4.x: 4278 | version "0.4.6" 4279 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.4.6.tgz#d04b2280e4c792a5815429ef7b8b60c64c9ccc34" 4280 | 4281 | traverse@^0.6.6: 4282 | version "0.6.6" 4283 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 4284 | 4285 | trim-right@^1.0.1: 4286 | version "1.0.1" 4287 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4288 | 4289 | trim-trailing-lines@^1.0.0: 4290 | version "1.1.0" 4291 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz#7aefbb7808df9d669f6da2e438cac8c46ada7684" 4292 | 4293 | trim@0.0.1: 4294 | version "0.0.1" 4295 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 4296 | 4297 | trough@^1.0.0: 4298 | version "1.0.1" 4299 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.1.tgz#a9fd8b0394b0ae8fff82e0633a0a36ccad5b5f86" 4300 | 4301 | tty-browserify@0.0.0: 4302 | version "0.0.0" 4303 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4304 | 4305 | tunnel-agent@^0.6.0: 4306 | version "0.6.0" 4307 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4308 | dependencies: 4309 | safe-buffer "^5.0.1" 4310 | 4311 | tunnel-agent@~0.4.1: 4312 | version "0.4.3" 4313 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4314 | 4315 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4316 | version "0.14.5" 4317 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4318 | 4319 | type-check@~0.3.2: 4320 | version "0.3.2" 4321 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4322 | dependencies: 4323 | prelude-ls "~1.1.2" 4324 | 4325 | typedarray@^0.0.6: 4326 | version "0.0.6" 4327 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4328 | 4329 | uglify-js@^2.8.29: 4330 | version "2.8.29" 4331 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4332 | dependencies: 4333 | source-map "~0.5.1" 4334 | yargs "~3.10.0" 4335 | optionalDependencies: 4336 | uglify-to-browserify "~1.0.0" 4337 | 4338 | uglify-to-browserify@~1.0.0: 4339 | version "1.0.2" 4340 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4341 | 4342 | uglifyjs-webpack-plugin@^0.4.6: 4343 | version "0.4.6" 4344 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 4345 | dependencies: 4346 | source-map "^0.5.6" 4347 | uglify-js "^2.8.29" 4348 | webpack-sources "^1.0.1" 4349 | 4350 | uid-number@^0.0.6: 4351 | version "0.0.6" 4352 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4353 | 4354 | underscore@~1.6.0: 4355 | version "1.6.0" 4356 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" 4357 | 4358 | underscore@~1.8.3: 4359 | version "1.8.3" 4360 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 4361 | 4362 | unherit@^1.0.4: 4363 | version "1.1.0" 4364 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" 4365 | dependencies: 4366 | inherits "^2.0.1" 4367 | xtend "^4.0.1" 4368 | 4369 | unified@^4.1.1: 4370 | version "4.2.1" 4371 | resolved "https://registry.yarnpkg.com/unified/-/unified-4.2.1.tgz#76ff43aa8da430f6e7e4a55c84ebac2ad2cfcd2e" 4372 | dependencies: 4373 | bail "^1.0.0" 4374 | extend "^3.0.0" 4375 | has "^1.0.1" 4376 | once "^1.3.3" 4377 | trough "^1.0.0" 4378 | vfile "^1.0.0" 4379 | 4380 | unique-string@^1.0.0: 4381 | version "1.0.0" 4382 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 4383 | dependencies: 4384 | crypto-random-string "^1.0.0" 4385 | 4386 | unist-util-is@^2.1.1: 4387 | version "2.1.1" 4388 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.1.1.tgz#0c312629e3f960c66e931e812d3d80e77010947b" 4389 | 4390 | unist-util-remove-position@^1.0.0: 4391 | version "1.1.1" 4392 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.1.tgz#5a85c1555fc1ba0c101b86707d15e50fa4c871bb" 4393 | dependencies: 4394 | unist-util-visit "^1.1.0" 4395 | 4396 | unist-util-visit@^1.1.0: 4397 | version "1.3.0" 4398 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.3.0.tgz#41ca7c82981fd1ce6c762aac397fc24e35711444" 4399 | dependencies: 4400 | unist-util-is "^2.1.1" 4401 | 4402 | universalify@^0.1.0: 4403 | version "0.1.1" 4404 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 4405 | 4406 | unzip-response@^2.0.1: 4407 | version "2.0.1" 4408 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 4409 | 4410 | upath@1.0.2: 4411 | version "1.0.2" 4412 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.2.tgz#80aaae5395abc5fd402933ae2f58694f0860204c" 4413 | dependencies: 4414 | lodash.endswith "^4.2.1" 4415 | lodash.isfunction "^3.0.8" 4416 | lodash.isstring "^4.0.1" 4417 | lodash.startswith "^4.2.1" 4418 | 4419 | update-notifier@2.3.0: 4420 | version "2.3.0" 4421 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 4422 | dependencies: 4423 | boxen "^1.2.1" 4424 | chalk "^2.0.1" 4425 | configstore "^3.0.0" 4426 | import-lazy "^2.1.0" 4427 | is-installed-globally "^0.1.0" 4428 | is-npm "^1.0.0" 4429 | latest-version "^3.0.0" 4430 | semver-diff "^2.0.0" 4431 | xdg-basedir "^3.0.0" 4432 | 4433 | update-section@^0.3.0: 4434 | version "0.3.3" 4435 | resolved "https://registry.yarnpkg.com/update-section/-/update-section-0.3.3.tgz#458f17820d37820dc60e20b86d94391b00123158" 4436 | 4437 | url-parse-lax@^1.0.0: 4438 | version "1.0.0" 4439 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 4440 | dependencies: 4441 | prepend-http "^1.0.1" 4442 | 4443 | url@^0.11.0: 4444 | version "0.11.0" 4445 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4446 | dependencies: 4447 | punycode "1.3.2" 4448 | querystring "0.2.0" 4449 | 4450 | user-home@^2.0.0: 4451 | version "2.0.0" 4452 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4453 | dependencies: 4454 | os-homedir "^1.0.0" 4455 | 4456 | util-deprecate@~1.0.1: 4457 | version "1.0.2" 4458 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4459 | 4460 | util@0.10.3, util@^0.10.3: 4461 | version "0.10.3" 4462 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4463 | dependencies: 4464 | inherits "2.0.1" 4465 | 4466 | uuid@^3.0.0, uuid@^3.1.0: 4467 | version "3.2.1" 4468 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 4469 | 4470 | validate-npm-package-license@^3.0.1: 4471 | version "3.0.1" 4472 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4473 | dependencies: 4474 | spdx-correct "~1.0.0" 4475 | spdx-expression-parse "~1.0.0" 4476 | 4477 | verror@1.10.0: 4478 | version "1.10.0" 4479 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4480 | dependencies: 4481 | assert-plus "^1.0.0" 4482 | core-util-is "1.0.2" 4483 | extsprintf "^1.2.0" 4484 | 4485 | vfile-location@^2.0.0: 4486 | version "2.0.2" 4487 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.2.tgz#d3675c59c877498e492b4756ff65e4af1a752255" 4488 | 4489 | vfile@^1.0.0: 4490 | version "1.4.0" 4491 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7" 4492 | 4493 | vm-browserify@0.0.4: 4494 | version "0.0.4" 4495 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4496 | dependencies: 4497 | indexof "0.0.1" 4498 | 4499 | watchpack@1.4.0, watchpack@^1.4.0: 4500 | version "1.4.0" 4501 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 4502 | dependencies: 4503 | async "^2.1.2" 4504 | chokidar "^1.7.0" 4505 | graceful-fs "^4.1.2" 4506 | 4507 | wcwidth@^1.0.0: 4508 | version "1.0.1" 4509 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 4510 | dependencies: 4511 | defaults "^1.0.3" 4512 | 4513 | web-ext@^2.4.0: 4514 | version "2.4.0" 4515 | resolved "https://registry.yarnpkg.com/web-ext/-/web-ext-2.4.0.tgz#4103e737196eb2a9fe83087752357d1dfe618294" 4516 | dependencies: 4517 | adbkit "2.11.0" 4518 | addons-linter "0.35.0" 4519 | babel-polyfill "6.26.0" 4520 | babel-runtime "6.26.0" 4521 | bunyan "1.8.12" 4522 | camelcase "4.1.0" 4523 | debounce "1.1.0" 4524 | decamelize "2.0.0" 4525 | es6-error "4.1.1" 4526 | es6-promisify "5.0.0" 4527 | event-to-promise "0.8.0" 4528 | firefox-profile "1.1.0" 4529 | fx-runner "1.0.8" 4530 | git-rev-sync "1.9.1" 4531 | minimatch "3.0.4" 4532 | mkdirp "0.5.1" 4533 | mz "2.7.0" 4534 | node-firefox-connect "1.2.0" 4535 | node-notifier "5.2.1" 4536 | open "0.0.5" 4537 | parse-json "4.0.0" 4538 | regenerator-runtime "0.11.1" 4539 | require-uncached "1.0.3" 4540 | sign-addon "0.2.2" 4541 | source-map-support "0.5.3" 4542 | stream-to-promise "2.2.0" 4543 | tmp "0.0.33" 4544 | update-notifier "2.3.0" 4545 | watchpack "1.4.0" 4546 | yargs "6.6.0" 4547 | zip-dir "1.0.2" 4548 | 4549 | webidl-conversions@^4.0.1: 4550 | version "4.0.2" 4551 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4552 | 4553 | webpack-sources@^1.0.1: 4554 | version "1.1.0" 4555 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 4556 | dependencies: 4557 | source-list-map "^2.0.0" 4558 | source-map "~0.6.1" 4559 | 4560 | webpack@3.10.0: 4561 | version "3.10.0" 4562 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725" 4563 | dependencies: 4564 | acorn "^5.0.0" 4565 | acorn-dynamic-import "^2.0.0" 4566 | ajv "^5.1.5" 4567 | ajv-keywords "^2.0.0" 4568 | async "^2.1.2" 4569 | enhanced-resolve "^3.4.0" 4570 | escope "^3.6.0" 4571 | interpret "^1.0.0" 4572 | json-loader "^0.5.4" 4573 | json5 "^0.5.1" 4574 | loader-runner "^2.3.0" 4575 | loader-utils "^1.1.0" 4576 | memory-fs "~0.4.1" 4577 | mkdirp "~0.5.0" 4578 | node-libs-browser "^2.0.0" 4579 | source-map "^0.5.3" 4580 | supports-color "^4.2.1" 4581 | tapable "^0.2.7" 4582 | uglifyjs-webpack-plugin "^0.4.6" 4583 | watchpack "^1.4.0" 4584 | webpack-sources "^1.0.1" 4585 | yargs "^8.0.2" 4586 | 4587 | whatwg-url@6.3.0: 4588 | version "6.3.0" 4589 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.3.0.tgz#597ee5488371abe7922c843397ddec1ae94c048d" 4590 | dependencies: 4591 | lodash.sortby "^4.7.0" 4592 | tr46 "^1.0.0" 4593 | webidl-conversions "^4.0.1" 4594 | 4595 | when@3.7.7: 4596 | version "3.7.7" 4597 | resolved "https://registry.yarnpkg.com/when/-/when-3.7.7.tgz#aba03fc3bb736d6c88b091d013d8a8e590d84718" 4598 | 4599 | which-module@^1.0.0: 4600 | version "1.0.0" 4601 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4602 | 4603 | which-module@^2.0.0: 4604 | version "2.0.0" 4605 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4606 | 4607 | which@1.2.4: 4608 | version "1.2.4" 4609 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.4.tgz#1557f96080604e5b11b3599eb9f45b50a9efd722" 4610 | dependencies: 4611 | is-absolute "^0.1.7" 4612 | isexe "^1.1.1" 4613 | 4614 | which@^1.2.9, which@^1.3.0: 4615 | version "1.3.0" 4616 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4617 | dependencies: 4618 | isexe "^2.0.0" 4619 | 4620 | wide-align@^1.1.0: 4621 | version "1.1.2" 4622 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4623 | dependencies: 4624 | string-width "^1.0.2" 4625 | 4626 | widest-line@^2.0.0: 4627 | version "2.0.0" 4628 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 4629 | dependencies: 4630 | string-width "^2.1.1" 4631 | 4632 | window-size@0.1.0: 4633 | version "0.1.0" 4634 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4635 | 4636 | winreg@0.0.12: 4637 | version "0.0.12" 4638 | resolved "https://registry.yarnpkg.com/winreg/-/winreg-0.0.12.tgz#07105554ba1a9d08979251d129475bffae3006b7" 4639 | 4640 | wordwrap@0.0.2: 4641 | version "0.0.2" 4642 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4643 | 4644 | wordwrap@~1.0.0: 4645 | version "1.0.0" 4646 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4647 | 4648 | wrap-ansi@^2.0.0: 4649 | version "2.1.0" 4650 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4651 | dependencies: 4652 | string-width "^1.0.1" 4653 | strip-ansi "^3.0.1" 4654 | 4655 | wrappy@1: 4656 | version "1.0.2" 4657 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4658 | 4659 | write-file-atomic@^2.0.0: 4660 | version "2.3.0" 4661 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4662 | dependencies: 4663 | graceful-fs "^4.1.11" 4664 | imurmurhash "^0.1.4" 4665 | signal-exit "^3.0.2" 4666 | 4667 | write@^0.2.1: 4668 | version "0.2.1" 4669 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4670 | dependencies: 4671 | mkdirp "^0.5.1" 4672 | 4673 | xdg-basedir@^3.0.0: 4674 | version "3.0.0" 4675 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4676 | 4677 | xml2js@~0.4.4: 4678 | version "0.4.19" 4679 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 4680 | dependencies: 4681 | sax ">=0.6.0" 4682 | xmlbuilder "~9.0.1" 4683 | 4684 | xmlbuilder@~9.0.1: 4685 | version "9.0.4" 4686 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.4.tgz#519cb4ca686d005a8420d3496f3f0caeecca580f" 4687 | 4688 | xmldom@0.1.27: 4689 | version "0.1.27" 4690 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 4691 | 4692 | xregexp@4.0.0: 4693 | version "4.0.0" 4694 | resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz#e698189de49dd2a18cc5687b05e17c8e43943020" 4695 | 4696 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 4697 | version "4.0.1" 4698 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4699 | 4700 | y18n@^3.2.1: 4701 | version "3.2.1" 4702 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4703 | 4704 | yallist@^2.1.2: 4705 | version "2.1.2" 4706 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4707 | 4708 | yargs-parser@^4.2.0: 4709 | version "4.2.1" 4710 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4711 | dependencies: 4712 | camelcase "^3.0.0" 4713 | 4714 | yargs-parser@^7.0.0: 4715 | version "7.0.0" 4716 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4717 | dependencies: 4718 | camelcase "^4.1.0" 4719 | 4720 | yargs-parser@^8.0.0, yargs-parser@^8.1.0: 4721 | version "8.1.0" 4722 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 4723 | dependencies: 4724 | camelcase "^4.1.0" 4725 | 4726 | yargs@10.0.3: 4727 | version "10.0.3" 4728 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" 4729 | dependencies: 4730 | cliui "^3.2.0" 4731 | decamelize "^1.1.1" 4732 | find-up "^2.1.0" 4733 | get-caller-file "^1.0.1" 4734 | os-locale "^2.0.0" 4735 | require-directory "^2.1.1" 4736 | require-main-filename "^1.0.1" 4737 | set-blocking "^2.0.0" 4738 | string-width "^2.0.0" 4739 | which-module "^2.0.0" 4740 | y18n "^3.2.1" 4741 | yargs-parser "^8.0.0" 4742 | 4743 | yargs@6.6.0: 4744 | version "6.6.0" 4745 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4746 | dependencies: 4747 | camelcase "^3.0.0" 4748 | cliui "^3.2.0" 4749 | decamelize "^1.1.1" 4750 | get-caller-file "^1.0.1" 4751 | os-locale "^1.4.0" 4752 | read-pkg-up "^1.0.1" 4753 | require-directory "^2.1.1" 4754 | require-main-filename "^1.0.1" 4755 | set-blocking "^2.0.0" 4756 | string-width "^1.0.2" 4757 | which-module "^1.0.0" 4758 | y18n "^3.2.1" 4759 | yargs-parser "^4.2.0" 4760 | 4761 | yargs@^10.0.3: 4762 | version "10.1.2" 4763 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" 4764 | dependencies: 4765 | cliui "^4.0.0" 4766 | decamelize "^1.1.1" 4767 | find-up "^2.1.0" 4768 | get-caller-file "^1.0.1" 4769 | os-locale "^2.0.0" 4770 | require-directory "^2.1.1" 4771 | require-main-filename "^1.0.1" 4772 | set-blocking "^2.0.0" 4773 | string-width "^2.0.0" 4774 | which-module "^2.0.0" 4775 | y18n "^3.2.1" 4776 | yargs-parser "^8.1.0" 4777 | 4778 | yargs@^8.0.2: 4779 | version "8.0.2" 4780 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4781 | dependencies: 4782 | camelcase "^4.1.0" 4783 | cliui "^3.2.0" 4784 | decamelize "^1.1.1" 4785 | get-caller-file "^1.0.1" 4786 | os-locale "^2.0.0" 4787 | read-pkg-up "^2.0.0" 4788 | require-directory "^2.1.1" 4789 | require-main-filename "^1.0.1" 4790 | set-blocking "^2.0.0" 4791 | string-width "^2.0.0" 4792 | which-module "^2.0.0" 4793 | y18n "^3.2.1" 4794 | yargs-parser "^7.0.0" 4795 | 4796 | yargs@~3.10.0: 4797 | version "3.10.0" 4798 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4799 | dependencies: 4800 | camelcase "^1.0.2" 4801 | cliui "^2.1.0" 4802 | decamelize "^1.0.0" 4803 | window-size "0.1.0" 4804 | 4805 | yauzl@2.9.1: 4806 | version "2.9.1" 4807 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.9.1.tgz#a81981ea70a57946133883f029c5821a89359a7f" 4808 | dependencies: 4809 | buffer-crc32 "~0.2.3" 4810 | fd-slicer "~1.0.1" 4811 | 4812 | zip-dir@1.0.2: 4813 | version "1.0.2" 4814 | resolved "https://registry.yarnpkg.com/zip-dir/-/zip-dir-1.0.2.tgz#253f907aead62a21acd8721d8b88032b2411c051" 4815 | dependencies: 4816 | async "^1.5.2" 4817 | jszip "^2.4.0" 4818 | 4819 | zip-stream@^1.2.0: 4820 | version "1.2.0" 4821 | resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.2.0.tgz#a8bc45f4c1b49699c6b90198baacaacdbcd4ba04" 4822 | dependencies: 4823 | archiver-utils "^1.3.0" 4824 | compress-commons "^1.2.0" 4825 | lodash "^4.8.0" 4826 | readable-stream "^2.0.0" 4827 | --------------------------------------------------------------------------------