├── .github └── workflows │ ├── npmpublish.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── command.js ├── package-lock.json ├── package.json ├── src └── functions.js └── test └── test.spec.js /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- 1 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages 3 | 4 | name: Node.js Package 5 | 6 | on: 7 | release: 8 | types: [created] 9 | 10 | jobs: 11 | test: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | - uses: actions/setup-node@v1 16 | with: 17 | node-version: 12 18 | - run: npm ci 19 | - run: npm test 20 | 21 | build: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - uses: actions/checkout@v2 25 | - uses: actions/setup-node@v1 26 | with: 27 | node-version: 12 28 | - run: npm ci 29 | 30 | publish-npm: 31 | needs: build 32 | runs-on: ubuntu-latest 33 | steps: 34 | - uses: actions/checkout@v2 35 | - uses: actions/setup-node@v1 36 | with: 37 | node-version: 12 38 | registry-url: https://registry.npmjs.org/ 39 | - run: npm ci 40 | - run: npm publish 41 | env: 42 | NODE_AUTH_TOKEN: ${{secrets.npm_token}} 43 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | on: 3 | push: 4 | schedule: 5 | # Runs at 12am UTC 6 | - cron: '0 0 * * *' 7 | pull_request: 8 | branches: [master, staging] 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | - uses: actions/setup-node@v1 16 | - run: npm ci 17 | - run: npm test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # Snowpack dependency directory (https://snowpack.dev/) 45 | web_modules/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | .parcel-cache 78 | 79 | # Next.js build output 80 | .next 81 | 82 | # Nuxt.js build / generate output 83 | .nuxt 84 | dist 85 | 86 | # Gatsby files 87 | .cache/ 88 | # Comment in the public line in if your project uses Gatsby and not Next.js 89 | # https://nextjs.org/blog/next-9-1#public-directory-support 90 | # public 91 | 92 | # vuepress build output 93 | .vuepress/dist 94 | 95 | # Serverless directories 96 | .serverless/ 97 | 98 | # FuseBox cache 99 | .fusebox/ 100 | 101 | # DynamoDB Local files 102 | .dynamodb/ 103 | 104 | # TernJS port file 105 | .tern-port 106 | 107 | # Stores VSCode versions used for testing VSCode extensions 108 | .vscode-test 109 | 110 | # yarn v2 111 | 112 | .yarn/cache 113 | .yarn/unplugged 114 | .yarn/build-state.yml 115 | .pnp.* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CyberDrop Command Line Interface 2 | ![npm status](https://github.com/izqalan/CyberDrop-cli/workflows/Node.js%20Package/badge.svg) 3 | ![test status](https://github.com/izqalan/CyberDrop-cli/workflows/Test/badge.svg) 4 | > Unofficial Cyberdrop.me Command Line Interface Album Downloader 5 | 6 | ## GUI Album Downloader 7 | If you prefer gui downloader, I wrote a simple C# program for windows [here](https://github.com/izqalan/cy-client/releases). Just download the `.zip` and run the installer. 8 | 9 | ## Setup locally 10 | Perform these steps to make initial setup of your work environment: 11 | 1. Install the [Node.js](https://nodejs.org), it comes with the [NPM](https://docs.npmjs.com/) package manager 12 | 13 | ## Installation 14 | ```bash 15 | $ npm install -g cyberdrop-cli 16 | ``` 17 | 18 | ### Commands 19 | ``` 20 | get | g Download pictures from specified album 21 | help [command] display help for command 22 | ``` 23 | 24 | ### Options 25 | 26 | ``` 27 | -p, --parallel Download album images in parallel (faster but prone to corruption) 28 | -o, --output Downloaded album destinetion ( " . " for current directory) 29 | -h, --help Display all commands and options 30 | ``` 31 | 32 | ## Usage 33 | By default album will be stored into your local Downloads folder 34 | 35 | ```bash 36 | $ cyberdrop-cli d [options] // old method 37 | 38 | $ cy get [options] 39 | ``` 40 | 41 | use ``-o `` to specify outpu destination. ``-o .`` to output downloaded album to current working directory. 42 | 43 | ```bash 44 | $ cyberdrop-cli d -o // old method 45 | 46 | $ cy get -o 47 | ``` 48 | -------------------------------------------------------------------------------- /bin/command.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require = require('esm')(module /*, options */); 4 | 5 | const { program } = require('commander'); 6 | const { download } = require('../src/functions') 7 | var pjson = require('../package.json'); 8 | 9 | program 10 | .version(pjson.version) 11 | .description(pjson.description) 12 | 13 | program 14 | .option('-p, --parallel', 'Download album images in parallel (faster)') 15 | .option('-o, --output ', 'Download destination', false) 16 | .command('get ') 17 | .alias('g') 18 | .description('Download pictures from specified album') 19 | .action(album => { 20 | if(program.parallel){ 21 | download(album, true, program.output) 22 | }else{ 23 | download(album, false, program.output) 24 | } 25 | }) 26 | 27 | program 28 | .option('-p, --parallel', 'Download album images in parallel (faster)') 29 | .option('-o, --output ', 'Download destination', false) 30 | .command('download ') 31 | .alias('d') 32 | .description('Download pictures from specified album') 33 | .action(album => { 34 | if(program.parallel){ 35 | download(album, true, program.output) 36 | }else{ 37 | download(album, false, program.output) 38 | } 39 | }) 40 | 41 | program.on('command:*', function () { 42 | console.error('Invalid command: %s\nSee --help for a list of available commands.', program.args.join(' ')); 43 | process.exit(1); 44 | }); 45 | 46 | program.parse(process.argv); -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cyberdrop-cli", 3 | "version": "0.1.7", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@sindresorhus/is": { 8 | "version": "0.7.0", 9 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", 10 | "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==" 11 | }, 12 | "@types/color-name": { 13 | "version": "1.1.1", 14 | "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", 15 | "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" 16 | }, 17 | "accepts": { 18 | "version": "1.3.7", 19 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 20 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 21 | "requires": { 22 | "mime-types": "~2.1.24", 23 | "negotiator": "0.6.2" 24 | } 25 | }, 26 | "ansi-colors": { 27 | "version": "4.1.1", 28 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", 29 | "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", 30 | "dev": true 31 | }, 32 | "ansi-regex": { 33 | "version": "5.0.0", 34 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", 35 | "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" 36 | }, 37 | "ansi-styles": { 38 | "version": "3.2.1", 39 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 40 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 41 | "requires": { 42 | "color-convert": "^1.9.0" 43 | } 44 | }, 45 | "anymatch": { 46 | "version": "3.1.1", 47 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", 48 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", 49 | "dev": true, 50 | "requires": { 51 | "normalize-path": "^3.0.0", 52 | "picomatch": "^2.0.4" 53 | } 54 | }, 55 | "archive-type": { 56 | "version": "4.0.0", 57 | "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", 58 | "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", 59 | "requires": { 60 | "file-type": "^4.2.0" 61 | }, 62 | "dependencies": { 63 | "file-type": { 64 | "version": "4.4.0", 65 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", 66 | "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=" 67 | } 68 | } 69 | }, 70 | "argparse": { 71 | "version": "1.0.10", 72 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 73 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 74 | "dev": true, 75 | "requires": { 76 | "sprintf-js": "~1.0.2" 77 | } 78 | }, 79 | "array.prototype.map": { 80 | "version": "1.0.2", 81 | "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.2.tgz", 82 | "integrity": "sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw==", 83 | "dev": true, 84 | "requires": { 85 | "define-properties": "^1.1.3", 86 | "es-abstract": "^1.17.0-next.1", 87 | "es-array-method-boxes-properly": "^1.0.0", 88 | "is-string": "^1.0.4" 89 | } 90 | }, 91 | "assert": { 92 | "version": "1.5.0", 93 | "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", 94 | "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", 95 | "requires": { 96 | "object-assign": "^4.1.1", 97 | "util": "0.10.3" 98 | } 99 | }, 100 | "assertion-error": { 101 | "version": "1.1.0", 102 | "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", 103 | "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", 104 | "dev": true 105 | }, 106 | "asynckit": { 107 | "version": "0.4.0", 108 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 109 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 110 | }, 111 | "balanced-match": { 112 | "version": "1.0.0", 113 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 114 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 115 | "dev": true 116 | }, 117 | "base64-js": { 118 | "version": "1.3.1", 119 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", 120 | "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" 121 | }, 122 | "batch": { 123 | "version": "0.6.1", 124 | "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", 125 | "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" 126 | }, 127 | "binary-extensions": { 128 | "version": "2.1.0", 129 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", 130 | "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", 131 | "dev": true 132 | }, 133 | "bl": { 134 | "version": "1.2.2", 135 | "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz", 136 | "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", 137 | "requires": { 138 | "readable-stream": "^2.3.5", 139 | "safe-buffer": "^5.1.1" 140 | }, 141 | "dependencies": { 142 | "readable-stream": { 143 | "version": "2.3.7", 144 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", 145 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", 146 | "requires": { 147 | "core-util-is": "~1.0.0", 148 | "inherits": "~2.0.3", 149 | "isarray": "~1.0.0", 150 | "process-nextick-args": "~2.0.0", 151 | "safe-buffer": "~5.1.1", 152 | "string_decoder": "~1.1.1", 153 | "util-deprecate": "~1.0.1" 154 | }, 155 | "dependencies": { 156 | "safe-buffer": { 157 | "version": "5.1.2", 158 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 159 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 160 | } 161 | } 162 | }, 163 | "string_decoder": { 164 | "version": "1.1.1", 165 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 166 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 167 | "requires": { 168 | "safe-buffer": "~5.1.0" 169 | }, 170 | "dependencies": { 171 | "safe-buffer": { 172 | "version": "5.1.2", 173 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 174 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 175 | } 176 | } 177 | } 178 | } 179 | }, 180 | "bluebird": { 181 | "version": "3.7.2", 182 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 183 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" 184 | }, 185 | "boolbase": { 186 | "version": "1.0.0", 187 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 188 | "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" 189 | }, 190 | "brace-expansion": { 191 | "version": "1.1.11", 192 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 193 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 194 | "dev": true, 195 | "requires": { 196 | "balanced-match": "^1.0.0", 197 | "concat-map": "0.0.1" 198 | } 199 | }, 200 | "braces": { 201 | "version": "3.0.2", 202 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 203 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 204 | "dev": true, 205 | "requires": { 206 | "fill-range": "^7.0.1" 207 | } 208 | }, 209 | "browser-stdout": { 210 | "version": "1.3.1", 211 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 212 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 213 | "dev": true 214 | }, 215 | "buffer": { 216 | "version": "5.5.0", 217 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.5.0.tgz", 218 | "integrity": "sha512-9FTEDjLjwoAkEwyMGDjYJQN2gfRgOKBKRfiglhvibGbpeeU/pQn1bJxQqm32OD/AIeEuHxU9roxXxg34Byp/Ww==", 219 | "requires": { 220 | "base64-js": "^1.0.2", 221 | "ieee754": "^1.1.4" 222 | } 223 | }, 224 | "buffer-alloc": { 225 | "version": "1.2.0", 226 | "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", 227 | "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", 228 | "requires": { 229 | "buffer-alloc-unsafe": "^1.1.0", 230 | "buffer-fill": "^1.0.0" 231 | } 232 | }, 233 | "buffer-alloc-unsafe": { 234 | "version": "1.1.0", 235 | "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", 236 | "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" 237 | }, 238 | "buffer-crc32": { 239 | "version": "0.2.13", 240 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 241 | "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" 242 | }, 243 | "buffer-fill": { 244 | "version": "1.0.0", 245 | "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", 246 | "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" 247 | }, 248 | "cacheable-request": { 249 | "version": "2.1.4", 250 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", 251 | "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", 252 | "requires": { 253 | "clone-response": "1.0.2", 254 | "get-stream": "3.0.0", 255 | "http-cache-semantics": "3.8.1", 256 | "keyv": "3.0.0", 257 | "lowercase-keys": "1.0.0", 258 | "normalize-url": "2.0.1", 259 | "responselike": "1.0.2" 260 | }, 261 | "dependencies": { 262 | "lowercase-keys": { 263 | "version": "1.0.0", 264 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", 265 | "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" 266 | } 267 | } 268 | }, 269 | "camelcase": { 270 | "version": "5.3.1", 271 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 272 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 273 | "dev": true 274 | }, 275 | "caw": { 276 | "version": "2.0.1", 277 | "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", 278 | "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", 279 | "requires": { 280 | "get-proxy": "^2.0.0", 281 | "isurl": "^1.0.0-alpha5", 282 | "tunnel-agent": "^0.6.0", 283 | "url-to-options": "^1.0.1" 284 | } 285 | }, 286 | "chai": { 287 | "version": "4.2.0", 288 | "resolved": "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz", 289 | "integrity": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==", 290 | "dev": true, 291 | "requires": { 292 | "assertion-error": "^1.1.0", 293 | "check-error": "^1.0.2", 294 | "deep-eql": "^3.0.1", 295 | "get-func-name": "^2.0.0", 296 | "pathval": "^1.1.0", 297 | "type-detect": "^4.0.5" 298 | } 299 | }, 300 | "chalk": { 301 | "version": "2.4.2", 302 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 303 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 304 | "requires": { 305 | "ansi-styles": "^3.2.1", 306 | "escape-string-regexp": "^1.0.5", 307 | "supports-color": "^5.3.0" 308 | } 309 | }, 310 | "check-error": { 311 | "version": "1.0.2", 312 | "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", 313 | "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", 314 | "dev": true 315 | }, 316 | "cheerio": { 317 | "version": "0.22.0", 318 | "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", 319 | "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", 320 | "requires": { 321 | "css-select": "~1.2.0", 322 | "dom-serializer": "~0.1.0", 323 | "entities": "~1.1.1", 324 | "htmlparser2": "^3.9.1", 325 | "lodash.assignin": "^4.0.9", 326 | "lodash.bind": "^4.1.4", 327 | "lodash.defaults": "^4.0.1", 328 | "lodash.filter": "^4.4.0", 329 | "lodash.flatten": "^4.2.0", 330 | "lodash.foreach": "^4.3.0", 331 | "lodash.map": "^4.4.0", 332 | "lodash.merge": "^4.4.0", 333 | "lodash.pick": "^4.2.1", 334 | "lodash.reduce": "^4.4.0", 335 | "lodash.reject": "^4.4.0", 336 | "lodash.some": "^4.4.0" 337 | } 338 | }, 339 | "chokidar": { 340 | "version": "3.4.2", 341 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz", 342 | "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==", 343 | "dev": true, 344 | "requires": { 345 | "anymatch": "~3.1.1", 346 | "braces": "~3.0.2", 347 | "fsevents": "~2.1.2", 348 | "glob-parent": "~5.1.0", 349 | "is-binary-path": "~2.1.0", 350 | "is-glob": "~4.0.1", 351 | "normalize-path": "~3.0.0", 352 | "readdirp": "~3.4.0" 353 | } 354 | }, 355 | "cli-cursor": { 356 | "version": "3.1.0", 357 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", 358 | "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", 359 | "requires": { 360 | "restore-cursor": "^3.1.0" 361 | } 362 | }, 363 | "cli-spinners": { 364 | "version": "2.2.0", 365 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.2.0.tgz", 366 | "integrity": "sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==" 367 | }, 368 | "cliui": { 369 | "version": "5.0.0", 370 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", 371 | "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", 372 | "dev": true, 373 | "requires": { 374 | "string-width": "^3.1.0", 375 | "strip-ansi": "^5.2.0", 376 | "wrap-ansi": "^5.1.0" 377 | }, 378 | "dependencies": { 379 | "ansi-regex": { 380 | "version": "4.1.0", 381 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 382 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 383 | "dev": true 384 | }, 385 | "string-width": { 386 | "version": "3.1.0", 387 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 388 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 389 | "dev": true, 390 | "requires": { 391 | "emoji-regex": "^7.0.1", 392 | "is-fullwidth-code-point": "^2.0.0", 393 | "strip-ansi": "^5.1.0" 394 | } 395 | }, 396 | "strip-ansi": { 397 | "version": "5.2.0", 398 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 399 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 400 | "dev": true, 401 | "requires": { 402 | "ansi-regex": "^4.1.0" 403 | } 404 | } 405 | } 406 | }, 407 | "clone": { 408 | "version": "1.0.4", 409 | "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", 410 | "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" 411 | }, 412 | "clone-response": { 413 | "version": "1.0.2", 414 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", 415 | "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", 416 | "requires": { 417 | "mimic-response": "^1.0.0" 418 | } 419 | }, 420 | "co": { 421 | "version": "3.1.0", 422 | "resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz", 423 | "integrity": "sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g=" 424 | }, 425 | "color-convert": { 426 | "version": "1.9.3", 427 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 428 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 429 | "requires": { 430 | "color-name": "1.1.3" 431 | } 432 | }, 433 | "color-name": { 434 | "version": "1.1.3", 435 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 436 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 437 | }, 438 | "combined-stream": { 439 | "version": "1.0.8", 440 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 441 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 442 | "requires": { 443 | "delayed-stream": "~1.0.0" 444 | } 445 | }, 446 | "commander": { 447 | "version": "5.0.0", 448 | "resolved": "https://registry.npmjs.org/commander/-/commander-5.0.0.tgz", 449 | "integrity": "sha512-JrDGPAKjMGSP1G0DUoaceEJ3DZgAfr/q6X7FVk4+U5KxUSKviYGM2k6zWkfyyBHy5rAtzgYJFa1ro2O9PtoxwQ==" 450 | }, 451 | "component-emitter": { 452 | "version": "1.3.0", 453 | "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", 454 | "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" 455 | }, 456 | "concat-map": { 457 | "version": "0.0.1", 458 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 459 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 460 | "dev": true 461 | }, 462 | "config-chain": { 463 | "version": "1.1.12", 464 | "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz", 465 | "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==", 466 | "requires": { 467 | "ini": "^1.3.4", 468 | "proto-list": "~1.2.1" 469 | } 470 | }, 471 | "content-disposition": { 472 | "version": "0.5.3", 473 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 474 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 475 | "requires": { 476 | "safe-buffer": "5.1.2" 477 | }, 478 | "dependencies": { 479 | "safe-buffer": { 480 | "version": "5.1.2", 481 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 482 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 483 | } 484 | } 485 | }, 486 | "content-type": { 487 | "version": "1.0.4", 488 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 489 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 490 | }, 491 | "cookiejar": { 492 | "version": "2.1.2", 493 | "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", 494 | "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" 495 | }, 496 | "core-util-is": { 497 | "version": "1.0.2", 498 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 499 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 500 | }, 501 | "css-select": { 502 | "version": "1.2.0", 503 | "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", 504 | "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", 505 | "requires": { 506 | "boolbase": "~1.0.0", 507 | "css-what": "2.1", 508 | "domutils": "1.5.1", 509 | "nth-check": "~1.0.1" 510 | } 511 | }, 512 | "css-what": { 513 | "version": "2.1.3", 514 | "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", 515 | "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" 516 | }, 517 | "debug": { 518 | "version": "2.6.9", 519 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 520 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 521 | "requires": { 522 | "ms": "2.0.0" 523 | } 524 | }, 525 | "decamelize": { 526 | "version": "1.2.0", 527 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 528 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", 529 | "dev": true 530 | }, 531 | "decode-uri-component": { 532 | "version": "0.2.0", 533 | "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", 534 | "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" 535 | }, 536 | "decompress": { 537 | "version": "4.2.1", 538 | "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", 539 | "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", 540 | "requires": { 541 | "decompress-tar": "^4.0.0", 542 | "decompress-tarbz2": "^4.0.0", 543 | "decompress-targz": "^4.0.0", 544 | "decompress-unzip": "^4.0.1", 545 | "graceful-fs": "^4.1.10", 546 | "make-dir": "^1.0.0", 547 | "pify": "^2.3.0", 548 | "strip-dirs": "^2.0.0" 549 | }, 550 | "dependencies": { 551 | "pify": { 552 | "version": "2.3.0", 553 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 554 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" 555 | } 556 | } 557 | }, 558 | "decompress-response": { 559 | "version": "3.3.0", 560 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", 561 | "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", 562 | "requires": { 563 | "mimic-response": "^1.0.0" 564 | } 565 | }, 566 | "decompress-tar": { 567 | "version": "4.1.1", 568 | "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", 569 | "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", 570 | "requires": { 571 | "file-type": "^5.2.0", 572 | "is-stream": "^1.1.0", 573 | "tar-stream": "^1.5.2" 574 | }, 575 | "dependencies": { 576 | "file-type": { 577 | "version": "5.2.0", 578 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", 579 | "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=" 580 | } 581 | } 582 | }, 583 | "decompress-tarbz2": { 584 | "version": "4.1.1", 585 | "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", 586 | "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", 587 | "requires": { 588 | "decompress-tar": "^4.1.0", 589 | "file-type": "^6.1.0", 590 | "is-stream": "^1.1.0", 591 | "seek-bzip": "^1.0.5", 592 | "unbzip2-stream": "^1.0.9" 593 | }, 594 | "dependencies": { 595 | "file-type": { 596 | "version": "6.2.0", 597 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", 598 | "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==" 599 | } 600 | } 601 | }, 602 | "decompress-targz": { 603 | "version": "4.1.1", 604 | "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", 605 | "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", 606 | "requires": { 607 | "decompress-tar": "^4.1.1", 608 | "file-type": "^5.2.0", 609 | "is-stream": "^1.1.0" 610 | }, 611 | "dependencies": { 612 | "file-type": { 613 | "version": "5.2.0", 614 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", 615 | "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=" 616 | } 617 | } 618 | }, 619 | "decompress-unzip": { 620 | "version": "4.0.1", 621 | "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", 622 | "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", 623 | "requires": { 624 | "file-type": "^3.8.0", 625 | "get-stream": "^2.2.0", 626 | "pify": "^2.3.0", 627 | "yauzl": "^2.4.2" 628 | }, 629 | "dependencies": { 630 | "file-type": { 631 | "version": "3.9.0", 632 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", 633 | "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=" 634 | }, 635 | "get-stream": { 636 | "version": "2.3.1", 637 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", 638 | "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", 639 | "requires": { 640 | "object-assign": "^4.0.1", 641 | "pinkie-promise": "^2.0.0" 642 | } 643 | }, 644 | "pify": { 645 | "version": "2.3.0", 646 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 647 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" 648 | } 649 | } 650 | }, 651 | "deep-eql": { 652 | "version": "3.0.1", 653 | "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", 654 | "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", 655 | "dev": true, 656 | "requires": { 657 | "type-detect": "^4.0.0" 658 | } 659 | }, 660 | "defaults": { 661 | "version": "1.0.3", 662 | "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", 663 | "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", 664 | "requires": { 665 | "clone": "^1.0.2" 666 | } 667 | }, 668 | "define-properties": { 669 | "version": "1.1.3", 670 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 671 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 672 | "dev": true, 673 | "requires": { 674 | "object-keys": "^1.0.12" 675 | } 676 | }, 677 | "delayed-stream": { 678 | "version": "1.0.0", 679 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 680 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 681 | }, 682 | "delegates": { 683 | "version": "0.1.0", 684 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz", 685 | "integrity": "sha1-tLV74RoWU1F6BLJ/CUm9wyff45A=" 686 | }, 687 | "destroy": { 688 | "version": "1.0.4", 689 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 690 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 691 | }, 692 | "diff": { 693 | "version": "4.0.2", 694 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", 695 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", 696 | "dev": true 697 | }, 698 | "dom-serializer": { 699 | "version": "0.1.1", 700 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", 701 | "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", 702 | "requires": { 703 | "domelementtype": "^1.3.0", 704 | "entities": "^1.1.1" 705 | } 706 | }, 707 | "domelementtype": { 708 | "version": "1.3.1", 709 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", 710 | "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" 711 | }, 712 | "domhandler": { 713 | "version": "2.4.2", 714 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", 715 | "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", 716 | "requires": { 717 | "domelementtype": "1" 718 | } 719 | }, 720 | "domutils": { 721 | "version": "1.5.1", 722 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", 723 | "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", 724 | "requires": { 725 | "dom-serializer": "0", 726 | "domelementtype": "1" 727 | } 728 | }, 729 | "download": { 730 | "version": "7.1.0", 731 | "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", 732 | "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", 733 | "requires": { 734 | "archive-type": "^4.0.0", 735 | "caw": "^2.0.1", 736 | "content-disposition": "^0.5.2", 737 | "decompress": "^4.2.0", 738 | "ext-name": "^5.0.0", 739 | "file-type": "^8.1.0", 740 | "filenamify": "^2.0.0", 741 | "get-stream": "^3.0.0", 742 | "got": "^8.3.1", 743 | "make-dir": "^1.2.0", 744 | "p-event": "^2.1.0", 745 | "pify": "^3.0.0" 746 | } 747 | }, 748 | "duplexer3": { 749 | "version": "0.1.4", 750 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 751 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" 752 | }, 753 | "ee-first": { 754 | "version": "1.1.1", 755 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 756 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 757 | }, 758 | "emitter-component": { 759 | "version": "1.1.1", 760 | "resolved": "https://registry.npmjs.org/emitter-component/-/emitter-component-1.1.1.tgz", 761 | "integrity": "sha1-Bl4tvtaVm/RwZ57avq95gdEAOrY=" 762 | }, 763 | "emoji-regex": { 764 | "version": "7.0.3", 765 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 766 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 767 | "dev": true 768 | }, 769 | "end-of-stream": { 770 | "version": "1.4.4", 771 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 772 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 773 | "requires": { 774 | "once": "^1.4.0" 775 | } 776 | }, 777 | "enqueue": { 778 | "version": "1.0.2", 779 | "resolved": "https://registry.npmjs.org/enqueue/-/enqueue-1.0.2.tgz", 780 | "integrity": "sha1-kBTpvOVw7pPKlubI5jrVTBkra8g=", 781 | "requires": { 782 | "sliced": "0.0.5" 783 | } 784 | }, 785 | "enstore": { 786 | "version": "1.0.1", 787 | "resolved": "https://registry.npmjs.org/enstore/-/enstore-1.0.1.tgz", 788 | "integrity": "sha1-og/nHq696KOBOgoSQEdfVYVKgas=", 789 | "requires": { 790 | "monotonic-timestamp": "0.0.8" 791 | } 792 | }, 793 | "entities": { 794 | "version": "1.1.2", 795 | "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", 796 | "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" 797 | }, 798 | "error-inject": { 799 | "version": "1.0.0", 800 | "resolved": "https://registry.npmjs.org/error-inject/-/error-inject-1.0.0.tgz", 801 | "integrity": "sha1-4rPZG1Su1nLzCdlQ0VSFD6EdTzc=" 802 | }, 803 | "es-abstract": { 804 | "version": "1.17.6", 805 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", 806 | "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", 807 | "dev": true, 808 | "requires": { 809 | "es-to-primitive": "^1.2.1", 810 | "function-bind": "^1.1.1", 811 | "has": "^1.0.3", 812 | "has-symbols": "^1.0.1", 813 | "is-callable": "^1.2.0", 814 | "is-regex": "^1.1.0", 815 | "object-inspect": "^1.7.0", 816 | "object-keys": "^1.1.1", 817 | "object.assign": "^4.1.0", 818 | "string.prototype.trimend": "^1.0.1", 819 | "string.prototype.trimstart": "^1.0.1" 820 | } 821 | }, 822 | "es-array-method-boxes-properly": { 823 | "version": "1.0.0", 824 | "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", 825 | "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", 826 | "dev": true 827 | }, 828 | "es-get-iterator": { 829 | "version": "1.1.0", 830 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.0.tgz", 831 | "integrity": "sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ==", 832 | "dev": true, 833 | "requires": { 834 | "es-abstract": "^1.17.4", 835 | "has-symbols": "^1.0.1", 836 | "is-arguments": "^1.0.4", 837 | "is-map": "^2.0.1", 838 | "is-set": "^2.0.1", 839 | "is-string": "^1.0.5", 840 | "isarray": "^2.0.5" 841 | }, 842 | "dependencies": { 843 | "isarray": { 844 | "version": "2.0.5", 845 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 846 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 847 | "dev": true 848 | } 849 | } 850 | }, 851 | "es-to-primitive": { 852 | "version": "1.2.1", 853 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 854 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 855 | "dev": true, 856 | "requires": { 857 | "is-callable": "^1.1.4", 858 | "is-date-object": "^1.0.1", 859 | "is-symbol": "^1.0.2" 860 | } 861 | }, 862 | "escape-html": { 863 | "version": "1.0.3", 864 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 865 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 866 | }, 867 | "escape-string-regexp": { 868 | "version": "1.0.5", 869 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 870 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 871 | }, 872 | "esm": { 873 | "version": "3.2.25", 874 | "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", 875 | "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" 876 | }, 877 | "esprima": { 878 | "version": "4.0.1", 879 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 880 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 881 | "dev": true 882 | }, 883 | "ext-list": { 884 | "version": "2.2.2", 885 | "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", 886 | "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", 887 | "requires": { 888 | "mime-db": "^1.28.0" 889 | } 890 | }, 891 | "ext-name": { 892 | "version": "5.0.0", 893 | "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", 894 | "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", 895 | "requires": { 896 | "ext-list": "^2.0.0", 897 | "sort-keys-length": "^1.0.0" 898 | } 899 | }, 900 | "extend": { 901 | "version": "3.0.2", 902 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 903 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 904 | }, 905 | "fd-slicer": { 906 | "version": "1.1.0", 907 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", 908 | "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", 909 | "requires": { 910 | "pend": "~1.2.0" 911 | } 912 | }, 913 | "file-type": { 914 | "version": "8.1.0", 915 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", 916 | "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==" 917 | }, 918 | "filename-reserved-regex": { 919 | "version": "2.0.0", 920 | "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", 921 | "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" 922 | }, 923 | "filenamify": { 924 | "version": "2.1.0", 925 | "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", 926 | "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", 927 | "requires": { 928 | "filename-reserved-regex": "^2.0.0", 929 | "strip-outer": "^1.0.0", 930 | "trim-repeated": "^1.0.0" 931 | } 932 | }, 933 | "fill-range": { 934 | "version": "7.0.1", 935 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 936 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 937 | "dev": true, 938 | "requires": { 939 | "to-regex-range": "^5.0.1" 940 | } 941 | }, 942 | "find-up": { 943 | "version": "5.0.0", 944 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 945 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 946 | "dev": true, 947 | "requires": { 948 | "locate-path": "^6.0.0", 949 | "path-exists": "^4.0.0" 950 | } 951 | }, 952 | "flat": { 953 | "version": "4.1.0", 954 | "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", 955 | "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", 956 | "dev": true, 957 | "requires": { 958 | "is-buffer": "~2.0.3" 959 | } 960 | }, 961 | "form-data": { 962 | "version": "2.5.1", 963 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", 964 | "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", 965 | "requires": { 966 | "asynckit": "^0.4.0", 967 | "combined-stream": "^1.0.6", 968 | "mime-types": "^2.1.12" 969 | } 970 | }, 971 | "format-parser": { 972 | "version": "0.0.2", 973 | "resolved": "https://registry.npmjs.org/format-parser/-/format-parser-0.0.2.tgz", 974 | "integrity": "sha1-QxiCKoqfGimgE3JTuQhxnE+SIqI=" 975 | }, 976 | "formidable": { 977 | "version": "1.2.2", 978 | "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.2.tgz", 979 | "integrity": "sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q==" 980 | }, 981 | "from2": { 982 | "version": "2.3.0", 983 | "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", 984 | "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", 985 | "requires": { 986 | "inherits": "^2.0.1", 987 | "readable-stream": "^2.0.0" 988 | }, 989 | "dependencies": { 990 | "readable-stream": { 991 | "version": "2.3.7", 992 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", 993 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", 994 | "requires": { 995 | "core-util-is": "~1.0.0", 996 | "inherits": "~2.0.3", 997 | "isarray": "~1.0.0", 998 | "process-nextick-args": "~2.0.0", 999 | "safe-buffer": "~5.1.1", 1000 | "string_decoder": "~1.1.1", 1001 | "util-deprecate": "~1.0.1" 1002 | } 1003 | }, 1004 | "safe-buffer": { 1005 | "version": "5.1.2", 1006 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 1007 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 1008 | }, 1009 | "string_decoder": { 1010 | "version": "1.1.1", 1011 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 1012 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 1013 | "requires": { 1014 | "safe-buffer": "~5.1.0" 1015 | } 1016 | } 1017 | } 1018 | }, 1019 | "fs-constants": { 1020 | "version": "1.0.0", 1021 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", 1022 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" 1023 | }, 1024 | "fs.realpath": { 1025 | "version": "1.0.0", 1026 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1027 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 1028 | "dev": true 1029 | }, 1030 | "fsevents": { 1031 | "version": "2.1.3", 1032 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", 1033 | "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", 1034 | "dev": true, 1035 | "optional": true 1036 | }, 1037 | "function-bind": { 1038 | "version": "1.1.1", 1039 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1040 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 1041 | "dev": true 1042 | }, 1043 | "get-caller-file": { 1044 | "version": "2.0.5", 1045 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1046 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1047 | "dev": true 1048 | }, 1049 | "get-func-name": { 1050 | "version": "2.0.0", 1051 | "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", 1052 | "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", 1053 | "dev": true 1054 | }, 1055 | "get-proxy": { 1056 | "version": "2.1.0", 1057 | "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", 1058 | "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", 1059 | "requires": { 1060 | "npm-conf": "^1.1.0" 1061 | } 1062 | }, 1063 | "get-stream": { 1064 | "version": "3.0.0", 1065 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 1066 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" 1067 | }, 1068 | "glob": { 1069 | "version": "7.1.6", 1070 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 1071 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 1072 | "dev": true, 1073 | "requires": { 1074 | "fs.realpath": "^1.0.0", 1075 | "inflight": "^1.0.4", 1076 | "inherits": "2", 1077 | "minimatch": "^3.0.4", 1078 | "once": "^1.3.0", 1079 | "path-is-absolute": "^1.0.0" 1080 | } 1081 | }, 1082 | "glob-parent": { 1083 | "version": "5.1.1", 1084 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", 1085 | "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", 1086 | "dev": true, 1087 | "requires": { 1088 | "is-glob": "^4.0.1" 1089 | } 1090 | }, 1091 | "got": { 1092 | "version": "8.3.2", 1093 | "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", 1094 | "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", 1095 | "requires": { 1096 | "@sindresorhus/is": "^0.7.0", 1097 | "cacheable-request": "^2.1.1", 1098 | "decompress-response": "^3.3.0", 1099 | "duplexer3": "^0.1.4", 1100 | "get-stream": "^3.0.0", 1101 | "into-stream": "^3.1.0", 1102 | "is-retry-allowed": "^1.1.0", 1103 | "isurl": "^1.0.0-alpha5", 1104 | "lowercase-keys": "^1.0.0", 1105 | "mimic-response": "^1.0.0", 1106 | "p-cancelable": "^0.4.0", 1107 | "p-timeout": "^2.0.1", 1108 | "pify": "^3.0.0", 1109 | "safe-buffer": "^5.1.1", 1110 | "timed-out": "^4.0.1", 1111 | "url-parse-lax": "^3.0.0", 1112 | "url-to-options": "^1.0.1" 1113 | } 1114 | }, 1115 | "graceful-fs": { 1116 | "version": "4.2.3", 1117 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", 1118 | "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" 1119 | }, 1120 | "graceful-readlink": { 1121 | "version": "1.0.1", 1122 | "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", 1123 | "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" 1124 | }, 1125 | "growl": { 1126 | "version": "1.10.5", 1127 | "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", 1128 | "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", 1129 | "dev": true 1130 | }, 1131 | "has": { 1132 | "version": "1.0.3", 1133 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1134 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1135 | "dev": true, 1136 | "requires": { 1137 | "function-bind": "^1.1.1" 1138 | } 1139 | }, 1140 | "has-flag": { 1141 | "version": "3.0.0", 1142 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1143 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1144 | }, 1145 | "has-symbol-support-x": { 1146 | "version": "1.4.2", 1147 | "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", 1148 | "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" 1149 | }, 1150 | "has-symbols": { 1151 | "version": "1.0.1", 1152 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", 1153 | "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", 1154 | "dev": true 1155 | }, 1156 | "has-to-string-tag-x": { 1157 | "version": "1.4.1", 1158 | "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", 1159 | "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", 1160 | "requires": { 1161 | "has-symbol-support-x": "^1.4.1" 1162 | } 1163 | }, 1164 | "he": { 1165 | "version": "1.2.0", 1166 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 1167 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 1168 | "dev": true 1169 | }, 1170 | "htmlparser2": { 1171 | "version": "3.10.1", 1172 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", 1173 | "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", 1174 | "requires": { 1175 | "domelementtype": "^1.3.1", 1176 | "domhandler": "^2.3.0", 1177 | "domutils": "^1.5.1", 1178 | "entities": "^1.1.1", 1179 | "inherits": "^2.0.1", 1180 | "readable-stream": "^3.1.1" 1181 | } 1182 | }, 1183 | "http-cache-semantics": { 1184 | "version": "3.8.1", 1185 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", 1186 | "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" 1187 | }, 1188 | "http-context": { 1189 | "version": "1.1.1", 1190 | "resolved": "https://registry.npmjs.org/http-context/-/http-context-1.1.1.tgz", 1191 | "integrity": "sha1-pAFxs4nbpjBCqcSHIinHrQ78pRA=", 1192 | "requires": { 1193 | "accepts": "^1.2.5", 1194 | "assert": "^1.3.0", 1195 | "content-disposition": "^0.5.0", 1196 | "content-type": "^1.0.1", 1197 | "delegates": "^0.1.0", 1198 | "destroy": "^1.0.3", 1199 | "error-inject": "^1.0.0", 1200 | "escape-html": "^1.0.1", 1201 | "http-incoming": "^0.12.0", 1202 | "http-outgoing": "^0.12.0", 1203 | "koa-is-json": "^1.0.0", 1204 | "mime-types": "^2.0.10", 1205 | "on-finished": "^2.2.0", 1206 | "parseurl": "^1.3.0", 1207 | "querystring": "^0.2.0", 1208 | "statuses": "^1.2.1", 1209 | "type-is": "^1.6.1", 1210 | "vary": "^1.0.0" 1211 | } 1212 | }, 1213 | "http-incoming": { 1214 | "version": "0.12.0", 1215 | "resolved": "https://registry.npmjs.org/http-incoming/-/http-incoming-0.12.0.tgz", 1216 | "integrity": "sha1-EHg80rXeuMqSqz/yrRcTFdYbT/Y=" 1217 | }, 1218 | "http-outgoing": { 1219 | "version": "0.12.0", 1220 | "resolved": "https://registry.npmjs.org/http-outgoing/-/http-outgoing-0.12.0.tgz", 1221 | "integrity": "sha1-Zi86J8ek0UySS19TFJCe+r3hgw0=" 1222 | }, 1223 | "ieee754": { 1224 | "version": "1.1.13", 1225 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", 1226 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" 1227 | }, 1228 | "inflight": { 1229 | "version": "1.0.6", 1230 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1231 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1232 | "dev": true, 1233 | "requires": { 1234 | "once": "^1.3.0", 1235 | "wrappy": "1" 1236 | } 1237 | }, 1238 | "inherits": { 1239 | "version": "2.0.4", 1240 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1241 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1242 | }, 1243 | "ini": { 1244 | "version": "1.3.5", 1245 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", 1246 | "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" 1247 | }, 1248 | "into-stream": { 1249 | "version": "3.1.0", 1250 | "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", 1251 | "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", 1252 | "requires": { 1253 | "from2": "^2.1.1", 1254 | "p-is-promise": "^1.1.0" 1255 | } 1256 | }, 1257 | "is-arguments": { 1258 | "version": "1.0.4", 1259 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", 1260 | "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", 1261 | "dev": true 1262 | }, 1263 | "is-binary-path": { 1264 | "version": "2.1.0", 1265 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1266 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1267 | "dev": true, 1268 | "requires": { 1269 | "binary-extensions": "^2.0.0" 1270 | } 1271 | }, 1272 | "is-browser": { 1273 | "version": "2.0.1", 1274 | "resolved": "https://registry.npmjs.org/is-browser/-/is-browser-2.0.1.tgz", 1275 | "integrity": "sha1-i/C695mpxi/Z3lvO5M8zl8PnUpo=" 1276 | }, 1277 | "is-buffer": { 1278 | "version": "2.0.4", 1279 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", 1280 | "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", 1281 | "dev": true 1282 | }, 1283 | "is-callable": { 1284 | "version": "1.2.0", 1285 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz", 1286 | "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==", 1287 | "dev": true 1288 | }, 1289 | "is-date-object": { 1290 | "version": "1.0.2", 1291 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", 1292 | "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", 1293 | "dev": true 1294 | }, 1295 | "is-extglob": { 1296 | "version": "2.1.1", 1297 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1298 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 1299 | "dev": true 1300 | }, 1301 | "is-fullwidth-code-point": { 1302 | "version": "2.0.0", 1303 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1304 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 1305 | "dev": true 1306 | }, 1307 | "is-glob": { 1308 | "version": "4.0.1", 1309 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 1310 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 1311 | "dev": true, 1312 | "requires": { 1313 | "is-extglob": "^2.1.1" 1314 | } 1315 | }, 1316 | "is-interactive": { 1317 | "version": "1.0.0", 1318 | "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", 1319 | "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" 1320 | }, 1321 | "is-map": { 1322 | "version": "2.0.1", 1323 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.1.tgz", 1324 | "integrity": "sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw==", 1325 | "dev": true 1326 | }, 1327 | "is-natural-number": { 1328 | "version": "4.0.1", 1329 | "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", 1330 | "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=" 1331 | }, 1332 | "is-number": { 1333 | "version": "7.0.0", 1334 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1335 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1336 | "dev": true 1337 | }, 1338 | "is-object": { 1339 | "version": "1.0.1", 1340 | "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz", 1341 | "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" 1342 | }, 1343 | "is-plain-obj": { 1344 | "version": "1.1.0", 1345 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", 1346 | "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" 1347 | }, 1348 | "is-regex": { 1349 | "version": "1.1.1", 1350 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", 1351 | "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", 1352 | "dev": true, 1353 | "requires": { 1354 | "has-symbols": "^1.0.1" 1355 | } 1356 | }, 1357 | "is-retry-allowed": { 1358 | "version": "1.2.0", 1359 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", 1360 | "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" 1361 | }, 1362 | "is-set": { 1363 | "version": "2.0.1", 1364 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.1.tgz", 1365 | "integrity": "sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA==", 1366 | "dev": true 1367 | }, 1368 | "is-stream": { 1369 | "version": "1.1.0", 1370 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 1371 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 1372 | }, 1373 | "is-string": { 1374 | "version": "1.0.5", 1375 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", 1376 | "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", 1377 | "dev": true 1378 | }, 1379 | "is-symbol": { 1380 | "version": "1.0.3", 1381 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 1382 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 1383 | "dev": true, 1384 | "requires": { 1385 | "has-symbols": "^1.0.1" 1386 | } 1387 | }, 1388 | "is-url": { 1389 | "version": "1.2.4", 1390 | "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", 1391 | "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==" 1392 | }, 1393 | "isarray": { 1394 | "version": "1.0.0", 1395 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1396 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 1397 | }, 1398 | "isexe": { 1399 | "version": "2.0.0", 1400 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1401 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 1402 | "dev": true 1403 | }, 1404 | "isobject": { 1405 | "version": "4.0.0", 1406 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", 1407 | "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" 1408 | }, 1409 | "isurl": { 1410 | "version": "1.0.0", 1411 | "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", 1412 | "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", 1413 | "requires": { 1414 | "has-to-string-tag-x": "^1.2.0", 1415 | "is-object": "^1.0.1" 1416 | } 1417 | }, 1418 | "iterate-iterator": { 1419 | "version": "1.0.1", 1420 | "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.1.tgz", 1421 | "integrity": "sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==", 1422 | "dev": true 1423 | }, 1424 | "iterate-value": { 1425 | "version": "1.0.2", 1426 | "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz", 1427 | "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", 1428 | "dev": true, 1429 | "requires": { 1430 | "es-get-iterator": "^1.0.2", 1431 | "iterate-iterator": "^1.0.1" 1432 | } 1433 | }, 1434 | "js-yaml": { 1435 | "version": "3.14.0", 1436 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", 1437 | "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", 1438 | "dev": true, 1439 | "requires": { 1440 | "argparse": "^1.0.7", 1441 | "esprima": "^4.0.0" 1442 | } 1443 | }, 1444 | "json-buffer": { 1445 | "version": "3.0.0", 1446 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", 1447 | "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" 1448 | }, 1449 | "keyv": { 1450 | "version": "3.0.0", 1451 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", 1452 | "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", 1453 | "requires": { 1454 | "json-buffer": "3.0.0" 1455 | } 1456 | }, 1457 | "koa-is-json": { 1458 | "version": "1.0.0", 1459 | "resolved": "https://registry.npmjs.org/koa-is-json/-/koa-is-json-1.0.0.tgz", 1460 | "integrity": "sha1-JzwH7c3Ljfaiwat9We52SRRR7BQ=" 1461 | }, 1462 | "locate-path": { 1463 | "version": "6.0.0", 1464 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1465 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1466 | "dev": true, 1467 | "requires": { 1468 | "p-locate": "^5.0.0" 1469 | } 1470 | }, 1471 | "lodash.assignin": { 1472 | "version": "4.2.0", 1473 | "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", 1474 | "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" 1475 | }, 1476 | "lodash.bind": { 1477 | "version": "4.2.1", 1478 | "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", 1479 | "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" 1480 | }, 1481 | "lodash.defaults": { 1482 | "version": "4.2.0", 1483 | "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", 1484 | "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" 1485 | }, 1486 | "lodash.filter": { 1487 | "version": "4.6.0", 1488 | "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", 1489 | "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" 1490 | }, 1491 | "lodash.flatten": { 1492 | "version": "4.4.0", 1493 | "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", 1494 | "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" 1495 | }, 1496 | "lodash.foreach": { 1497 | "version": "4.5.0", 1498 | "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", 1499 | "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" 1500 | }, 1501 | "lodash.map": { 1502 | "version": "4.6.0", 1503 | "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", 1504 | "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" 1505 | }, 1506 | "lodash.merge": { 1507 | "version": "4.6.2", 1508 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1509 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 1510 | }, 1511 | "lodash.pick": { 1512 | "version": "4.4.0", 1513 | "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", 1514 | "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" 1515 | }, 1516 | "lodash.reduce": { 1517 | "version": "4.6.0", 1518 | "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", 1519 | "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" 1520 | }, 1521 | "lodash.reject": { 1522 | "version": "4.6.0", 1523 | "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", 1524 | "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" 1525 | }, 1526 | "lodash.some": { 1527 | "version": "4.6.0", 1528 | "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", 1529 | "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" 1530 | }, 1531 | "log-symbols": { 1532 | "version": "3.0.0", 1533 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", 1534 | "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", 1535 | "requires": { 1536 | "chalk": "^2.4.2" 1537 | } 1538 | }, 1539 | "lowercase-keys": { 1540 | "version": "1.0.1", 1541 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", 1542 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" 1543 | }, 1544 | "make-dir": { 1545 | "version": "1.3.0", 1546 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", 1547 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", 1548 | "requires": { 1549 | "pify": "^3.0.0" 1550 | } 1551 | }, 1552 | "media-typer": { 1553 | "version": "0.3.0", 1554 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1555 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 1556 | }, 1557 | "methods": { 1558 | "version": "1.1.2", 1559 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1560 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 1561 | }, 1562 | "mime": { 1563 | "version": "1.6.0", 1564 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1565 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 1566 | }, 1567 | "mime-db": { 1568 | "version": "1.43.0", 1569 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", 1570 | "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" 1571 | }, 1572 | "mime-types": { 1573 | "version": "2.1.26", 1574 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", 1575 | "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", 1576 | "requires": { 1577 | "mime-db": "1.43.0" 1578 | } 1579 | }, 1580 | "mimic-fn": { 1581 | "version": "2.1.0", 1582 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 1583 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" 1584 | }, 1585 | "mimic-response": { 1586 | "version": "1.0.1", 1587 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", 1588 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" 1589 | }, 1590 | "minimatch": { 1591 | "version": "3.0.4", 1592 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1593 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1594 | "dev": true, 1595 | "requires": { 1596 | "brace-expansion": "^1.1.7" 1597 | } 1598 | }, 1599 | "mocha": { 1600 | "version": "8.1.3", 1601 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-8.1.3.tgz", 1602 | "integrity": "sha512-ZbaYib4hT4PpF4bdSO2DohooKXIn4lDeiYqB+vTmCdr6l2woW0b6H3pf5x4sM5nwQMru9RvjjHYWVGltR50ZBw==", 1603 | "dev": true, 1604 | "requires": { 1605 | "ansi-colors": "4.1.1", 1606 | "browser-stdout": "1.3.1", 1607 | "chokidar": "3.4.2", 1608 | "debug": "4.1.1", 1609 | "diff": "4.0.2", 1610 | "escape-string-regexp": "4.0.0", 1611 | "find-up": "5.0.0", 1612 | "glob": "7.1.6", 1613 | "growl": "1.10.5", 1614 | "he": "1.2.0", 1615 | "js-yaml": "3.14.0", 1616 | "log-symbols": "4.0.0", 1617 | "minimatch": "3.0.4", 1618 | "ms": "2.1.2", 1619 | "object.assign": "4.1.0", 1620 | "promise.allsettled": "1.0.2", 1621 | "serialize-javascript": "4.0.0", 1622 | "strip-json-comments": "3.0.1", 1623 | "supports-color": "7.1.0", 1624 | "which": "2.0.2", 1625 | "wide-align": "1.1.3", 1626 | "workerpool": "6.0.0", 1627 | "yargs": "13.3.2", 1628 | "yargs-parser": "13.1.2", 1629 | "yargs-unparser": "1.6.1" 1630 | }, 1631 | "dependencies": { 1632 | "ansi-styles": { 1633 | "version": "4.2.1", 1634 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", 1635 | "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", 1636 | "dev": true, 1637 | "requires": { 1638 | "@types/color-name": "^1.1.1", 1639 | "color-convert": "^2.0.1" 1640 | } 1641 | }, 1642 | "chalk": { 1643 | "version": "4.1.0", 1644 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", 1645 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", 1646 | "dev": true, 1647 | "requires": { 1648 | "ansi-styles": "^4.1.0", 1649 | "supports-color": "^7.1.0" 1650 | } 1651 | }, 1652 | "color-convert": { 1653 | "version": "2.0.1", 1654 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1655 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1656 | "dev": true, 1657 | "requires": { 1658 | "color-name": "~1.1.4" 1659 | } 1660 | }, 1661 | "color-name": { 1662 | "version": "1.1.4", 1663 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1664 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1665 | "dev": true 1666 | }, 1667 | "debug": { 1668 | "version": "4.1.1", 1669 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", 1670 | "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", 1671 | "dev": true, 1672 | "requires": { 1673 | "ms": "^2.1.1" 1674 | } 1675 | }, 1676 | "escape-string-regexp": { 1677 | "version": "4.0.0", 1678 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1679 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1680 | "dev": true 1681 | }, 1682 | "has-flag": { 1683 | "version": "4.0.0", 1684 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1685 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1686 | "dev": true 1687 | }, 1688 | "log-symbols": { 1689 | "version": "4.0.0", 1690 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", 1691 | "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", 1692 | "dev": true, 1693 | "requires": { 1694 | "chalk": "^4.0.0" 1695 | } 1696 | }, 1697 | "ms": { 1698 | "version": "2.1.2", 1699 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1700 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1701 | "dev": true 1702 | }, 1703 | "supports-color": { 1704 | "version": "7.1.0", 1705 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", 1706 | "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", 1707 | "dev": true, 1708 | "requires": { 1709 | "has-flag": "^4.0.0" 1710 | } 1711 | } 1712 | } 1713 | }, 1714 | "monotonic-timestamp": { 1715 | "version": "0.0.8", 1716 | "resolved": "https://registry.npmjs.org/monotonic-timestamp/-/monotonic-timestamp-0.0.8.tgz", 1717 | "integrity": "sha1-Z5h9AqQcFfVotsCgWIWYndJAK6A=" 1718 | }, 1719 | "ms": { 1720 | "version": "2.0.0", 1721 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1722 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 1723 | }, 1724 | "mute-stream": { 1725 | "version": "0.0.8", 1726 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", 1727 | "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" 1728 | }, 1729 | "negotiator": { 1730 | "version": "0.6.2", 1731 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 1732 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 1733 | }, 1734 | "normalize-path": { 1735 | "version": "3.0.0", 1736 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1737 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1738 | "dev": true 1739 | }, 1740 | "normalize-url": { 1741 | "version": "2.0.1", 1742 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", 1743 | "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", 1744 | "requires": { 1745 | "prepend-http": "^2.0.0", 1746 | "query-string": "^5.0.1", 1747 | "sort-keys": "^2.0.0" 1748 | }, 1749 | "dependencies": { 1750 | "sort-keys": { 1751 | "version": "2.0.0", 1752 | "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", 1753 | "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", 1754 | "requires": { 1755 | "is-plain-obj": "^1.0.0" 1756 | } 1757 | } 1758 | } 1759 | }, 1760 | "npm-conf": { 1761 | "version": "1.1.3", 1762 | "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", 1763 | "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", 1764 | "requires": { 1765 | "config-chain": "^1.1.11", 1766 | "pify": "^3.0.0" 1767 | } 1768 | }, 1769 | "nth-check": { 1770 | "version": "1.0.2", 1771 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", 1772 | "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", 1773 | "requires": { 1774 | "boolbase": "~1.0.0" 1775 | } 1776 | }, 1777 | "object-assign": { 1778 | "version": "4.1.1", 1779 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1780 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 1781 | }, 1782 | "object-inspect": { 1783 | "version": "1.8.0", 1784 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", 1785 | "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", 1786 | "dev": true 1787 | }, 1788 | "object-keys": { 1789 | "version": "1.1.1", 1790 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1791 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 1792 | "dev": true 1793 | }, 1794 | "object.assign": { 1795 | "version": "4.1.0", 1796 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", 1797 | "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", 1798 | "dev": true, 1799 | "requires": { 1800 | "define-properties": "^1.1.2", 1801 | "function-bind": "^1.1.1", 1802 | "has-symbols": "^1.0.0", 1803 | "object-keys": "^1.0.11" 1804 | } 1805 | }, 1806 | "on-finished": { 1807 | "version": "2.3.0", 1808 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1809 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1810 | "requires": { 1811 | "ee-first": "1.1.1" 1812 | } 1813 | }, 1814 | "once": { 1815 | "version": "1.4.0", 1816 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1817 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1818 | "requires": { 1819 | "wrappy": "1" 1820 | } 1821 | }, 1822 | "onetime": { 1823 | "version": "5.1.0", 1824 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", 1825 | "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", 1826 | "requires": { 1827 | "mimic-fn": "^2.1.0" 1828 | } 1829 | }, 1830 | "ora": { 1831 | "version": "4.0.3", 1832 | "resolved": "https://registry.npmjs.org/ora/-/ora-4.0.3.tgz", 1833 | "integrity": "sha512-fnDebVFyz309A73cqCipVL1fBZewq4vwgSHfxh43vVy31mbyoQ8sCH3Oeaog/owYOs/lLlGVPCISQonTneg6Pg==", 1834 | "requires": { 1835 | "chalk": "^3.0.0", 1836 | "cli-cursor": "^3.1.0", 1837 | "cli-spinners": "^2.2.0", 1838 | "is-interactive": "^1.0.0", 1839 | "log-symbols": "^3.0.0", 1840 | "mute-stream": "0.0.8", 1841 | "strip-ansi": "^6.0.0", 1842 | "wcwidth": "^1.0.1" 1843 | }, 1844 | "dependencies": { 1845 | "ansi-styles": { 1846 | "version": "4.2.1", 1847 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", 1848 | "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", 1849 | "requires": { 1850 | "@types/color-name": "^1.1.1", 1851 | "color-convert": "^2.0.1" 1852 | } 1853 | }, 1854 | "chalk": { 1855 | "version": "3.0.0", 1856 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", 1857 | "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", 1858 | "requires": { 1859 | "ansi-styles": "^4.1.0", 1860 | "supports-color": "^7.1.0" 1861 | } 1862 | }, 1863 | "color-convert": { 1864 | "version": "2.0.1", 1865 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1866 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1867 | "requires": { 1868 | "color-name": "~1.1.4" 1869 | } 1870 | }, 1871 | "color-name": { 1872 | "version": "1.1.4", 1873 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1874 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1875 | }, 1876 | "has-flag": { 1877 | "version": "4.0.0", 1878 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1879 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 1880 | }, 1881 | "supports-color": { 1882 | "version": "7.1.0", 1883 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", 1884 | "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", 1885 | "requires": { 1886 | "has-flag": "^4.0.0" 1887 | } 1888 | } 1889 | } 1890 | }, 1891 | "p-cancelable": { 1892 | "version": "0.4.1", 1893 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", 1894 | "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==" 1895 | }, 1896 | "p-event": { 1897 | "version": "2.3.1", 1898 | "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", 1899 | "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", 1900 | "requires": { 1901 | "p-timeout": "^2.0.1" 1902 | } 1903 | }, 1904 | "p-finally": { 1905 | "version": "1.0.0", 1906 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 1907 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" 1908 | }, 1909 | "p-is-promise": { 1910 | "version": "1.1.0", 1911 | "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", 1912 | "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=" 1913 | }, 1914 | "p-limit": { 1915 | "version": "3.0.2", 1916 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz", 1917 | "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==", 1918 | "dev": true, 1919 | "requires": { 1920 | "p-try": "^2.0.0" 1921 | } 1922 | }, 1923 | "p-locate": { 1924 | "version": "5.0.0", 1925 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1926 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1927 | "dev": true, 1928 | "requires": { 1929 | "p-limit": "^3.0.2" 1930 | } 1931 | }, 1932 | "p-timeout": { 1933 | "version": "2.0.1", 1934 | "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", 1935 | "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", 1936 | "requires": { 1937 | "p-finally": "^1.0.0" 1938 | } 1939 | }, 1940 | "p-try": { 1941 | "version": "2.2.0", 1942 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 1943 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 1944 | "dev": true 1945 | }, 1946 | "parseurl": { 1947 | "version": "1.3.3", 1948 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1949 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 1950 | }, 1951 | "path-exists": { 1952 | "version": "4.0.0", 1953 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1954 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1955 | "dev": true 1956 | }, 1957 | "path-is-absolute": { 1958 | "version": "1.0.1", 1959 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1960 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 1961 | "dev": true 1962 | }, 1963 | "pathval": { 1964 | "version": "1.1.0", 1965 | "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", 1966 | "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=", 1967 | "dev": true 1968 | }, 1969 | "pend": { 1970 | "version": "1.2.0", 1971 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", 1972 | "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" 1973 | }, 1974 | "picomatch": { 1975 | "version": "2.2.2", 1976 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 1977 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 1978 | "dev": true 1979 | }, 1980 | "pify": { 1981 | "version": "3.0.0", 1982 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 1983 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 1984 | }, 1985 | "pinkie": { 1986 | "version": "2.0.4", 1987 | "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", 1988 | "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" 1989 | }, 1990 | "pinkie-promise": { 1991 | "version": "2.0.1", 1992 | "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", 1993 | "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", 1994 | "requires": { 1995 | "pinkie": "^2.0.0" 1996 | } 1997 | }, 1998 | "prepend-http": { 1999 | "version": "2.0.0", 2000 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", 2001 | "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" 2002 | }, 2003 | "process-nextick-args": { 2004 | "version": "2.0.1", 2005 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2006 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 2007 | }, 2008 | "promise-polyfill": { 2009 | "version": "1.1.6", 2010 | "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-1.1.6.tgz", 2011 | "integrity": "sha1-zQTv9G9clcOn0EVZHXm14+AfEtc=" 2012 | }, 2013 | "promise.allsettled": { 2014 | "version": "1.0.2", 2015 | "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.2.tgz", 2016 | "integrity": "sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg==", 2017 | "dev": true, 2018 | "requires": { 2019 | "array.prototype.map": "^1.0.1", 2020 | "define-properties": "^1.1.3", 2021 | "es-abstract": "^1.17.0-next.1", 2022 | "function-bind": "^1.1.1", 2023 | "iterate-value": "^1.0.0" 2024 | } 2025 | }, 2026 | "proto-list": { 2027 | "version": "1.2.4", 2028 | "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", 2029 | "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=" 2030 | }, 2031 | "qs": { 2032 | "version": "6.9.3", 2033 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz", 2034 | "integrity": "sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==" 2035 | }, 2036 | "query-string": { 2037 | "version": "5.1.1", 2038 | "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", 2039 | "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", 2040 | "requires": { 2041 | "decode-uri-component": "^0.2.0", 2042 | "object-assign": "^4.1.0", 2043 | "strict-uri-encode": "^1.0.0" 2044 | } 2045 | }, 2046 | "querystring": { 2047 | "version": "0.2.0", 2048 | "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", 2049 | "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" 2050 | }, 2051 | "randombytes": { 2052 | "version": "2.1.0", 2053 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 2054 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 2055 | "dev": true, 2056 | "requires": { 2057 | "safe-buffer": "^5.1.0" 2058 | } 2059 | }, 2060 | "readable-stream": { 2061 | "version": "3.6.0", 2062 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", 2063 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", 2064 | "requires": { 2065 | "inherits": "^2.0.3", 2066 | "string_decoder": "^1.1.1", 2067 | "util-deprecate": "^1.0.1" 2068 | } 2069 | }, 2070 | "readdirp": { 2071 | "version": "3.4.0", 2072 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", 2073 | "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", 2074 | "dev": true, 2075 | "requires": { 2076 | "picomatch": "^2.2.1" 2077 | } 2078 | }, 2079 | "require-directory": { 2080 | "version": "2.1.1", 2081 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2082 | "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", 2083 | "dev": true 2084 | }, 2085 | "require-main-filename": { 2086 | "version": "2.0.0", 2087 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", 2088 | "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", 2089 | "dev": true 2090 | }, 2091 | "responselike": { 2092 | "version": "1.0.2", 2093 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", 2094 | "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", 2095 | "requires": { 2096 | "lowercase-keys": "^1.0.0" 2097 | } 2098 | }, 2099 | "restore-cursor": { 2100 | "version": "3.1.0", 2101 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", 2102 | "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", 2103 | "requires": { 2104 | "onetime": "^5.1.0", 2105 | "signal-exit": "^3.0.2" 2106 | } 2107 | }, 2108 | "safe-buffer": { 2109 | "version": "5.2.0", 2110 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", 2111 | "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" 2112 | }, 2113 | "seek-bzip": { 2114 | "version": "1.0.5", 2115 | "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz", 2116 | "integrity": "sha1-z+kXyz0nS8/6x5J1ivUxc+sfq9w=", 2117 | "requires": { 2118 | "commander": "~2.8.1" 2119 | }, 2120 | "dependencies": { 2121 | "commander": { 2122 | "version": "2.8.1", 2123 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", 2124 | "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", 2125 | "requires": { 2126 | "graceful-readlink": ">= 1.0.0" 2127 | } 2128 | } 2129 | } 2130 | }, 2131 | "selectn": { 2132 | "version": "0.9.6", 2133 | "resolved": "https://registry.npmjs.org/selectn/-/selectn-0.9.6.tgz", 2134 | "integrity": "sha1-vYc6VW0Y+W2FFfyRUD7G/zmP+aI=" 2135 | }, 2136 | "serialize-javascript": { 2137 | "version": "4.0.0", 2138 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", 2139 | "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", 2140 | "dev": true, 2141 | "requires": { 2142 | "randombytes": "^2.1.0" 2143 | } 2144 | }, 2145 | "set-blocking": { 2146 | "version": "2.0.0", 2147 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 2148 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", 2149 | "dev": true 2150 | }, 2151 | "signal-exit": { 2152 | "version": "3.0.3", 2153 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", 2154 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" 2155 | }, 2156 | "sliced": { 2157 | "version": "0.0.5", 2158 | "resolved": "https://registry.npmjs.org/sliced/-/sliced-0.0.5.tgz", 2159 | "integrity": "sha1-XtwETKTrb3gW1Qui/GPiXY/kcH8=" 2160 | }, 2161 | "sort-keys": { 2162 | "version": "1.1.2", 2163 | "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", 2164 | "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", 2165 | "requires": { 2166 | "is-plain-obj": "^1.0.0" 2167 | } 2168 | }, 2169 | "sort-keys-length": { 2170 | "version": "1.0.1", 2171 | "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", 2172 | "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", 2173 | "requires": { 2174 | "sort-keys": "^1.0.0" 2175 | } 2176 | }, 2177 | "sprintf-js": { 2178 | "version": "1.0.3", 2179 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 2180 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", 2181 | "dev": true 2182 | }, 2183 | "statuses": { 2184 | "version": "1.5.0", 2185 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2186 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 2187 | }, 2188 | "stream-to-string": { 2189 | "version": "1.2.0", 2190 | "resolved": "https://registry.npmjs.org/stream-to-string/-/stream-to-string-1.2.0.tgz", 2191 | "integrity": "sha512-8drZlFIKBHSMdX9GCWv8V9AAWnQcTqw0iAI6/GC7UJ0H0SwKeFKjOoZfGY1tOU00GGU7FYZQoJ/ZCUEoXhD7yQ==", 2192 | "requires": { 2193 | "promise-polyfill": "^1.1.6" 2194 | } 2195 | }, 2196 | "strict-uri-encode": { 2197 | "version": "1.1.0", 2198 | "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", 2199 | "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" 2200 | }, 2201 | "string-width": { 2202 | "version": "2.1.1", 2203 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 2204 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 2205 | "dev": true, 2206 | "requires": { 2207 | "is-fullwidth-code-point": "^2.0.0", 2208 | "strip-ansi": "^4.0.0" 2209 | }, 2210 | "dependencies": { 2211 | "ansi-regex": { 2212 | "version": "3.0.0", 2213 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 2214 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 2215 | "dev": true 2216 | }, 2217 | "strip-ansi": { 2218 | "version": "4.0.0", 2219 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 2220 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 2221 | "dev": true, 2222 | "requires": { 2223 | "ansi-regex": "^3.0.0" 2224 | } 2225 | } 2226 | } 2227 | }, 2228 | "string.prototype.trimend": { 2229 | "version": "1.0.1", 2230 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", 2231 | "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", 2232 | "dev": true, 2233 | "requires": { 2234 | "define-properties": "^1.1.3", 2235 | "es-abstract": "^1.17.5" 2236 | } 2237 | }, 2238 | "string.prototype.trimstart": { 2239 | "version": "1.0.1", 2240 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", 2241 | "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", 2242 | "dev": true, 2243 | "requires": { 2244 | "define-properties": "^1.1.3", 2245 | "es-abstract": "^1.17.5" 2246 | } 2247 | }, 2248 | "string_decoder": { 2249 | "version": "1.3.0", 2250 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2251 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2252 | "requires": { 2253 | "safe-buffer": "~5.2.0" 2254 | } 2255 | }, 2256 | "strip-ansi": { 2257 | "version": "6.0.0", 2258 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", 2259 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", 2260 | "requires": { 2261 | "ansi-regex": "^5.0.0" 2262 | } 2263 | }, 2264 | "strip-dirs": { 2265 | "version": "2.1.0", 2266 | "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", 2267 | "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", 2268 | "requires": { 2269 | "is-natural-number": "^4.0.1" 2270 | } 2271 | }, 2272 | "strip-json-comments": { 2273 | "version": "3.0.1", 2274 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", 2275 | "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==", 2276 | "dev": true 2277 | }, 2278 | "strip-outer": { 2279 | "version": "1.0.1", 2280 | "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", 2281 | "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", 2282 | "requires": { 2283 | "escape-string-regexp": "^1.0.2" 2284 | } 2285 | }, 2286 | "superagent": { 2287 | "version": "3.8.3", 2288 | "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", 2289 | "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", 2290 | "requires": { 2291 | "component-emitter": "^1.2.0", 2292 | "cookiejar": "^2.1.0", 2293 | "debug": "^3.1.0", 2294 | "extend": "^3.0.0", 2295 | "form-data": "^2.3.1", 2296 | "formidable": "^1.2.0", 2297 | "methods": "^1.1.1", 2298 | "mime": "^1.4.1", 2299 | "qs": "^6.5.1", 2300 | "readable-stream": "^2.3.5" 2301 | }, 2302 | "dependencies": { 2303 | "debug": { 2304 | "version": "3.2.6", 2305 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 2306 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 2307 | "requires": { 2308 | "ms": "^2.1.1" 2309 | } 2310 | }, 2311 | "ms": { 2312 | "version": "2.1.2", 2313 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2314 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2315 | }, 2316 | "readable-stream": { 2317 | "version": "2.3.7", 2318 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", 2319 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", 2320 | "requires": { 2321 | "core-util-is": "~1.0.0", 2322 | "inherits": "~2.0.3", 2323 | "isarray": "~1.0.0", 2324 | "process-nextick-args": "~2.0.0", 2325 | "safe-buffer": "~5.1.1", 2326 | "string_decoder": "~1.1.1", 2327 | "util-deprecate": "~1.0.1" 2328 | } 2329 | }, 2330 | "safe-buffer": { 2331 | "version": "5.1.2", 2332 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2333 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2334 | }, 2335 | "string_decoder": { 2336 | "version": "1.1.1", 2337 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2338 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2339 | "requires": { 2340 | "safe-buffer": "~5.1.0" 2341 | } 2342 | } 2343 | } 2344 | }, 2345 | "supports-color": { 2346 | "version": "5.5.0", 2347 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2348 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2349 | "requires": { 2350 | "has-flag": "^3.0.0" 2351 | } 2352 | }, 2353 | "tar-stream": { 2354 | "version": "1.6.2", 2355 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", 2356 | "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", 2357 | "requires": { 2358 | "bl": "^1.0.0", 2359 | "buffer-alloc": "^1.2.0", 2360 | "end-of-stream": "^1.0.0", 2361 | "fs-constants": "^1.0.0", 2362 | "readable-stream": "^2.3.0", 2363 | "to-buffer": "^1.1.1", 2364 | "xtend": "^4.0.0" 2365 | }, 2366 | "dependencies": { 2367 | "readable-stream": { 2368 | "version": "2.3.7", 2369 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", 2370 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", 2371 | "requires": { 2372 | "core-util-is": "~1.0.0", 2373 | "inherits": "~2.0.3", 2374 | "isarray": "~1.0.0", 2375 | "process-nextick-args": "~2.0.0", 2376 | "safe-buffer": "~5.1.1", 2377 | "string_decoder": "~1.1.1", 2378 | "util-deprecate": "~1.0.1" 2379 | } 2380 | }, 2381 | "safe-buffer": { 2382 | "version": "5.1.2", 2383 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2384 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2385 | }, 2386 | "string_decoder": { 2387 | "version": "1.1.1", 2388 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2389 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2390 | "requires": { 2391 | "safe-buffer": "~5.1.0" 2392 | } 2393 | } 2394 | } 2395 | }, 2396 | "through": { 2397 | "version": "2.3.8", 2398 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2399 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" 2400 | }, 2401 | "timed-out": { 2402 | "version": "4.0.1", 2403 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", 2404 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" 2405 | }, 2406 | "to-buffer": { 2407 | "version": "1.1.1", 2408 | "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", 2409 | "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" 2410 | }, 2411 | "to-regex-range": { 2412 | "version": "5.0.1", 2413 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2414 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2415 | "dev": true, 2416 | "requires": { 2417 | "is-number": "^7.0.0" 2418 | } 2419 | }, 2420 | "trim-repeated": { 2421 | "version": "1.0.0", 2422 | "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", 2423 | "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", 2424 | "requires": { 2425 | "escape-string-regexp": "^1.0.2" 2426 | } 2427 | }, 2428 | "tunnel-agent": { 2429 | "version": "0.6.0", 2430 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 2431 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 2432 | "requires": { 2433 | "safe-buffer": "^5.0.1" 2434 | } 2435 | }, 2436 | "type-detect": { 2437 | "version": "4.0.8", 2438 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 2439 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 2440 | "dev": true 2441 | }, 2442 | "type-is": { 2443 | "version": "1.6.18", 2444 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2445 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2446 | "requires": { 2447 | "media-typer": "0.3.0", 2448 | "mime-types": "~2.1.24" 2449 | } 2450 | }, 2451 | "unbzip2-stream": { 2452 | "version": "1.3.3", 2453 | "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.3.3.tgz", 2454 | "integrity": "sha512-fUlAF7U9Ah1Q6EieQ4x4zLNejrRvDWUYmxXUpN3uziFYCHapjWFaCAnreY9bGgxzaMCFAPPpYNng57CypwJVhg==", 2455 | "requires": { 2456 | "buffer": "^5.2.1", 2457 | "through": "^2.3.8" 2458 | } 2459 | }, 2460 | "url-parse-lax": { 2461 | "version": "3.0.0", 2462 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", 2463 | "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", 2464 | "requires": { 2465 | "prepend-http": "^2.0.0" 2466 | } 2467 | }, 2468 | "url-to-options": { 2469 | "version": "1.0.1", 2470 | "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", 2471 | "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" 2472 | }, 2473 | "util": { 2474 | "version": "0.10.3", 2475 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", 2476 | "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", 2477 | "requires": { 2478 | "inherits": "2.0.1" 2479 | }, 2480 | "dependencies": { 2481 | "inherits": { 2482 | "version": "2.0.1", 2483 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", 2484 | "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" 2485 | } 2486 | } 2487 | }, 2488 | "util-deprecate": { 2489 | "version": "1.0.2", 2490 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2491 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 2492 | }, 2493 | "vary": { 2494 | "version": "1.1.2", 2495 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 2496 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 2497 | }, 2498 | "wcwidth": { 2499 | "version": "1.0.1", 2500 | "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", 2501 | "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", 2502 | "requires": { 2503 | "defaults": "^1.0.3" 2504 | } 2505 | }, 2506 | "which": { 2507 | "version": "2.0.2", 2508 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2509 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2510 | "dev": true, 2511 | "requires": { 2512 | "isexe": "^2.0.0" 2513 | } 2514 | }, 2515 | "which-module": { 2516 | "version": "2.0.0", 2517 | "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", 2518 | "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", 2519 | "dev": true 2520 | }, 2521 | "wide-align": { 2522 | "version": "1.1.3", 2523 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", 2524 | "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", 2525 | "dev": true, 2526 | "requires": { 2527 | "string-width": "^1.0.2 || 2" 2528 | } 2529 | }, 2530 | "workerpool": { 2531 | "version": "6.0.0", 2532 | "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.0.0.tgz", 2533 | "integrity": "sha512-fU2OcNA/GVAJLLyKUoHkAgIhKb0JoCpSjLC/G2vYKxUjVmQwGbRVeoPJ1a8U4pnVofz4AQV5Y/NEw8oKqxEBtA==", 2534 | "dev": true 2535 | }, 2536 | "wrap-ansi": { 2537 | "version": "5.1.0", 2538 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", 2539 | "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", 2540 | "dev": true, 2541 | "requires": { 2542 | "ansi-styles": "^3.2.0", 2543 | "string-width": "^3.0.0", 2544 | "strip-ansi": "^5.0.0" 2545 | }, 2546 | "dependencies": { 2547 | "ansi-regex": { 2548 | "version": "4.1.0", 2549 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2550 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2551 | "dev": true 2552 | }, 2553 | "string-width": { 2554 | "version": "3.1.0", 2555 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2556 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2557 | "dev": true, 2558 | "requires": { 2559 | "emoji-regex": "^7.0.1", 2560 | "is-fullwidth-code-point": "^2.0.0", 2561 | "strip-ansi": "^5.1.0" 2562 | } 2563 | }, 2564 | "strip-ansi": { 2565 | "version": "5.2.0", 2566 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2567 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2568 | "dev": true, 2569 | "requires": { 2570 | "ansi-regex": "^4.1.0" 2571 | } 2572 | } 2573 | } 2574 | }, 2575 | "wrap-fn": { 2576 | "version": "0.1.5", 2577 | "resolved": "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz", 2578 | "integrity": "sha1-8htuQQFv9KfjFyDbxjoJAWvfmEU=", 2579 | "requires": { 2580 | "co": "3.1.0" 2581 | } 2582 | }, 2583 | "wrappy": { 2584 | "version": "1.0.2", 2585 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2586 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 2587 | }, 2588 | "x-ray": { 2589 | "version": "2.3.4", 2590 | "resolved": "https://registry.npmjs.org/x-ray/-/x-ray-2.3.4.tgz", 2591 | "integrity": "sha512-QyprpnQb70ySaJ9LttmcS2R0e5d8oMiyDZ3bQ3bH/+dk5yUjt4obB9BUHz8/iGi+e7AZMxZOK60k/7x2/QiEJg==", 2592 | "requires": { 2593 | "batch": "~0.6.0", 2594 | "bluebird": "^3.4.7", 2595 | "chalk": "~2.4.0", 2596 | "cheerio": "~0.22.0", 2597 | "debug": "~4.1.0", 2598 | "enstore": "~1.0.1", 2599 | "is-url": "~1.2.0", 2600 | "isobject": "~4.0.0", 2601 | "object-assign": "~4.1.0", 2602 | "stream-to-string": "^1.1.0", 2603 | "x-ray-crawler": "~2.0.1", 2604 | "x-ray-parse": "~1.0.1" 2605 | }, 2606 | "dependencies": { 2607 | "debug": { 2608 | "version": "4.1.1", 2609 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", 2610 | "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", 2611 | "requires": { 2612 | "ms": "^2.1.1" 2613 | } 2614 | }, 2615 | "ms": { 2616 | "version": "2.1.2", 2617 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2618 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2619 | } 2620 | } 2621 | }, 2622 | "x-ray-crawler": { 2623 | "version": "2.0.4", 2624 | "resolved": "https://registry.npmjs.org/x-ray-crawler/-/x-ray-crawler-2.0.4.tgz", 2625 | "integrity": "sha512-+xMF/MPZHjEqvJzmK8K8HztmJQgPQZk6ZaVNWjxVx7VUDdjkWah2crWvJoCtLBHr1Nw2qs/MjSQxDV/nk9POHA==", 2626 | "requires": { 2627 | "cheerio": "^0.22.0", 2628 | "debug": "^2.1.3", 2629 | "delegates": "^0.1.0", 2630 | "emitter-component": "^1.1.1", 2631 | "enqueue": "^1.0.2", 2632 | "http-context": "^1.1.0", 2633 | "ms": "^2.0.0", 2634 | "selectn": "^0.9.6", 2635 | "sliced": "0.0.5", 2636 | "superagent": "^3.6.0", 2637 | "wrap-fn": "^0.1.4", 2638 | "x-ray-parse": "^1.0.0", 2639 | "yieldly": "0.0.1" 2640 | } 2641 | }, 2642 | "x-ray-parse": { 2643 | "version": "1.0.1", 2644 | "resolved": "https://registry.npmjs.org/x-ray-parse/-/x-ray-parse-1.0.1.tgz", 2645 | "integrity": "sha1-CND/xeOtE5wRBQr5rqR2CUnylpQ=", 2646 | "requires": { 2647 | "format-parser": "0.0.2" 2648 | } 2649 | }, 2650 | "xtend": { 2651 | "version": "4.0.2", 2652 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 2653 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 2654 | }, 2655 | "y18n": { 2656 | "version": "4.0.0", 2657 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", 2658 | "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", 2659 | "dev": true 2660 | }, 2661 | "yargs": { 2662 | "version": "13.3.2", 2663 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", 2664 | "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", 2665 | "dev": true, 2666 | "requires": { 2667 | "cliui": "^5.0.0", 2668 | "find-up": "^3.0.0", 2669 | "get-caller-file": "^2.0.1", 2670 | "require-directory": "^2.1.1", 2671 | "require-main-filename": "^2.0.0", 2672 | "set-blocking": "^2.0.0", 2673 | "string-width": "^3.0.0", 2674 | "which-module": "^2.0.0", 2675 | "y18n": "^4.0.0", 2676 | "yargs-parser": "^13.1.2" 2677 | }, 2678 | "dependencies": { 2679 | "ansi-regex": { 2680 | "version": "4.1.0", 2681 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2682 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2683 | "dev": true 2684 | }, 2685 | "find-up": { 2686 | "version": "3.0.0", 2687 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 2688 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 2689 | "dev": true, 2690 | "requires": { 2691 | "locate-path": "^3.0.0" 2692 | } 2693 | }, 2694 | "locate-path": { 2695 | "version": "3.0.0", 2696 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 2697 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 2698 | "dev": true, 2699 | "requires": { 2700 | "p-locate": "^3.0.0", 2701 | "path-exists": "^3.0.0" 2702 | } 2703 | }, 2704 | "p-limit": { 2705 | "version": "2.3.0", 2706 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2707 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2708 | "dev": true, 2709 | "requires": { 2710 | "p-try": "^2.0.0" 2711 | } 2712 | }, 2713 | "p-locate": { 2714 | "version": "3.0.0", 2715 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 2716 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 2717 | "dev": true, 2718 | "requires": { 2719 | "p-limit": "^2.0.0" 2720 | } 2721 | }, 2722 | "path-exists": { 2723 | "version": "3.0.0", 2724 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 2725 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 2726 | "dev": true 2727 | }, 2728 | "string-width": { 2729 | "version": "3.1.0", 2730 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2731 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2732 | "dev": true, 2733 | "requires": { 2734 | "emoji-regex": "^7.0.1", 2735 | "is-fullwidth-code-point": "^2.0.0", 2736 | "strip-ansi": "^5.1.0" 2737 | } 2738 | }, 2739 | "strip-ansi": { 2740 | "version": "5.2.0", 2741 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2742 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2743 | "dev": true, 2744 | "requires": { 2745 | "ansi-regex": "^4.1.0" 2746 | } 2747 | } 2748 | } 2749 | }, 2750 | "yargs-parser": { 2751 | "version": "13.1.2", 2752 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", 2753 | "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", 2754 | "dev": true, 2755 | "requires": { 2756 | "camelcase": "^5.0.0", 2757 | "decamelize": "^1.2.0" 2758 | } 2759 | }, 2760 | "yargs-unparser": { 2761 | "version": "1.6.1", 2762 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.1.tgz", 2763 | "integrity": "sha512-qZV14lK9MWsGCmcr7u5oXGH0dbGqZAIxTDrWXZDo5zUr6b6iUmelNKO6x6R1dQT24AH3LgRxJpr8meWy2unolA==", 2764 | "dev": true, 2765 | "requires": { 2766 | "camelcase": "^5.3.1", 2767 | "decamelize": "^1.2.0", 2768 | "flat": "^4.1.0", 2769 | "is-plain-obj": "^1.1.0", 2770 | "yargs": "^14.2.3" 2771 | }, 2772 | "dependencies": { 2773 | "ansi-regex": { 2774 | "version": "4.1.0", 2775 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2776 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2777 | "dev": true 2778 | }, 2779 | "find-up": { 2780 | "version": "3.0.0", 2781 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 2782 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 2783 | "dev": true, 2784 | "requires": { 2785 | "locate-path": "^3.0.0" 2786 | } 2787 | }, 2788 | "locate-path": { 2789 | "version": "3.0.0", 2790 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 2791 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 2792 | "dev": true, 2793 | "requires": { 2794 | "p-locate": "^3.0.0", 2795 | "path-exists": "^3.0.0" 2796 | } 2797 | }, 2798 | "p-limit": { 2799 | "version": "2.3.0", 2800 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2801 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2802 | "dev": true, 2803 | "requires": { 2804 | "p-try": "^2.0.0" 2805 | } 2806 | }, 2807 | "p-locate": { 2808 | "version": "3.0.0", 2809 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 2810 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 2811 | "dev": true, 2812 | "requires": { 2813 | "p-limit": "^2.0.0" 2814 | } 2815 | }, 2816 | "path-exists": { 2817 | "version": "3.0.0", 2818 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 2819 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 2820 | "dev": true 2821 | }, 2822 | "string-width": { 2823 | "version": "3.1.0", 2824 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2825 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2826 | "dev": true, 2827 | "requires": { 2828 | "emoji-regex": "^7.0.1", 2829 | "is-fullwidth-code-point": "^2.0.0", 2830 | "strip-ansi": "^5.1.0" 2831 | } 2832 | }, 2833 | "strip-ansi": { 2834 | "version": "5.2.0", 2835 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2836 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2837 | "dev": true, 2838 | "requires": { 2839 | "ansi-regex": "^4.1.0" 2840 | } 2841 | }, 2842 | "yargs": { 2843 | "version": "14.2.3", 2844 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz", 2845 | "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", 2846 | "dev": true, 2847 | "requires": { 2848 | "cliui": "^5.0.0", 2849 | "decamelize": "^1.2.0", 2850 | "find-up": "^3.0.0", 2851 | "get-caller-file": "^2.0.1", 2852 | "require-directory": "^2.1.1", 2853 | "require-main-filename": "^2.0.0", 2854 | "set-blocking": "^2.0.0", 2855 | "string-width": "^3.0.0", 2856 | "which-module": "^2.0.0", 2857 | "y18n": "^4.0.0", 2858 | "yargs-parser": "^15.0.1" 2859 | } 2860 | }, 2861 | "yargs-parser": { 2862 | "version": "15.0.1", 2863 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz", 2864 | "integrity": "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==", 2865 | "dev": true, 2866 | "requires": { 2867 | "camelcase": "^5.0.0", 2868 | "decamelize": "^1.2.0" 2869 | } 2870 | } 2871 | } 2872 | }, 2873 | "yauzl": { 2874 | "version": "2.10.0", 2875 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", 2876 | "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", 2877 | "requires": { 2878 | "buffer-crc32": "~0.2.3", 2879 | "fd-slicer": "~1.1.0" 2880 | } 2881 | }, 2882 | "yieldly": { 2883 | "version": "0.0.1", 2884 | "resolved": "https://registry.npmjs.org/yieldly/-/yieldly-0.0.1.tgz", 2885 | "integrity": "sha1-fWTIVuTxzTw1p4+G4KKWDmp9BHQ=", 2886 | "requires": { 2887 | "is-browser": "2.0.1" 2888 | } 2889 | } 2890 | } 2891 | } 2892 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cyberdrop-cli", 3 | "version": "0.1.7", 4 | "description": "cyberdrop album downloader", 5 | "main": "index.js", 6 | "publishConfig": { 7 | "access": "public" 8 | }, 9 | "bin": { 10 | "cyberdrop-cli": "bin/command.js", 11 | "cy": "bin/command.js" 12 | }, 13 | "scripts": { 14 | "start": "node index.js", 15 | "test": "mocha --timeout 10000" 16 | }, 17 | "keywords": [ 18 | "cyberdrop", 19 | "cli", 20 | "downloader" 21 | ], 22 | "repository": { 23 | "type": "git", 24 | "url": "https://github.com/izqalan/CyberDrop-cli" 25 | }, 26 | "author": "izqalan", 27 | "license": "GPL-3.0", 28 | "dependencies": { 29 | "commander": "^5.0.0", 30 | "download": "^7.1.0", 31 | "esm": "^3.2.25", 32 | "ora": "^4.0.3", 33 | "x-ray": "^2.3.4" 34 | }, 35 | "devDependencies": { 36 | "chai": "^4.2.0", 37 | "mocha": "^8.1.3" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/functions.js: -------------------------------------------------------------------------------- 1 | var Xray = require('x-ray') 2 | var xray = Xray() 3 | const download = require('download'); 4 | var path = require('path') 5 | const ora = require('ora'); 6 | const fs = require('fs') 7 | // import fs from 'fs'; 8 | 9 | module.exports.download = head; 10 | 11 | // only exporting this for tests 12 | module.exports.getTitle = getTitle; 13 | module.exports.extractLink = extractLink; 14 | 15 | const spinner = ora({ 16 | text: 'fetching...', 17 | stream: process.stdout, 18 | isEnabled: true, 19 | }); 20 | 21 | async function head(url, option, dir){ 22 | spinner.start(); 23 | let TITLE = await getTitle(url) 24 | let DOWNLOAD_DIR = await setPath(dir, TITLE) 25 | links = await extractLink(url) 26 | downloadImage(links, option, DOWNLOAD_DIR) 27 | } 28 | 29 | // extracts all pics from album 30 | function extractLink(url) { 31 | try { 32 | return xray(url, 'a.image', [{ 33 | image: '@href' 34 | }]) 35 | } catch (error) { 36 | console.log(error) 37 | } 38 | } 39 | 40 | async function setPath(dest, title){ 41 | try { 42 | if(dest === '.'){ 43 | return path.join(process.cwd(), title); 44 | }else if(dest){ 45 | if (fs.existsSync(dest)) { 46 | return path.join(dest, title) 47 | } 48 | throw "cannot find directory. Destination set to Downloads" 49 | }else{ 50 | return path.join(process.env.HOME || process.env.USERPROFILE, 'Downloads/'+title) 51 | } 52 | } catch (error) { 53 | spinner.fail(error) 54 | return path.join(process.env.HOME || process.env.USERPROFILE, 'Downloads/'+title) 55 | } 56 | } 57 | 58 | function getTitle(url){ 59 | try { 60 | return xray(url, 'div h1', '@title'); 61 | } catch (error) { 62 | console.log(error) 63 | } 64 | } 65 | 66 | async function downloadImage(links, option, dir){ 67 | if (option){ 68 | parallelDownload(links, dir) 69 | }else{ 70 | normalDownload(links, dir) 71 | } 72 | } 73 | 74 | function parallelDownload(links, dir){ 75 | // 14.64s | 10.9 MB @ 110Mbps 76 | spinner.start('Downloading') 77 | for (const i in links){ 78 | download(links[i].image, dir).then(() => spinner.succeed('Image Downloaded')) 79 | } 80 | } 81 | 82 | async function normalDownload(links, dir){ 83 | // 32.90s | 10.9 MB @ 110Mbps 84 | for (const i in links){ 85 | let counter = i; 86 | counter++; 87 | spinner.text = 'Downloading '+ counter +'/'+links.length 88 | spinner.start() 89 | await download(links[i].image, dir).then(() => { 90 | spinner.text = 'Downloading '+ counter +'/'+links.length 91 | }) 92 | } 93 | spinner.succeed('Album downloaded').stop(); 94 | } 95 | 96 | -------------------------------------------------------------------------------- /test/test.spec.js: -------------------------------------------------------------------------------- 1 | let assert = require('chai').assert 2 | const { getTitle, extractLink } = require('../src/functions') 3 | const TEST_URL = 'https://cyberdrop.me/a/uarEwZgN'; 4 | 5 | describe('Get album title', () => { 6 | let title; 7 | before(async () => { 8 | title = await getTitle(TEST_URL); 9 | assert.equal(title, title); 10 | }) 11 | it('should find the title', () => { 12 | assert.exists(title); 13 | }); 14 | it('Title should match', () => { 15 | assert.equal(title, 'SFW', 'title does not match'); 16 | }); 17 | 18 | }) 19 | 20 | describe('Get album items', () => { 21 | let urls; 22 | before(async () => { 23 | urls = await extractLink(TEST_URL); 24 | }) 25 | it('should find the images url', () => { 26 | assert.exists(urls); 27 | }); 28 | it('should match the number of images in the album', () => { 29 | assert.equal(urls.length, 2); 30 | }); 31 | }) --------------------------------------------------------------------------------