├── .gitignore ├── .travis.yml ├── .travis ├── docker-compose.yml └── docker-push.sh ├── Dockerfile ├── LICENSE.md ├── README.md ├── app.js ├── dist └── .gitkeep ├── docker-compose.yml ├── lib ├── browser.js ├── dispatcher.js ├── proxy.js ├── puppeteer.js ├── server.js └── stores │ └── elasticsearch-store.js ├── package.json ├── scripts └── bootstrap.sh ├── settings └── kibana-settings.json ├── src ├── bootstrap.js ├── client.js ├── puppet.js └── types.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | config/settings.json 4 | !dist/.gitkeep 5 | !.travis/wait-for-it.sh 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: bash 2 | 3 | env: 4 | global: 5 | - IMAGE_NAME='wicker25/whatstrapp' 6 | 7 | addons: 8 | apt: 9 | packages: 10 | - realpath 11 | 12 | install: 13 | - docker-compose -f .travis/docker-compose.yml build 14 | 15 | before_script: 16 | - export VERSION=$(grep 'ENV VERSION' ./Dockerfile | awk '{ print $3 }') 17 | - curl -L 'https://github.com/vishnubob/wait-for-it/blob/master/wait-for-it.sh?raw=true' -o .travis/wait-for-it.sh 18 | - chmod +x .travis/wait-for-it.sh 19 | 20 | script: 21 | - docker-compose -f .travis/docker-compose.yml up -d 22 | - .travis/wait-for-it.sh --timeout=120 127.0.0.1:8025 23 | - .travis/wait-for-it.sh --timeout=120 127.0.0.1:5601 24 | 25 | after_script: 26 | - docker-compose -f .travis/docker-compose.yml stop 27 | - docker-compose -f .travis/docker-compose.yml rm -f 28 | 29 | before_deploy: 30 | - echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin 31 | - docker tag "${IMAGE_NAME}" "${IMAGE_NAME}:${VERSION}" 32 | - docker tag "${IMAGE_NAME}" "${IMAGE_NAME}:latest" 33 | 34 | deploy: 35 | skip_cleanup: true 36 | provider: script 37 | script: .travis/docker-push.sh 38 | on: 39 | branch: master 40 | -------------------------------------------------------------------------------- /.travis/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | services: 3 | whatstrapp: 4 | build: .. 5 | image: wicker25/whatstrapp 6 | ports: 7 | - 8025:8025 8 | - 8085:8085 9 | networks: 10 | - internal-network 11 | environment: 12 | ELASTICSEARCH_URL: elasticsearch:9200 13 | KIBANA_URL: kibana:5601 14 | depends_on: 15 | - elasticsearch 16 | - kibana 17 | elasticsearch: 18 | hostname: elasticsearch 19 | image: docker.elastic.co/elasticsearch/elasticsearch:6.4.1 20 | ports: 21 | - 9200:9200 22 | networks: 23 | - internal-network 24 | kibana: 25 | hostname: kibana 26 | image: docker.elastic.co/kibana/kibana:6.4.1 27 | ports: 28 | - 5601:5601 29 | networks: 30 | - internal-network 31 | depends_on: 32 | - elasticsearch 33 | networks: 34 | internal-network: 35 | driver: bridge 36 | -------------------------------------------------------------------------------- /.travis/docker-push.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | docker push "${IMAGE_NAME}:${VERSION}" 3 | docker push "${IMAGE_NAME}:latest" 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:8-slim 2 | 3 | ENV VERSION 0.1.5 4 | 5 | RUN apt-get update && apt-get install -yq libgconf-2-4 6 | 7 | RUN apt-get update && apt-get install -y wget --no-install-recommends \ 8 | && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ 9 | && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ 10 | && apt-get update \ 11 | && apt-get install -y google-chrome-unstable ttf-freefont --no-install-recommends \ 12 | && rm -rf /var/lib/apt/lists/* \ 13 | && apt-get purge --auto-remove -y curl \ 14 | && rm -rf /src/*.deb 15 | 16 | RUN apt-get update && apt-get install -y curl 17 | 18 | ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 /sbin/dumb-init 19 | RUN chmod +x /sbin/dumb-init 20 | 21 | WORKDIR /app 22 | COPY . . 23 | RUN ["yarn", "install"] 24 | 25 | EXPOSE 8025 26 | EXPOSE 8085 27 | 28 | ENTRYPOINT ["dumb-init", "--"] 29 | CMD ["yarn", "start"] 30 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ### GNU GENERAL PUBLIC LICENSE 2 | 3 | Version 3, 29 June 2007 4 | 5 | Copyright (C) 2007 Free Software Foundation, Inc. 6 | 7 | 8 | Everyone is permitted to copy and distribute verbatim copies of this 9 | license document, but changing it is not allowed. 10 | 11 | ### Preamble 12 | 13 | The GNU General Public License is a free, copyleft license for 14 | software and other kinds of works. 15 | 16 | The licenses for most software and other practical works are designed 17 | to take away your freedom to share and change the works. By contrast, 18 | the GNU General Public License is intended to guarantee your freedom 19 | to share and change all versions of a program--to make sure it remains 20 | free software for all its users. We, the Free Software Foundation, use 21 | the GNU General Public License for most of our software; it applies 22 | also to any other work released this way by its authors. You can apply 23 | it to your programs, too. 24 | 25 | When we speak of free software, we are referring to freedom, not 26 | price. Our General Public Licenses are designed to make sure that you 27 | have the freedom to distribute copies of free software (and charge for 28 | them if you wish), that you receive source code or can get it if you 29 | want it, that you can change the software or use pieces of it in new 30 | free programs, and that you know you can do these things. 31 | 32 | To protect your rights, we need to prevent others from denying you 33 | these rights or asking you to surrender the rights. Therefore, you 34 | have certain responsibilities if you distribute copies of the 35 | software, or if you modify it: responsibilities to respect the freedom 36 | of others. 37 | 38 | For example, if you distribute copies of such a program, whether 39 | gratis or for a fee, you must pass on to the recipients the same 40 | freedoms that you received. You must make sure that they, too, receive 41 | or can get the source code. And you must show them these terms so they 42 | know their rights. 43 | 44 | Developers that use the GNU GPL protect your rights with two steps: 45 | (1) assert copyright on the software, and (2) offer you this License 46 | giving you legal permission to copy, distribute and/or modify it. 47 | 48 | For the developers' and authors' protection, the GPL clearly explains 49 | that there is no warranty for this free software. For both users' and 50 | authors' sake, the GPL requires that modified versions be marked as 51 | changed, so that their problems will not be attributed erroneously to 52 | authors of previous versions. 53 | 54 | Some devices are designed to deny users access to install or run 55 | modified versions of the software inside them, although the 56 | manufacturer can do so. This is fundamentally incompatible with the 57 | aim of protecting users' freedom to change the software. The 58 | systematic pattern of such abuse occurs in the area of products for 59 | individuals to use, which is precisely where it is most unacceptable. 60 | Therefore, we have designed this version of the GPL to prohibit the 61 | practice for those products. If such problems arise substantially in 62 | other domains, we stand ready to extend this provision to those 63 | domains in future versions of the GPL, as needed to protect the 64 | freedom of users. 65 | 66 | Finally, every program is threatened constantly by software patents. 67 | States should not allow patents to restrict development and use of 68 | software on general-purpose computers, but in those that do, we wish 69 | to avoid the special danger that patents applied to a free program 70 | could make it effectively proprietary. To prevent this, the GPL 71 | assures that patents cannot be used to render the program non-free. 72 | 73 | The precise terms and conditions for copying, distribution and 74 | modification follow. 75 | 76 | ### TERMS AND CONDITIONS 77 | 78 | #### 0. Definitions. 79 | 80 | "This License" refers to version 3 of the GNU General Public License. 81 | 82 | "Copyright" also means copyright-like laws that apply to other kinds 83 | of works, such as semiconductor masks. 84 | 85 | "The Program" refers to any copyrightable work licensed under this 86 | License. Each licensee is addressed as "you". "Licensees" and 87 | "recipients" may be individuals or organizations. 88 | 89 | To "modify" a work means to copy from or adapt all or part of the work 90 | in a fashion requiring copyright permission, other than the making of 91 | an exact copy. The resulting work is called a "modified version" of 92 | the earlier work or a work "based on" the earlier work. 93 | 94 | A "covered work" means either the unmodified Program or a work based 95 | on the Program. 96 | 97 | To "propagate" a work means to do anything with it that, without 98 | permission, would make you directly or secondarily liable for 99 | infringement under applicable copyright law, except executing it on a 100 | computer or modifying a private copy. Propagation includes copying, 101 | distribution (with or without modification), making available to the 102 | public, and in some countries other activities as well. 103 | 104 | To "convey" a work means any kind of propagation that enables other 105 | parties to make or receive copies. Mere interaction with a user 106 | through a computer network, with no transfer of a copy, is not 107 | conveying. 108 | 109 | An interactive user interface displays "Appropriate Legal Notices" to 110 | the extent that it includes a convenient and prominently visible 111 | feature that (1) displays an appropriate copyright notice, and (2) 112 | tells the user that there is no warranty for the work (except to the 113 | extent that warranties are provided), that licensees may convey the 114 | work under this License, and how to view a copy of this License. If 115 | the interface presents a list of user commands or options, such as a 116 | menu, a prominent item in the list meets this criterion. 117 | 118 | #### 1. Source Code. 119 | 120 | The "source code" for a work means the preferred form of the work for 121 | making modifications to it. "Object code" means any non-source form of 122 | a work. 123 | 124 | A "Standard Interface" means an interface that either is an official 125 | standard defined by a recognized standards body, or, in the case of 126 | interfaces specified for a particular programming language, one that 127 | is widely used among developers working in that language. 128 | 129 | The "System Libraries" of an executable work include anything, other 130 | than the work as a whole, that (a) is included in the normal form of 131 | packaging a Major Component, but which is not part of that Major 132 | Component, and (b) serves only to enable use of the work with that 133 | Major Component, or to implement a Standard Interface for which an 134 | implementation is available to the public in source code form. A 135 | "Major Component", in this context, means a major essential component 136 | (kernel, window system, and so on) of the specific operating system 137 | (if any) on which the executable work runs, or a compiler used to 138 | produce the work, or an object code interpreter used to run it. 139 | 140 | The "Corresponding Source" for a work in object code form means all 141 | the source code needed to generate, install, and (for an executable 142 | work) run the object code and to modify the work, including scripts to 143 | control those activities. However, it does not include the work's 144 | System Libraries, or general-purpose tools or generally available free 145 | programs which are used unmodified in performing those activities but 146 | which are not part of the work. For example, Corresponding Source 147 | includes interface definition files associated with source files for 148 | the work, and the source code for shared libraries and dynamically 149 | linked subprograms that the work is specifically designed to require, 150 | such as by intimate data communication or control flow between those 151 | subprograms and other parts of the work. 152 | 153 | The Corresponding Source need not include anything that users can 154 | regenerate automatically from other parts of the Corresponding Source. 155 | 156 | The Corresponding Source for a work in source code form is that same 157 | work. 158 | 159 | #### 2. Basic Permissions. 160 | 161 | All rights granted under this License are granted for the term of 162 | copyright on the Program, and are irrevocable provided the stated 163 | conditions are met. This License explicitly affirms your unlimited 164 | permission to run the unmodified Program. The output from running a 165 | covered work is covered by this License only if the output, given its 166 | content, constitutes a covered work. This License acknowledges your 167 | rights of fair use or other equivalent, as provided by copyright law. 168 | 169 | You may make, run and propagate covered works that you do not convey, 170 | without conditions so long as your license otherwise remains in force. 171 | You may convey covered works to others for the sole purpose of having 172 | them make modifications exclusively for you, or provide you with 173 | facilities for running those works, provided that you comply with the 174 | terms of this License in conveying all material for which you do not 175 | control copyright. Those thus making or running the covered works for 176 | you must do so exclusively on your behalf, under your direction and 177 | control, on terms that prohibit them from making any copies of your 178 | copyrighted material outside their relationship with you. 179 | 180 | Conveying under any other circumstances is permitted solely under the 181 | conditions stated below. Sublicensing is not allowed; section 10 makes 182 | it unnecessary. 183 | 184 | #### 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 185 | 186 | No covered work shall be deemed part of an effective technological 187 | measure under any applicable law fulfilling obligations under article 188 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 189 | similar laws prohibiting or restricting circumvention of such 190 | measures. 191 | 192 | When you convey a covered work, you waive any legal power to forbid 193 | circumvention of technological measures to the extent such 194 | circumvention is effected by exercising rights under this License with 195 | respect to the covered work, and you disclaim any intention to limit 196 | operation or modification of the work as a means of enforcing, against 197 | the work's users, your or third parties' legal rights to forbid 198 | circumvention of technological measures. 199 | 200 | #### 4. Conveying Verbatim Copies. 201 | 202 | You may convey verbatim copies of the Program's source code as you 203 | receive it, in any medium, provided that you conspicuously and 204 | appropriately publish on each copy an appropriate copyright notice; 205 | keep intact all notices stating that this License and any 206 | non-permissive terms added in accord with section 7 apply to the code; 207 | keep intact all notices of the absence of any warranty; and give all 208 | recipients a copy of this License along with the Program. 209 | 210 | You may charge any price or no price for each copy that you convey, 211 | and you may offer support or warranty protection for a fee. 212 | 213 | #### 5. Conveying Modified Source Versions. 214 | 215 | You may convey a work based on the Program, or the modifications to 216 | produce it from the Program, in the form of source code under the 217 | terms of section 4, provided that you also meet all of these 218 | conditions: 219 | 220 | - a) The work must carry prominent notices stating that you modified 221 | it, and giving a relevant date. 222 | - b) The work must carry prominent notices stating that it is 223 | released under this License and any conditions added under 224 | section 7. This requirement modifies the requirement in section 4 225 | to "keep intact all notices". 226 | - c) You must license the entire work, as a whole, under this 227 | License to anyone who comes into possession of a copy. This 228 | License will therefore apply, along with any applicable section 7 229 | additional terms, to the whole of the work, and all its parts, 230 | regardless of how they are packaged. This License gives no 231 | permission to license the work in any other way, but it does not 232 | invalidate such permission if you have separately received it. 233 | - d) If the work has interactive user interfaces, each must display 234 | Appropriate Legal Notices; however, if the Program has interactive 235 | interfaces that do not display Appropriate Legal Notices, your 236 | work need not make them do so. 237 | 238 | A compilation of a covered work with other separate and independent 239 | works, which are not by their nature extensions of the covered work, 240 | and which are not combined with it such as to form a larger program, 241 | in or on a volume of a storage or distribution medium, is called an 242 | "aggregate" if the compilation and its resulting copyright are not 243 | used to limit the access or legal rights of the compilation's users 244 | beyond what the individual works permit. Inclusion of a covered work 245 | in an aggregate does not cause this License to apply to the other 246 | parts of the aggregate. 247 | 248 | #### 6. Conveying Non-Source Forms. 249 | 250 | You may convey a covered work in object code form under the terms of 251 | sections 4 and 5, provided that you also convey the machine-readable 252 | Corresponding Source under the terms of this License, in one of these 253 | ways: 254 | 255 | - a) Convey the object code in, or embodied in, a physical product 256 | (including a physical distribution medium), accompanied by the 257 | Corresponding Source fixed on a durable physical medium 258 | customarily used for software interchange. 259 | - b) Convey the object code in, or embodied in, a physical product 260 | (including a physical distribution medium), accompanied by a 261 | written offer, valid for at least three years and valid for as 262 | long as you offer spare parts or customer support for that product 263 | model, to give anyone who possesses the object code either (1) a 264 | copy of the Corresponding Source for all the software in the 265 | product that is covered by this License, on a durable physical 266 | medium customarily used for software interchange, for a price no 267 | more than your reasonable cost of physically performing this 268 | conveying of source, or (2) access to copy the Corresponding 269 | Source from a network server at no charge. 270 | - c) Convey individual copies of the object code with a copy of the 271 | written offer to provide the Corresponding Source. This 272 | alternative is allowed only occasionally and noncommercially, and 273 | only if you received the object code with such an offer, in accord 274 | with subsection 6b. 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 | - e) Convey the object code using peer-to-peer transmission, 288 | provided you inform other peers where the object code and 289 | Corresponding Source of the work are being offered to the general 290 | public at no charge under subsection 6d. 291 | 292 | A separable portion of the object code, whose source code is excluded 293 | from the Corresponding Source as a System Library, need not be 294 | included in conveying the object code work. 295 | 296 | A "User Product" is either (1) a "consumer product", which means any 297 | tangible personal property which is normally used for personal, 298 | family, or household purposes, or (2) anything designed or sold for 299 | incorporation into a dwelling. In determining whether a product is a 300 | consumer product, doubtful cases shall be resolved in favor of 301 | coverage. For a particular product received by a particular user, 302 | "normally used" refers to a typical or common use of that class of 303 | product, regardless of the status of the particular user or of the way 304 | in which the particular user actually uses, or expects or is expected 305 | to use, the product. A product is a consumer product regardless of 306 | whether the product has substantial commercial, industrial or 307 | non-consumer uses, unless such uses represent the only significant 308 | 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 312 | install and execute modified versions of a covered work in that User 313 | Product from a modified version of its Corresponding Source. The 314 | information must suffice to ensure that the continued functioning of 315 | the modified object code is in no case prevented or interfered with 316 | solely because 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 331 | updates for a work that has been modified or installed by the 332 | recipient, or for the User Product in which it has been modified or 333 | installed. Access to a network may be denied when the modification 334 | itself materially and adversely affects the operation of the network 335 | or violates the rules and protocols for communication across the 336 | network. 337 | 338 | Corresponding Source conveyed, and Installation Information provided, 339 | in accord with this section must be in a format that is publicly 340 | documented (and with an implementation available to the public in 341 | source code form), and must require no special password or key for 342 | unpacking, reading or copying. 343 | 344 | #### 7. Additional Terms. 345 | 346 | "Additional permissions" are terms that supplement the terms of this 347 | License by making exceptions from one or more of its conditions. 348 | Additional permissions that are applicable to the entire Program shall 349 | be treated as though they were included in this License, to the extent 350 | that they are valid under applicable law. If additional permissions 351 | apply only to part of the Program, that part may be used separately 352 | under those permissions, but the entire Program remains governed by 353 | this License without regard to the additional permissions. 354 | 355 | When you convey a copy of a covered work, you may at your option 356 | remove any additional permissions from that copy, or from any part of 357 | it. (Additional permissions may be written to require their own 358 | removal in certain cases when you modify the work.) You may place 359 | additional permissions on material, added by you to a covered work, 360 | for which you have or can give appropriate copyright permission. 361 | 362 | Notwithstanding any other provision of this License, for material you 363 | add to a covered work, you may (if authorized by the copyright holders 364 | of that material) supplement the terms of this License with terms: 365 | 366 | - a) Disclaiming warranty or limiting liability differently from the 367 | terms of sections 15 and 16 of this License; or 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 | - c) Prohibiting misrepresentation of the origin of that material, 372 | or requiring that modified versions of such material be marked in 373 | reasonable ways as different from the original version; or 374 | - d) Limiting the use for publicity purposes of names of licensors 375 | or authors of the material; or 376 | - e) Declining to grant rights under trademark law for use of some 377 | trade names, trademarks, or service marks; or 378 | - f) Requiring indemnification of licensors and authors of that 379 | material by anyone who conveys the material (or modified versions 380 | of it) with contractual assumptions of liability to the recipient, 381 | for any liability that these contractual assumptions directly 382 | impose on those licensors and authors. 383 | 384 | All other non-permissive additional terms are considered "further 385 | restrictions" within the meaning of section 10. If the Program as you 386 | received it, or any part of it, contains a notice stating that it is 387 | governed by this License along with a term that is a further 388 | restriction, you may remove that term. If a license document contains 389 | a further restriction but permits relicensing or conveying under this 390 | License, you may add to a covered work material governed by the terms 391 | of that license document, provided that the further restriction does 392 | not survive such relicensing or conveying. 393 | 394 | If you add terms to a covered work in accord with this section, you 395 | must place, in the relevant source files, a statement of the 396 | additional terms that apply to those files, or a notice indicating 397 | where to find the applicable terms. 398 | 399 | Additional terms, permissive or non-permissive, may be stated in the 400 | form of a separately written license, or stated as exceptions; the 401 | above requirements apply either way. 402 | 403 | #### 8. Termination. 404 | 405 | You may not propagate or modify a covered work except as expressly 406 | provided under this License. Any attempt otherwise to propagate or 407 | modify it is void, and will automatically terminate your rights under 408 | this License (including any patent licenses granted under the third 409 | paragraph of section 11). 410 | 411 | However, if you cease all violation of this License, then your license 412 | from a particular copyright holder is reinstated (a) provisionally, 413 | unless and until the copyright holder explicitly and finally 414 | terminates your license, and (b) permanently, if the copyright holder 415 | fails to notify you of the violation by some reasonable means prior to 416 | 60 days after the cessation. 417 | 418 | Moreover, your license from a particular copyright holder is 419 | reinstated permanently if the copyright holder notifies you of the 420 | violation by some reasonable means, this is the first time you have 421 | received notice of violation of this License (for any work) from that 422 | copyright holder, and you cure the violation prior to 30 days after 423 | your receipt of the notice. 424 | 425 | Termination of your rights under this section does not terminate the 426 | licenses of parties who have received copies or rights from you under 427 | this License. If your rights have been terminated and not permanently 428 | reinstated, you do not qualify to receive new licenses for the same 429 | material under section 10. 430 | 431 | #### 9. Acceptance Not Required for Having Copies. 432 | 433 | You are not required to accept this License in order to receive or run 434 | a copy of the Program. Ancillary propagation of a covered work 435 | occurring solely as a consequence of using peer-to-peer transmission 436 | to receive a copy likewise does not require acceptance. However, 437 | nothing other than this License grants you permission to propagate or 438 | modify any covered work. These actions infringe copyright if you do 439 | not accept this License. Therefore, by modifying or propagating a 440 | covered work, you indicate your acceptance of this License to do so. 441 | 442 | #### 10. Automatic Licensing of Downstream Recipients. 443 | 444 | Each time you convey a covered work, the recipient automatically 445 | receives a license from the original licensors, to run, modify and 446 | propagate that work, subject to this License. You are not responsible 447 | for enforcing compliance by third parties with this License. 448 | 449 | An "entity transaction" is a transaction transferring control of an 450 | organization, or substantially all assets of one, or subdividing an 451 | organization, or merging organizations. If propagation of a covered 452 | work results from an entity transaction, each party to that 453 | transaction who receives a copy of the work also receives whatever 454 | licenses to the work the party's predecessor in interest had or could 455 | give under the previous paragraph, plus a right to possession of the 456 | Corresponding Source of the work from the predecessor in interest, if 457 | the predecessor has it or can get it with reasonable efforts. 458 | 459 | You may not impose any further restrictions on the exercise of the 460 | rights granted or affirmed under this License. For example, you may 461 | not impose a license fee, royalty, or other charge for exercise of 462 | rights granted under this License, and you may not initiate litigation 463 | (including a cross-claim or counterclaim in a lawsuit) alleging that 464 | any patent claim is infringed by making, using, selling, offering for 465 | sale, or importing the Program or any portion of it. 466 | 467 | #### 11. Patents. 468 | 469 | A "contributor" is a copyright holder who authorizes use under this 470 | License of the Program or a work on which the Program is based. The 471 | work thus licensed is called the contributor's "contributor version". 472 | 473 | A contributor's "essential patent claims" are all patent claims owned 474 | or controlled by the contributor, whether already acquired or 475 | hereafter acquired, that would be infringed by some manner, permitted 476 | by this License, of making, using, or selling its contributor version, 477 | but do not include claims that would be infringed only as a 478 | consequence of further modification of the contributor version. For 479 | purposes of this definition, "control" includes the right to grant 480 | patent sublicenses in a manner consistent with the requirements of 481 | this License. 482 | 483 | Each contributor grants you a non-exclusive, worldwide, royalty-free 484 | patent license under the contributor's essential patent claims, to 485 | make, use, sell, offer for sale, import and otherwise run, modify and 486 | propagate the contents of its contributor version. 487 | 488 | In the following three paragraphs, a "patent license" is any express 489 | agreement or commitment, however denominated, not to enforce a patent 490 | (such as an express permission to practice a patent or covenant not to 491 | sue for patent infringement). To "grant" such a patent license to a 492 | party means to make such an agreement or commitment not to enforce a 493 | patent against the party. 494 | 495 | If you convey a covered work, knowingly relying on a patent license, 496 | and the Corresponding Source of the work is not available for anyone 497 | to copy, free of charge and under the terms of this License, through a 498 | publicly available network server or other readily accessible means, 499 | then you must either (1) cause the Corresponding Source to be so 500 | available, or (2) arrange to deprive yourself of the benefit of the 501 | patent license for this particular work, or (3) arrange, in a manner 502 | consistent with the requirements of this License, to extend the patent 503 | license to downstream recipients. "Knowingly relying" means you have 504 | actual knowledge that, but for the patent license, your conveying the 505 | covered work in a country, or your recipient's use of the covered work 506 | in a country, would infringe one or more identifiable patents in that 507 | country that you have reason to believe are valid. 508 | 509 | If, pursuant to or in connection with a single transaction or 510 | arrangement, you convey, or propagate by procuring conveyance of, a 511 | covered work, and grant a patent license to some of the parties 512 | receiving the covered work authorizing them to use, propagate, modify 513 | or convey a specific copy of the covered work, then the patent license 514 | you grant is automatically extended to all recipients of the covered 515 | work and works based on it. 516 | 517 | A patent license is "discriminatory" if it does not include within the 518 | scope of its coverage, prohibits the exercise of, or is conditioned on 519 | the non-exercise of one or more of the rights that are specifically 520 | granted under this License. You may not convey a covered work if you 521 | are a party to an arrangement with a third party that is in the 522 | business of distributing software, under which you make payment to the 523 | third party based on the extent of your activity of conveying the 524 | work, and under which the third party grants, to any of the parties 525 | who would receive the covered work from you, a discriminatory patent 526 | license (a) in connection with copies of the covered work conveyed by 527 | you (or copies made from those copies), or (b) primarily for and in 528 | connection with specific products or compilations that contain the 529 | covered work, unless you entered into that arrangement, or that patent 530 | license was granted, prior to 28 March 2007. 531 | 532 | Nothing in this License shall be construed as excluding or limiting 533 | any implied license or other defenses to infringement that may 534 | otherwise be available to you under applicable patent law. 535 | 536 | #### 12. No Surrender of Others' Freedom. 537 | 538 | If conditions are imposed on you (whether by court order, agreement or 539 | otherwise) that contradict the conditions of this License, they do not 540 | excuse you from the conditions of this License. If you cannot convey a 541 | covered work so as to satisfy simultaneously your obligations under 542 | this License and any other pertinent obligations, then as a 543 | consequence you may not convey it at all. For example, if you agree to 544 | terms that obligate you to collect a royalty for further conveying 545 | from those to whom you convey the Program, the only way you could 546 | satisfy both those terms and this License would be to refrain entirely 547 | from conveying the Program. 548 | 549 | #### 13. Use with the GNU Affero General Public License. 550 | 551 | Notwithstanding any other provision of this License, you have 552 | permission to link or combine any covered work with a work licensed 553 | under version 3 of the GNU Affero General Public License into a single 554 | combined work, and to convey the resulting work. The terms of this 555 | License will continue to apply to the part which is the covered work, 556 | but the special requirements of the GNU Affero General Public License, 557 | section 13, concerning interaction through a network will apply to the 558 | combination as such. 559 | 560 | #### 14. Revised Versions of this License. 561 | 562 | The Free Software Foundation may publish revised and/or new versions 563 | of the GNU General Public License from time to time. Such new versions 564 | will be similar in spirit to the present version, but may differ in 565 | detail to address new problems or concerns. 566 | 567 | Each version is given a distinguishing version number. If the Program 568 | specifies that a certain numbered version of the GNU General Public 569 | License "or any later version" applies to it, you have the option of 570 | following the terms and conditions either of that numbered version or 571 | of any later version published by the Free Software Foundation. If the 572 | Program does not specify a version number of the GNU General Public 573 | License, you may choose any version ever published by the Free 574 | Software Foundation. 575 | 576 | If the Program specifies that a proxy can decide which future versions 577 | of the GNU General Public License can be used, that proxy's public 578 | statement of acceptance of a version permanently authorizes you to 579 | choose that version for the Program. 580 | 581 | Later license versions may give you additional or different 582 | permissions. However, no additional obligations are imposed on any 583 | author or copyright holder as a result of your choosing to follow a 584 | later version. 585 | 586 | #### 15. Disclaimer of Warranty. 587 | 588 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 589 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 590 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT 591 | WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT 592 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 593 | A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND 594 | PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE 595 | DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR 596 | CORRECTION. 597 | 598 | #### 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR 602 | CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 603 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES 604 | ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT 605 | NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR 606 | LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM 607 | TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER 608 | PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 609 | 610 | #### 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WhatsTrapp 2 | 3 | [![Build Status](https://travis-ci.org/Wicker25/whatstrapp.svg?branch=master)](https://travis-ci.org/Wicker25/whatstrapp) 4 | 5 | ![WhatsTrapp video](https://media.giphy.com/media/1gQ65LmOcgLwe1XKWl/giphy.gif) 6 | 7 | ## Introduction 8 | 9 | *WhatsTrapp* is a tool for analyzing and dumping WhatsApp accounts. 10 | 11 | ## How it works 12 | 13 | *WhatsTrapp* uses a *Man In the Middle* (MITM) attack to establish a session with the WhatsApp's target: once the session 14 | has been established, actions for retrieving and collecting the data are executed in the browser context by using the 15 | very same *WhatsApp Web's APIs* (thank to a bit of reverse engineering). 16 | 17 | Finally, the collected data are indexed in *Elasticsearch* in order to allow you to search for a specific text and sort 18 | the messages by time. 19 | 20 | ## Requirements 21 | 22 | - Docker 23 | - Docker Compose 24 | 25 | ## Installing 26 | 27 | Clone the repository: 28 | ``` 29 | $ git clone git@github.com:Wicker25/whatstrapp.git 30 | $ cd whatstrapp/ 31 | ``` 32 | 33 | ## Usage 34 | 35 | Launch the *WhatsTrapp* server with: 36 | ``` 37 | $ docker-compose up 38 | ``` 39 | 40 | Then open your browser at http://127.0.0.1:8025/ and wait until the QR code has been loaded. 41 | 42 | Launch the target's *WhatsApp* and, from the main menu, select "WhatsApp Web". 43 | 44 | Finally, take a picture of the QR code and enjoy it! 45 | 46 | ## Data Analysis 47 | 48 | Open *Kibana's Discover* page at http://127.0.0.1:5601/app/kibana#/discover. 49 | 50 | ![Kibana Discover page](https://user-images.githubusercontent.com/500733/46049959-4e859f80-c129-11e8-8bfc-747da987567f.png) 51 | 52 | You can start a new *Search* or open one of the default ones from the menu on the right. 53 | 54 | ![kibana](https://user-images.githubusercontent.com/500733/46050467-2ea3ab00-c12c-11e8-829d-494af87078ce.png) 55 | 56 | ## Architecture 57 | 58 | The *WhatsTrapp*'s architecture consists of a *Puppeteer*, *Puppets*, and *Clients*: 59 | 60 | ![WhatsTrapp architecture](https://user-images.githubusercontent.com/500733/45647051-d54cd380-babc-11e8-8906-d277456ed211.png) 61 | 62 | - The *Puppeteer* launches the browser instance by using [Google Puppeteer](https://github.com/GoogleChrome/puppeteer) and injects a *Puppet* into it; 63 | - The *Puppet* is a JavaScript that performs actions in the [WhatsApp Web](https://web.whatsapp.com/) page; 64 | - The *Client* is the user interface used by the attacker for performing the hack. 65 | 66 | All of the components communicate with each other via *WebSocket*. 67 | 68 | ## Caveats 69 | 70 | If you are trying to use *WhatsTrapp* on a GNU/Linux operating system you might need to increase the kernel parameter `max_map_count` by running: 71 | ``` 72 | # sysctl -w vm.max_map_count=262144 73 | ``` 74 | 75 | See the [Elasticsearch Reference](https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html) for more details. 76 | 77 | If you are trying to use *WhatsTrapp* on Windows but you get the error `Windows named pipe error: ...` check this discussion: https://github.com/Wicker25/whatstrapp/issues/1. 78 | 79 | ## Authors 80 | 81 | * Giacomo Trudu - [@Wicker25](https://github.com/Wicker25) 82 | 83 | ## License 84 | 85 | This project is licensed under the GNU General Public License - see the [LICENSE.md](LICENSE.md) file for details. 86 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file app.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | global.__rootdir = __dirname; 23 | 24 | const server = require('./lib/server'); 25 | const Puppeteer = require('./lib/puppeteer'); 26 | 27 | (async () => { 28 | const puppeteer = new Puppeteer(); 29 | puppeteer.live(); 30 | 31 | server.listen(8025); 32 | })(); 33 | -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wicker25/whatstrapp/6006fc21b54aab37dd401f33e0eb1fa58e410e06/dist/.gitkeep -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | services: 3 | whatstrapp: 4 | image: wicker25/whatstrapp:0.1.5 5 | ports: 6 | - 8025:8025 7 | - 8085:8085 8 | networks: 9 | - internal-network 10 | environment: 11 | ELASTICSEARCH_URL: elasticsearch:9200 12 | KIBANA_URL: kibana:5601 13 | depends_on: 14 | - elasticsearch 15 | - kibana 16 | elasticsearch: 17 | hostname: elasticsearch 18 | image: docker.elastic.co/elasticsearch/elasticsearch:6.4.1 19 | ports: 20 | - 9200:9200 21 | networks: 22 | - internal-network 23 | kibana: 24 | hostname: kibana 25 | image: docker.elastic.co/kibana/kibana:6.4.1 26 | ports: 27 | - 5601:5601 28 | networks: 29 | - internal-network 30 | depends_on: 31 | - elasticsearch 32 | networks: 33 | internal-network: 34 | driver: bridge 35 | -------------------------------------------------------------------------------- /lib/browser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/browser.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const fs = require('fs'); 23 | const puppeteer = require('puppeteer'); 24 | 25 | const proxy = require('./proxy'); 26 | 27 | /** 28 | * The Browser handles the Chrome instance. 29 | */ 30 | class Browser { 31 | constructor(targetUrl) { 32 | this._targetUrl = targetUrl; 33 | this._browser = null; 34 | this._page = null; 35 | } 36 | 37 | async launch() { 38 | this._browser = await puppeteer.launch({ 39 | headless: true, 40 | args: [ 41 | '--no-sandbox', 42 | '--disable-setuid-sandbox', 43 | '--disable-dev-shm-usage', 44 | '--window-size=1366,1024', 45 | ], 46 | }); 47 | 48 | this._browser.on('disconnected', async () => { 49 | await this._browser.close(); 50 | }); 51 | 52 | await this._openPage(this._targetUrl); 53 | }; 54 | 55 | async injectJS(filePath, trigger) { 56 | const source = fs.readFileSync(filePath).toString(); 57 | 58 | return this._page.evaluate(async ({ source, trigger }) => { 59 | const script = document.createElement('script'); 60 | script.type = 'text/javascript'; 61 | script.text = source; 62 | 63 | document.body.appendChild(script); 64 | 65 | return await eval(trigger); 66 | 67 | }, { source, trigger }); 68 | } 69 | 70 | async stop() { 71 | try { 72 | await this._browser.disconnect(); 73 | await this._browser.close(); 74 | } catch (e) { 75 | // pass 76 | } 77 | } 78 | 79 | async _openPage(url) { 80 | this._page = await this._browser.newPage(); 81 | 82 | await this._page.setViewport({ width: 1366, height: 1024 }); 83 | await this._page.setRequestInterception(true); 84 | await this._page.setUserAgent( 85 | 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) ' + 86 | 'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36' 87 | ); 88 | 89 | this._page.on('request', proxy.interceptRequest((response) => { 90 | // Remove all the security headers (for supporting cross-origin WebSockets) 91 | const headers = response.headers(); 92 | headers['content-security-policy'] = 'default-src * \'unsafe-inline\' \'unsafe-eval\' data: blob:;'; 93 | headers['access-control-allow-origin'] = '*'; 94 | 95 | return response; 96 | }, [url], this._page)); 97 | 98 | return this._page.goto(url, {waitUntil: 'networkidle2'}); 99 | } 100 | } 101 | 102 | module.exports = Browser; 103 | -------------------------------------------------------------------------------- /lib/dispatcher.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/dispatcher.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const EventEmitter = require('events'); 23 | const WebSocket = require('ws'); 24 | 25 | /** 26 | * The Message Dispatcher used by the Puppeteer. 27 | */ 28 | class Dispatcher extends EventEmitter { 29 | constructor(...options) { 30 | super(); 31 | 32 | this.server = new WebSocket.Server(...options); 33 | 34 | this.server.on('connection', async (client, request) => { 35 | this._handleConnection(client, request); 36 | }); 37 | } 38 | 39 | _handleConnection(client, request) { 40 | client.remoteAddress = request.connection.remoteAddress; 41 | 42 | client 43 | .on('message', async (data) => { 44 | this._handleMessage(client, data); 45 | }) 46 | .on('disconnect', async () => { 47 | this.emit('disconnect', client); 48 | }) 49 | ; 50 | 51 | this.emit('connection', client, request); 52 | } 53 | 54 | _handleMessage(client, data) { 55 | const message = JSON.parse(data); 56 | 57 | switch (message.type) { 58 | case 'start_session': 59 | case 'stop_session': 60 | case 'store_data': 61 | case 'debug': { 62 | this.emit(message.type, client, message.body); 63 | break; 64 | } 65 | 66 | case 'auth_challenge': 67 | case 'auth_completed': { 68 | this._forwardMessage(message); 69 | break; 70 | } 71 | 72 | default: { 73 | throw 'Unknown message type'; 74 | } 75 | } 76 | } 77 | 78 | _forwardMessage(message) { 79 | const { puppetId, type, body } = message; 80 | 81 | const clients = Array.from(this.server.clients); 82 | 83 | const targetClient = clients.find((client) => { 84 | return client.puppetId === puppetId && client.readyState === WebSocket.OPEN; 85 | }); 86 | 87 | if (!targetClient) { 88 | throw 'Unable to find the target client'; 89 | } 90 | 91 | targetClient.send( 92 | JSON.stringify({ type, body }) 93 | ) 94 | } 95 | } 96 | 97 | module.exports = Dispatcher; 98 | -------------------------------------------------------------------------------- /lib/proxy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/proxy.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const fetch = require('node-fetch'); 23 | const { Response } = require('puppeteer/lib/NetworkManager'); 24 | 25 | const buildCookieHeader = (cookies) => { 26 | return cookies.map(cookie => `${cookie.name}=${cookie.value}`).join('; '); 27 | }; 28 | 29 | const interceptRequest = (responseHandler, urlPatterns, page) => { 30 | return async (request) => { 31 | const url = request.url(), 32 | method = request.method(); 33 | 34 | if (!urlPatterns.includes(url)) { 35 | request.continue(); 36 | return; 37 | } 38 | 39 | const cookies = await page.cookies(url); 40 | 41 | const headers = request.headers(); 42 | headers['cookie'] = buildCookieHeader(cookies); 43 | 44 | const rawResponse = await fetch(url, { 45 | method: method, 46 | body: request.postData(), 47 | headers: headers, 48 | }); 49 | 50 | const response = new Response( 51 | request._client, 52 | request, 53 | rawResponse.status, 54 | rawResponse.headers, 55 | ); 56 | 57 | response.body = await rawResponse.buffer(); 58 | 59 | await request.respond( 60 | responseHandler(response), 61 | ); 62 | } 63 | }; 64 | 65 | module.exports = { 66 | interceptRequest, 67 | }; 68 | -------------------------------------------------------------------------------- /lib/puppeteer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/puppeteer.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const Browser = require('./browser'); 23 | const Dispatcher = require('./dispatcher'); 24 | 25 | const ElasticsearchStore = require('./stores/elasticsearch-store'); 26 | 27 | /** 28 | * The Puppeteer launches the browse instance and inject the Puppet into the webpage. 29 | */ 30 | class Puppeteer { 31 | constructor() { 32 | this._dispatcher = null; 33 | this._sessions = {}; 34 | 35 | this._store = new ElasticsearchStore(); 36 | } 37 | 38 | async live() { 39 | this._dispatcher = new Dispatcher({ port: 8085 }); 40 | 41 | this._dispatcher 42 | .on('connection', async (client) => { 43 | this._debug(client, 'connected'); 44 | }) 45 | .on('disconnect', async (client) => { 46 | this._debug(client, 'disconnected'); 47 | }) 48 | ; 49 | 50 | this._dispatcher 51 | .on('start_session', this._startSession.bind(this)) 52 | .on('stop_session', this._stopSession.bind(this)) 53 | .on('store_data', this._storeData.bind(this)) 54 | .on('debug', this._debug.bind(this)); 55 | }; 56 | 57 | async _startSession(client) { 58 | const session = this._accessSession(client); 59 | 60 | if (session.browser) { 61 | this._stopSession(client); 62 | } 63 | 64 | this._debug(client, 'starting new session'); 65 | 66 | const browser = session.browser = new Browser('https://web.whatsapp.com/'); 67 | await browser.launch(); 68 | 69 | client.puppetId = await browser.injectJS('./dist/bootstrap.js', 'WhatsTrapp.launchPuppet();'); 70 | } 71 | 72 | async _stopSession(client) { 73 | const session = this._accessSession(client); 74 | 75 | if (session.browser) { 76 | this._debug(client, 'stopping the session'); 77 | 78 | await session.browser.stop(); 79 | 80 | for (const key in Object.getOwnPropertyNames(session)) { 81 | delete session[key]; 82 | } 83 | } 84 | } 85 | 86 | _accessSession(client) { 87 | const remoteAddress = client.remoteAddress; 88 | 89 | if (typeof this._sessions[remoteAddress] === 'undefined') { 90 | this._sessions[remoteAddress] = {}; 91 | } 92 | 93 | return this._sessions[remoteAddress]; 94 | } 95 | 96 | async _storeData(client, data) { 97 | await this._store.dump(client, data); 98 | } 99 | 100 | _debug(client, data) { 101 | console.log(`[${client.remoteAddress}] ~>`, data); 102 | } 103 | } 104 | 105 | module.exports = Puppeteer; 106 | -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/server.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const fs = require('fs'); 23 | const path = require('path'); 24 | const http = require('http'); 25 | 26 | const server = http.createServer(async (request, response) => { 27 | const source = fs.readFileSync(path.join(__rootdir, 'src', 'client.js')); 28 | 29 | response.write( 30 | '\n' + 31 | '\n' + 32 | ' \n' + 33 | ' \n' + 34 | ' WhatsTrapp\n' + 35 | ' \n' + 36 | ' \n' + 37 | '
Loading ...
\n' + 38 | ' \n' + 39 | ' \n' + 40 | '\n' 41 | ); 42 | response.end(); 43 | 44 | }); 45 | 46 | module.exports = server; 47 | -------------------------------------------------------------------------------- /lib/stores/elasticsearch-store.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file lib/stores/elasticsearch-store.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | const _ = require('lodash'); 23 | const elasticsearch = require('elasticsearch'); 24 | 25 | /** 26 | * The Elasticsearch store. 27 | */ 28 | class ElasticsearchStore { 29 | constructor() { 30 | this._client = new elasticsearch.Client({ 31 | host: process.env.ELASTICSEARCH_URL, 32 | log: 'error', 33 | }); 34 | } 35 | 36 | async dump(client, data) { 37 | if (data.objects.length === 0) { 38 | return; 39 | } 40 | 41 | switch (data.type) { 42 | case 'contact': { this._pushContacts(data.objects); break; } 43 | case 'message': { this._pushMessages(data.objects); break; } 44 | 45 | default: { 46 | throw 'Unknown object type'; 47 | } 48 | } 49 | } 50 | 51 | async _pushContacts(contacts) { 52 | await this._client.bulk({ 53 | body: _.flatMap(contacts, (contact) => [ 54 | { index: { _index: 'wt-contact', _type: 'contact', _id: contact.id } }, 55 | contact, 56 | ]), 57 | }); 58 | } 59 | 60 | async _pushMessages(messages) { 61 | await this._client.bulk({ 62 | body: _.flatMap(messages, (message) => [ 63 | { index: { _index: 'wt-message', _type: 'message', _id: message.id } }, 64 | message, 65 | ]), 66 | }); 67 | } 68 | } 69 | 70 | module.exports = ElasticsearchStore; 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "whatstrapp", 3 | "version": "0.1.5", 4 | "private": true, 5 | "dependencies": { 6 | "elasticsearch": "^15.1.1", 7 | "lodash": "^4.17.10", 8 | "node-fetch": "^2.2.0", 9 | "puppeteer": "1.7.0", 10 | "ws": "^6.0.0" 11 | }, 12 | "scripts": { 13 | "start": "yarn build && ./scripts/bootstrap.sh && node ./app.js", 14 | "build": "webpack --config webpack.config.js --mode=production" 15 | }, 16 | "author": "Giacomo Trudu aka Wicker25", 17 | "license": "MIT", 18 | "devDependencies": { 19 | "webpack": "^4.17.1", 20 | "webpack-cli": "^3.1.0" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | KIBANA_SETTINGS_FILEPATH='settings/kibana-settings.json' 4 | 5 | function wait_for_it { 6 | until $(curl -s -o /dev/null --head --fail "$1"); do 7 | sleep 1 8 | done 9 | echo -e "\e[32mdone\033[0m" 10 | } 11 | 12 | echo -n "Waiting for Elasticsearch ... " 13 | wait_for_it "${ELASTICSEARCH_URL}" 14 | 15 | echo -n "Waiting for Kibana ... " 16 | wait_for_it "${KIBANA_URL}" 17 | 18 | echo -n "Loading Kibana's settings ... " 19 | curl \ 20 | -s -o /dev/null \ 21 | -X POST \ 22 | -H 'Content-type:application/json'\ 23 | -H 'kbn-xsrf: WhatsTrapp' \ 24 | -d "@${KIBANA_SETTINGS_FILEPATH}" \ 25 | "${KIBANA_URL}/api/saved_objects/_bulk_create" 26 | 27 | if [ -n $? ]; then 28 | echo -e "\e[32mdone\033[0m" 29 | else 30 | echo -e "\e[033mfailed\033[0m" 31 | fi 32 | 33 | -------------------------------------------------------------------------------- /settings/kibana-settings.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "5d7ee610-c11d-11e8-95ac-91aad38120ca", 4 | "type": "index-pattern", 5 | "version": 1, 6 | "attributes": { 7 | "title": "wt-*", 8 | "timeFieldName": "time", 9 | "fields": "[{\"name\":\"_id\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_index\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_score\",\"type\":\"number\",\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"_source\",\"type\":\"_source\",\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"_type\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"body\",\"type\":\"string\",\"count\":1,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"body.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"from\",\"type\":\"string\",\"count\":1,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"from.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"id\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"id.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"mimeType\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"mimeType.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"name\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"name.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"pushname\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"pushname.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"time\",\"type\":\"date\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"to\",\"type\":\"string\",\"count\":1,\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"to.keyword\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true}]" 10 | } 11 | }, 12 | { 13 | "id": "90617ac0-c11d-11e8-95ac-91aad38120ca", 14 | "type": "search", 15 | "version": 1, 16 | "attributes": { 17 | "title": "All Messages - Plain Text", 18 | "description": "", 19 | "hits": 0, 20 | "columns": [ 21 | "from", 22 | "to", 23 | "body" 24 | ], 25 | "sort": [ 26 | "time", 27 | "desc" 28 | ], 29 | "version": 1, 30 | "kibanaSavedObjectMeta": { 31 | "searchSourceJSON": "{\"index\":\"5d7ee610-c11d-11e8-95ac-91aad38120ca\",\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"_type:\\\"message\\\" AND mimeType:\\\"text/plain\\\"\",\"language\":\"lucene\"},\"filter\":[]}" 32 | } 33 | } 34 | }, 35 | { 36 | "id": "a96f82f0-c11d-11e8-95ac-91aad38120ca", 37 | "type": "search", 38 | "version": 1, 39 | "attributes": { 40 | "title": "All Messages - JPEG Images", 41 | "description": "", 42 | "hits": 0, 43 | "columns": [ 44 | "from", 45 | "to", 46 | "body" 47 | ], 48 | "sort": [ 49 | "time", 50 | "desc" 51 | ], 52 | "version": 1, 53 | "kibanaSavedObjectMeta": { 54 | "searchSourceJSON": "{\"index\":\"5d7ee610-c11d-11e8-95ac-91aad38120ca\",\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"_type:\\\"message\\\" AND mimeType:\\\"image/jpeg\\\"\",\"language\":\"lucene\"},\"filter\":[]}" 55 | } 56 | } 57 | } 58 | ] 59 | -------------------------------------------------------------------------------- /src/bootstrap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file src/bootstrap.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | import Puppet from './puppet'; 23 | 24 | export const launchPuppet = () => { 25 | const puppet = new Puppet(); 26 | puppet.live(); 27 | 28 | return puppet.id; 29 | }; 30 | -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file src/client.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | class Client { 23 | constructor() { 24 | this._client = null; 25 | this._container = document.getElementById('root'); 26 | } 27 | 28 | connect() { 29 | this._client = new window.WebSocket(`ws://${location.hostname}:8085/`); 30 | this._client.addEventListener('open', () => { 31 | this._showMessage('Connected'); 32 | 33 | this._setupConnection(); 34 | this._startSession(); 35 | }); 36 | } 37 | 38 | _setupConnection() { 39 | this._client.addEventListener('message', (event) => { 40 | this._handleMessage(event); 41 | }); 42 | 43 | this._client.addEventListener('close', () => { 44 | this._showMessage('Disconnected'); 45 | }); 46 | } 47 | 48 | _handleMessage(event) { 49 | const message = JSON.parse(event.data); 50 | 51 | switch (message.type) { 52 | case 'auth_challenge': { this._showQRCode(message.body); break; } 53 | case 'auth_completed': { this._showMessage('Completed'); break; } 54 | 55 | default: { 56 | throw 'Unknown message type'; 57 | } 58 | } 59 | } 60 | 61 | _startSession() { 62 | this._send('start_session'); 63 | } 64 | 65 | _showMessage(message) { 66 | this._container.innerText = message; 67 | }; 68 | 69 | _showQRCode(data) { 70 | const image = document.createElement('IMG'); 71 | image.src = data; 72 | 73 | // Empty the container element 74 | while (this._container.firstChild) { 75 | this._container.removeChild(this._container.firstChild); 76 | } 77 | 78 | this._container.appendChild(image); 79 | }; 80 | 81 | _send(type, body) { 82 | this._client.send( 83 | JSON.stringify({ type, body }) 84 | ); 85 | } 86 | } 87 | 88 | const client = new Client(); 89 | client.connect(); 90 | -------------------------------------------------------------------------------- /src/puppet.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file src/puppet.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | import _ from 'lodash'; 23 | 24 | import { 25 | Contact, 26 | Message, 27 | MessageQuery 28 | } from './types'; 29 | 30 | /** 31 | * Returns DOM node by using XPath. 32 | */ 33 | const $x = (xpath) => { 34 | return document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; 35 | }; 36 | 37 | /** 38 | * The script to handle the login process. 39 | */ 40 | class LoginScript { 41 | constructor(puppet) { 42 | this._puppet = puppet; 43 | 44 | this.execute(); 45 | } 46 | 47 | execute() { 48 | this._timer = setInterval(this._worker.bind(this), 100); 49 | } 50 | 51 | stop() { 52 | clearInterval(this._timer); 53 | } 54 | 55 | _worker() { 56 | // Look for the QR code and forward it to the Puppeteer 57 | const image = this._findQRCode(); 58 | 59 | if (image && image.src !== image.dataset._last_src) { 60 | image.dataset._last_src = image.src; 61 | 62 | this._puppet.debug('the QR Code has been sent to the client'); 63 | this._puppet.startAuth(image); 64 | return; 65 | } 66 | 67 | // Handle the manually refreshing of the QR code 68 | const button = this._findRefreshQRCodeButton(); 69 | 70 | if (button) { 71 | button.click(); 72 | 73 | this._puppet.debug('the QR Code has been manually refreshed'); 74 | return; 75 | } 76 | 77 | // Detect when the session has been established 78 | const introMessage = this._findIntroMessage(); 79 | 80 | if (introMessage) { 81 | this.stop(); 82 | 83 | this._puppet.completeAuth(); 84 | this._puppet.setState('analyze'); 85 | } 86 | } 87 | 88 | _findQRCode() { 89 | return $x('//img[@alt="Scan me!" and starts-with(@src, "data:image/png;base64,")]'); 90 | } 91 | 92 | _findRefreshQRCodeButton() { 93 | return $x('//div[@role="button" and contains(., "Click to reload QR code")]'); 94 | } 95 | 96 | _findIntroMessage() { 97 | return $x('//h1[text()="Keep your phone connected"]'); 98 | } 99 | } 100 | 101 | /** 102 | * The script to analyze the WhatsApp account. 103 | */ 104 | class AnalyzerScript { 105 | constructor(puppet) { 106 | this._puppet = puppet; 107 | 108 | this._whatsappModules = { 109 | 'bcihgfbdeb': 'Store', 110 | 'jfefjijii': 'Store.Conn', 111 | 'djddhaidag': 'Store.Stream', 112 | 'dgfhfgbdeb': 'Store.Wap', 113 | }; 114 | 115 | this._user = null; 116 | this._contacts = []; 117 | this._messages = {}; 118 | 119 | this.execute(); 120 | } 121 | 122 | async execute() { 123 | this._activateEnv(); 124 | 125 | await this._grabUser(); 126 | await this._grabContacts(); 127 | await this._grabMessages(); 128 | } 129 | 130 | _activateEnv() { 131 | _.each(this._whatsappModules, (path, key) => { 132 | window.webpackJsonp([], { 133 | [key]: (x, y, z) => _.set(window, path, z(`"${key}"`)), 134 | }, key); 135 | }); 136 | 137 | this._puppet.debug('the WhatsApp environment has been activated'); 138 | } 139 | 140 | async _grabUser() { 141 | // TODO 142 | } 143 | 144 | async _grabContacts() { 145 | const response = await Store.Wap.contactFindQuery('search'); 146 | this._contacts = response.data.map(payload => Contact.parse(payload)); 147 | 148 | this._puppet.storeData('contact', this._contacts); 149 | } 150 | 151 | async _grabMessages() { 152 | this._contacts.forEach(async (contact) => { 153 | const response = await Store.Wap.msgFindQuery('before', new MessageQuery({ remote: `${contact.id}@c.us` })); 154 | this._messages[contact.id] = response.map(payload => Message.parse(payload)); 155 | 156 | this._puppet.storeData('message', this._messages[contact.id]); 157 | }); 158 | } 159 | } 160 | 161 | 162 | /** 163 | * The Puppet executes in the hack in the webpage. 164 | */ 165 | export default class Puppet { 166 | constructor() { 167 | this.id = this._generateId(); 168 | 169 | this._client = new window.WebSocket('ws://127.0.0.1:8085/'); 170 | this._state = null; 171 | } 172 | 173 | live() { 174 | this.setState('login'); 175 | } 176 | 177 | setState(state) { 178 | this._state = state; 179 | 180 | switch (this._state) { 181 | case 'login': { new LoginScript(this); break; } 182 | case 'analyze': { new AnalyzerScript(this); break; } 183 | 184 | default: { 185 | throw 'Unknown state'; 186 | } 187 | } 188 | } 189 | 190 | startAuth(image) { 191 | this._send('auth_challenge', image.src); 192 | } 193 | 194 | completeAuth() { 195 | this._send('auth_completed'); 196 | } 197 | 198 | storeData(type, objects) { 199 | this._send('store_data', { type, objects }); 200 | } 201 | 202 | debug(data) { 203 | this._send('debug', `puppet~${this.id}: ${data}`); 204 | } 205 | 206 | _generateId() { 207 | return Math.random().toString(36).substr(2);; 208 | } 209 | 210 | _send(type, body) { 211 | const puppetId = this.id; 212 | 213 | this._client.send( 214 | JSON.stringify({ puppetId, type, body }) 215 | ); 216 | } 217 | } 218 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file src/types.js 3 | * 4 | * Copyright (C) 2018 | Giacomo Trudu aka `Wicker25` 5 | * 6 | * This file is part of WhatsTrapp. 7 | * 8 | * WhatsTrapp is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * WhatsTrapp is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with WhatsTrapp. If not, see . 20 | */ 21 | 22 | export class Contact { 23 | static parse(payload) { 24 | const instance = new Contact(); 25 | instance.id = payload.id.user; 26 | instance.name = payload.name; 27 | instance.pushname = payload.pushname; 28 | 29 | return instance; 30 | } 31 | } 32 | 33 | export class Message { 34 | static parse(payload) { 35 | const instance = new Message(); 36 | instance.id = payload.id.id; 37 | instance.from = payload.from.user; 38 | instance.to = payload.to.user; 39 | instance.body = payload.body; 40 | instance.mimeType = payload.mimetype || 'text/plain'; 41 | instance.time = new Date(payload.t * 1000); 42 | 43 | return instance; 44 | } 45 | } 46 | 47 | export class MessageQuery { 48 | static parse(payload) { 49 | const [fromMe, remote, id] = payload.split('_'); 50 | 51 | return new MessageQuery({ id, remote, fromMe }); 52 | } 53 | 54 | constructor({ id = '', remote = '', fromMe = true, count = 1000 }) { 55 | this.id = id; 56 | this.remote = remote; 57 | this.fromMe = fromMe; 58 | 59 | this.count = count; 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | target: 'web', 5 | entry: './src/bootstrap.js', 6 | output: { 7 | filename: 'bootstrap.js', 8 | library: 'WhatsTrapp', 9 | path: path.resolve(__dirname, 'dist') 10 | }, 11 | externals: { 12 | 'window': 'window', 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@webassemblyjs/ast@1.8.5": 6 | version "1.8.5" 7 | resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" 8 | dependencies: 9 | "@webassemblyjs/helper-module-context" "1.8.5" 10 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 11 | "@webassemblyjs/wast-parser" "1.8.5" 12 | 13 | "@webassemblyjs/floating-point-hex-parser@1.8.5": 14 | version "1.8.5" 15 | resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" 16 | 17 | "@webassemblyjs/helper-api-error@1.8.5": 18 | version "1.8.5" 19 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" 20 | 21 | "@webassemblyjs/helper-buffer@1.8.5": 22 | version "1.8.5" 23 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" 24 | 25 | "@webassemblyjs/helper-code-frame@1.8.5": 26 | version "1.8.5" 27 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" 28 | dependencies: 29 | "@webassemblyjs/wast-printer" "1.8.5" 30 | 31 | "@webassemblyjs/helper-fsm@1.8.5": 32 | version "1.8.5" 33 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" 34 | 35 | "@webassemblyjs/helper-module-context@1.8.5": 36 | version "1.8.5" 37 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" 38 | dependencies: 39 | "@webassemblyjs/ast" "1.8.5" 40 | mamacro "^0.0.3" 41 | 42 | "@webassemblyjs/helper-wasm-bytecode@1.8.5": 43 | version "1.8.5" 44 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" 45 | 46 | "@webassemblyjs/helper-wasm-section@1.8.5": 47 | version "1.8.5" 48 | resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" 49 | dependencies: 50 | "@webassemblyjs/ast" "1.8.5" 51 | "@webassemblyjs/helper-buffer" "1.8.5" 52 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 53 | "@webassemblyjs/wasm-gen" "1.8.5" 54 | 55 | "@webassemblyjs/ieee754@1.8.5": 56 | version "1.8.5" 57 | resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" 58 | dependencies: 59 | "@xtuc/ieee754" "^1.2.0" 60 | 61 | "@webassemblyjs/leb128@1.8.5": 62 | version "1.8.5" 63 | resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" 64 | dependencies: 65 | "@xtuc/long" "4.2.2" 66 | 67 | "@webassemblyjs/utf8@1.8.5": 68 | version "1.8.5" 69 | resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" 70 | 71 | "@webassemblyjs/wasm-edit@1.8.5": 72 | version "1.8.5" 73 | resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" 74 | dependencies: 75 | "@webassemblyjs/ast" "1.8.5" 76 | "@webassemblyjs/helper-buffer" "1.8.5" 77 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 78 | "@webassemblyjs/helper-wasm-section" "1.8.5" 79 | "@webassemblyjs/wasm-gen" "1.8.5" 80 | "@webassemblyjs/wasm-opt" "1.8.5" 81 | "@webassemblyjs/wasm-parser" "1.8.5" 82 | "@webassemblyjs/wast-printer" "1.8.5" 83 | 84 | "@webassemblyjs/wasm-gen@1.8.5": 85 | version "1.8.5" 86 | resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" 87 | dependencies: 88 | "@webassemblyjs/ast" "1.8.5" 89 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 90 | "@webassemblyjs/ieee754" "1.8.5" 91 | "@webassemblyjs/leb128" "1.8.5" 92 | "@webassemblyjs/utf8" "1.8.5" 93 | 94 | "@webassemblyjs/wasm-opt@1.8.5": 95 | version "1.8.5" 96 | resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" 97 | dependencies: 98 | "@webassemblyjs/ast" "1.8.5" 99 | "@webassemblyjs/helper-buffer" "1.8.5" 100 | "@webassemblyjs/wasm-gen" "1.8.5" 101 | "@webassemblyjs/wasm-parser" "1.8.5" 102 | 103 | "@webassemblyjs/wasm-parser@1.8.5": 104 | version "1.8.5" 105 | resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" 106 | dependencies: 107 | "@webassemblyjs/ast" "1.8.5" 108 | "@webassemblyjs/helper-api-error" "1.8.5" 109 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 110 | "@webassemblyjs/ieee754" "1.8.5" 111 | "@webassemblyjs/leb128" "1.8.5" 112 | "@webassemblyjs/utf8" "1.8.5" 113 | 114 | "@webassemblyjs/wast-parser@1.8.5": 115 | version "1.8.5" 116 | resolved "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" 117 | dependencies: 118 | "@webassemblyjs/ast" "1.8.5" 119 | "@webassemblyjs/floating-point-hex-parser" "1.8.5" 120 | "@webassemblyjs/helper-api-error" "1.8.5" 121 | "@webassemblyjs/helper-code-frame" "1.8.5" 122 | "@webassemblyjs/helper-fsm" "1.8.5" 123 | "@xtuc/long" "4.2.2" 124 | 125 | "@webassemblyjs/wast-printer@1.8.5": 126 | version "1.8.5" 127 | resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" 128 | dependencies: 129 | "@webassemblyjs/ast" "1.8.5" 130 | "@webassemblyjs/wast-parser" "1.8.5" 131 | "@xtuc/long" "4.2.2" 132 | 133 | "@xtuc/ieee754@^1.2.0": 134 | version "1.2.0" 135 | resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 136 | 137 | "@xtuc/long@4.2.2": 138 | version "4.2.2" 139 | resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" 140 | 141 | abbrev@1: 142 | version "1.1.1" 143 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 144 | 145 | acorn@^6.2.1: 146 | version "6.2.1" 147 | resolved "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51" 148 | 149 | agent-base@^4.3.0: 150 | version "4.3.0" 151 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" 152 | dependencies: 153 | es6-promisify "^5.0.0" 154 | 155 | agentkeepalive@^3.4.1: 156 | version "3.5.2" 157 | resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67" 158 | dependencies: 159 | humanize-ms "^1.2.1" 160 | 161 | ajv-errors@^1.0.0: 162 | version "1.0.1" 163 | resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" 164 | 165 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: 166 | version "3.4.1" 167 | resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" 168 | 169 | ajv@^6.1.0, ajv@^6.10.2: 170 | version "6.10.2" 171 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" 172 | dependencies: 173 | fast-deep-equal "^2.0.1" 174 | fast-json-stable-stringify "^2.0.0" 175 | json-schema-traverse "^0.4.1" 176 | uri-js "^4.2.2" 177 | 178 | ansi-regex@^2.0.0: 179 | version "2.1.1" 180 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 181 | 182 | ansi-regex@^3.0.0: 183 | version "3.0.0" 184 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 185 | 186 | ansi-regex@^4.1.0: 187 | version "4.1.0" 188 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 189 | 190 | ansi-styles@^2.2.1: 191 | version "2.2.1" 192 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 193 | 194 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 195 | version "3.2.1" 196 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 197 | dependencies: 198 | color-convert "^1.9.0" 199 | 200 | anymatch@^2.0.0: 201 | version "2.0.0" 202 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 203 | dependencies: 204 | micromatch "^3.1.4" 205 | normalize-path "^2.1.1" 206 | 207 | aproba@^1.0.3, aproba@^1.1.1: 208 | version "1.2.0" 209 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 210 | 211 | are-we-there-yet@~1.1.2: 212 | version "1.1.5" 213 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 214 | dependencies: 215 | delegates "^1.0.0" 216 | readable-stream "^2.0.6" 217 | 218 | arr-diff@^4.0.0: 219 | version "4.0.0" 220 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 221 | 222 | arr-flatten@^1.1.0: 223 | version "1.1.0" 224 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 225 | 226 | arr-union@^3.1.0: 227 | version "3.1.0" 228 | resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 229 | 230 | array-unique@^0.3.2: 231 | version "0.3.2" 232 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 233 | 234 | asn1.js@^4.0.0: 235 | version "4.10.1" 236 | resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 237 | dependencies: 238 | bn.js "^4.0.0" 239 | inherits "^2.0.1" 240 | minimalistic-assert "^1.0.0" 241 | 242 | assert@^1.1.1: 243 | version "1.5.0" 244 | resolved "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 245 | dependencies: 246 | object-assign "^4.1.1" 247 | util "0.10.3" 248 | 249 | assign-symbols@^1.0.0: 250 | version "1.0.0" 251 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 252 | 253 | async-each@^1.0.1: 254 | version "1.0.3" 255 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 256 | 257 | async-limiter@~1.0.0: 258 | version "1.0.1" 259 | resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" 260 | 261 | atob@^2.1.1: 262 | version "2.1.2" 263 | resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 264 | 265 | balanced-match@^1.0.0: 266 | version "1.0.0" 267 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 268 | 269 | base64-js@^1.0.2: 270 | version "1.3.1" 271 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 272 | 273 | base@^0.11.1: 274 | version "0.11.2" 275 | resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 276 | dependencies: 277 | cache-base "^1.0.1" 278 | class-utils "^0.3.5" 279 | component-emitter "^1.2.1" 280 | define-property "^1.0.0" 281 | isobject "^3.0.1" 282 | mixin-deep "^1.2.0" 283 | pascalcase "^0.1.1" 284 | 285 | big.js@^5.2.2: 286 | version "5.2.2" 287 | resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 288 | 289 | binary-extensions@^1.0.0: 290 | version "1.13.1" 291 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 292 | 293 | bluebird@^3.5.5: 294 | version "3.5.5" 295 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" 296 | 297 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 298 | version "4.11.8" 299 | resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 300 | 301 | brace-expansion@^1.1.7: 302 | version "1.1.11" 303 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 304 | dependencies: 305 | balanced-match "^1.0.0" 306 | concat-map "0.0.1" 307 | 308 | braces@^2.3.1, braces@^2.3.2: 309 | version "2.3.2" 310 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 311 | dependencies: 312 | arr-flatten "^1.1.0" 313 | array-unique "^0.3.2" 314 | extend-shallow "^2.0.1" 315 | fill-range "^4.0.0" 316 | isobject "^3.0.1" 317 | repeat-element "^1.1.2" 318 | snapdragon "^0.8.1" 319 | snapdragon-node "^2.0.1" 320 | split-string "^3.0.2" 321 | to-regex "^3.0.1" 322 | 323 | brorand@^1.0.1: 324 | version "1.1.0" 325 | resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 326 | 327 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 328 | version "1.2.0" 329 | resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 330 | dependencies: 331 | buffer-xor "^1.0.3" 332 | cipher-base "^1.0.0" 333 | create-hash "^1.1.0" 334 | evp_bytestokey "^1.0.3" 335 | inherits "^2.0.1" 336 | safe-buffer "^5.0.1" 337 | 338 | browserify-cipher@^1.0.0: 339 | version "1.0.1" 340 | resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 341 | dependencies: 342 | browserify-aes "^1.0.4" 343 | browserify-des "^1.0.0" 344 | evp_bytestokey "^1.0.0" 345 | 346 | browserify-des@^1.0.0: 347 | version "1.0.2" 348 | resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 349 | dependencies: 350 | cipher-base "^1.0.1" 351 | des.js "^1.0.0" 352 | inherits "^2.0.1" 353 | safe-buffer "^5.1.2" 354 | 355 | browserify-rsa@^4.0.0: 356 | version "4.0.1" 357 | resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 358 | dependencies: 359 | bn.js "^4.1.0" 360 | randombytes "^2.0.1" 361 | 362 | browserify-sign@^4.0.0: 363 | version "4.0.4" 364 | resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 365 | dependencies: 366 | bn.js "^4.1.1" 367 | browserify-rsa "^4.0.0" 368 | create-hash "^1.1.0" 369 | create-hmac "^1.1.2" 370 | elliptic "^6.0.0" 371 | inherits "^2.0.1" 372 | parse-asn1 "^5.0.0" 373 | 374 | browserify-zlib@^0.2.0: 375 | version "0.2.0" 376 | resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 377 | dependencies: 378 | pako "~1.0.5" 379 | 380 | buffer-from@^1.0.0: 381 | version "1.1.1" 382 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 383 | 384 | buffer-xor@^1.0.3: 385 | version "1.0.3" 386 | resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 387 | 388 | buffer@^4.3.0: 389 | version "4.9.1" 390 | resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 391 | dependencies: 392 | base64-js "^1.0.2" 393 | ieee754 "^1.1.4" 394 | isarray "^1.0.0" 395 | 396 | builtin-status-codes@^3.0.0: 397 | version "3.0.0" 398 | resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 399 | 400 | cacache@^12.0.2: 401 | version "12.0.2" 402 | resolved "https://registry.npmjs.org/cacache/-/cacache-12.0.2.tgz#8db03205e36089a3df6954c66ce92541441ac46c" 403 | dependencies: 404 | bluebird "^3.5.5" 405 | chownr "^1.1.1" 406 | figgy-pudding "^3.5.1" 407 | glob "^7.1.4" 408 | graceful-fs "^4.1.15" 409 | infer-owner "^1.0.3" 410 | lru-cache "^5.1.1" 411 | mississippi "^3.0.0" 412 | mkdirp "^0.5.1" 413 | move-concurrently "^1.0.1" 414 | promise-inflight "^1.0.1" 415 | rimraf "^2.6.3" 416 | ssri "^6.0.1" 417 | unique-filename "^1.1.1" 418 | y18n "^4.0.0" 419 | 420 | cache-base@^1.0.1: 421 | version "1.0.1" 422 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 423 | dependencies: 424 | collection-visit "^1.0.0" 425 | component-emitter "^1.2.1" 426 | get-value "^2.0.6" 427 | has-value "^1.0.0" 428 | isobject "^3.0.1" 429 | set-value "^2.0.0" 430 | to-object-path "^0.3.0" 431 | union-value "^1.0.0" 432 | unset-value "^1.0.0" 433 | 434 | camelcase@^5.0.0: 435 | version "5.3.1" 436 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 437 | 438 | chalk@2.4.2: 439 | version "2.4.2" 440 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 441 | dependencies: 442 | ansi-styles "^3.2.1" 443 | escape-string-regexp "^1.0.5" 444 | supports-color "^5.3.0" 445 | 446 | chalk@^1.0.0: 447 | version "1.1.3" 448 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 449 | dependencies: 450 | ansi-styles "^2.2.1" 451 | escape-string-regexp "^1.0.2" 452 | has-ansi "^2.0.0" 453 | strip-ansi "^3.0.0" 454 | supports-color "^2.0.0" 455 | 456 | chokidar@^2.0.2: 457 | version "2.1.6" 458 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" 459 | dependencies: 460 | anymatch "^2.0.0" 461 | async-each "^1.0.1" 462 | braces "^2.3.2" 463 | glob-parent "^3.1.0" 464 | inherits "^2.0.3" 465 | is-binary-path "^1.0.0" 466 | is-glob "^4.0.0" 467 | normalize-path "^3.0.0" 468 | path-is-absolute "^1.0.0" 469 | readdirp "^2.2.1" 470 | upath "^1.1.1" 471 | optionalDependencies: 472 | fsevents "^1.2.7" 473 | 474 | chownr@^1.1.1: 475 | version "1.1.2" 476 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6" 477 | 478 | chrome-trace-event@^1.0.2: 479 | version "1.0.2" 480 | resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" 481 | dependencies: 482 | tslib "^1.9.0" 483 | 484 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 485 | version "1.0.4" 486 | resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 487 | dependencies: 488 | inherits "^2.0.1" 489 | safe-buffer "^5.0.1" 490 | 491 | class-utils@^0.3.5: 492 | version "0.3.6" 493 | resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 494 | dependencies: 495 | arr-union "^3.1.0" 496 | define-property "^0.2.5" 497 | isobject "^3.0.0" 498 | static-extend "^0.1.1" 499 | 500 | cliui@^5.0.0: 501 | version "5.0.0" 502 | resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 503 | dependencies: 504 | string-width "^3.1.0" 505 | strip-ansi "^5.2.0" 506 | wrap-ansi "^5.1.0" 507 | 508 | code-point-at@^1.0.0: 509 | version "1.1.0" 510 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 511 | 512 | collection-visit@^1.0.0: 513 | version "1.0.0" 514 | resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 515 | dependencies: 516 | map-visit "^1.0.0" 517 | object-visit "^1.0.0" 518 | 519 | color-convert@^1.9.0: 520 | version "1.9.3" 521 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 522 | dependencies: 523 | color-name "1.1.3" 524 | 525 | color-name@1.1.3: 526 | version "1.1.3" 527 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 528 | 529 | commander@^2.20.0: 530 | version "2.20.0" 531 | resolved "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 532 | 533 | commondir@^1.0.1: 534 | version "1.0.1" 535 | resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 536 | 537 | component-emitter@^1.2.1: 538 | version "1.3.0" 539 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 540 | 541 | concat-map@0.0.1: 542 | version "0.0.1" 543 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 544 | 545 | concat-stream@1.6.2, concat-stream@^1.5.0: 546 | version "1.6.2" 547 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 548 | dependencies: 549 | buffer-from "^1.0.0" 550 | inherits "^2.0.3" 551 | readable-stream "^2.2.2" 552 | typedarray "^0.0.6" 553 | 554 | console-browserify@^1.1.0: 555 | version "1.1.0" 556 | resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 557 | dependencies: 558 | date-now "^0.1.4" 559 | 560 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 561 | version "1.1.0" 562 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 563 | 564 | constants-browserify@^1.0.0: 565 | version "1.0.0" 566 | resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 567 | 568 | copy-concurrently@^1.0.0: 569 | version "1.0.5" 570 | resolved "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 571 | dependencies: 572 | aproba "^1.1.1" 573 | fs-write-stream-atomic "^1.0.8" 574 | iferr "^0.1.5" 575 | mkdirp "^0.5.1" 576 | rimraf "^2.5.4" 577 | run-queue "^1.0.0" 578 | 579 | copy-descriptor@^0.1.0: 580 | version "0.1.1" 581 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 582 | 583 | core-util-is@~1.0.0: 584 | version "1.0.2" 585 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 586 | 587 | create-ecdh@^4.0.0: 588 | version "4.0.3" 589 | resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 590 | dependencies: 591 | bn.js "^4.1.0" 592 | elliptic "^6.0.0" 593 | 594 | create-hash@^1.1.0, create-hash@^1.1.2: 595 | version "1.2.0" 596 | resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 597 | dependencies: 598 | cipher-base "^1.0.1" 599 | inherits "^2.0.1" 600 | md5.js "^1.3.4" 601 | ripemd160 "^2.0.1" 602 | sha.js "^2.4.0" 603 | 604 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 605 | version "1.1.7" 606 | resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 607 | dependencies: 608 | cipher-base "^1.0.3" 609 | create-hash "^1.1.0" 610 | inherits "^2.0.1" 611 | ripemd160 "^2.0.0" 612 | safe-buffer "^5.0.1" 613 | sha.js "^2.4.8" 614 | 615 | cross-spawn@6.0.5, cross-spawn@^6.0.0: 616 | version "6.0.5" 617 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 618 | dependencies: 619 | nice-try "^1.0.4" 620 | path-key "^2.0.1" 621 | semver "^5.5.0" 622 | shebang-command "^1.2.0" 623 | which "^1.2.9" 624 | 625 | crypto-browserify@^3.11.0: 626 | version "3.12.0" 627 | resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 628 | dependencies: 629 | browserify-cipher "^1.0.0" 630 | browserify-sign "^4.0.0" 631 | create-ecdh "^4.0.0" 632 | create-hash "^1.1.0" 633 | create-hmac "^1.1.0" 634 | diffie-hellman "^5.0.0" 635 | inherits "^2.0.1" 636 | pbkdf2 "^3.0.3" 637 | public-encrypt "^4.0.0" 638 | randombytes "^2.0.0" 639 | randomfill "^1.0.3" 640 | 641 | cyclist@~0.2.2: 642 | version "0.2.2" 643 | resolved "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 644 | 645 | date-now@^0.1.4: 646 | version "0.1.4" 647 | resolved "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 648 | 649 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3: 650 | version "2.6.9" 651 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 652 | dependencies: 653 | ms "2.0.0" 654 | 655 | debug@^3.1.0, debug@^3.2.6: 656 | version "3.2.6" 657 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 658 | dependencies: 659 | ms "^2.1.1" 660 | 661 | decamelize@^1.2.0: 662 | version "1.2.0" 663 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 664 | 665 | decode-uri-component@^0.2.0: 666 | version "0.2.0" 667 | resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 668 | 669 | deep-extend@^0.6.0: 670 | version "0.6.0" 671 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 672 | 673 | define-property@^0.2.5: 674 | version "0.2.5" 675 | resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 676 | dependencies: 677 | is-descriptor "^0.1.0" 678 | 679 | define-property@^1.0.0: 680 | version "1.0.0" 681 | resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 682 | dependencies: 683 | is-descriptor "^1.0.0" 684 | 685 | define-property@^2.0.2: 686 | version "2.0.2" 687 | resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 688 | dependencies: 689 | is-descriptor "^1.0.2" 690 | isobject "^3.0.1" 691 | 692 | delegates@^1.0.0: 693 | version "1.0.0" 694 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 695 | 696 | des.js@^1.0.0: 697 | version "1.0.0" 698 | resolved "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 699 | dependencies: 700 | inherits "^2.0.1" 701 | minimalistic-assert "^1.0.0" 702 | 703 | detect-file@^1.0.0: 704 | version "1.0.0" 705 | resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 706 | 707 | detect-libc@^1.0.2: 708 | version "1.0.3" 709 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 710 | 711 | diffie-hellman@^5.0.0: 712 | version "5.0.3" 713 | resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 714 | dependencies: 715 | bn.js "^4.1.0" 716 | miller-rabin "^4.0.0" 717 | randombytes "^2.0.0" 718 | 719 | domain-browser@^1.1.1: 720 | version "1.2.0" 721 | resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 722 | 723 | duplexify@^3.4.2, duplexify@^3.6.0: 724 | version "3.7.1" 725 | resolved "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" 726 | dependencies: 727 | end-of-stream "^1.0.0" 728 | inherits "^2.0.1" 729 | readable-stream "^2.0.0" 730 | stream-shift "^1.0.0" 731 | 732 | elasticsearch@^15.1.1: 733 | version "15.5.0" 734 | resolved "https://registry.npmjs.org/elasticsearch/-/elasticsearch-15.5.0.tgz#62d9f238cf9e10b81c50a2303aa470c1f7da6b37" 735 | dependencies: 736 | agentkeepalive "^3.4.1" 737 | chalk "^1.0.0" 738 | lodash "^4.17.10" 739 | 740 | elliptic@^6.0.0: 741 | version "6.5.0" 742 | resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.0.tgz#2b8ed4c891b7de3200e14412a5b8248c7af505ca" 743 | dependencies: 744 | bn.js "^4.4.0" 745 | brorand "^1.0.1" 746 | hash.js "^1.0.0" 747 | hmac-drbg "^1.0.0" 748 | inherits "^2.0.1" 749 | minimalistic-assert "^1.0.0" 750 | minimalistic-crypto-utils "^1.0.0" 751 | 752 | emoji-regex@^7.0.1: 753 | version "7.0.3" 754 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 755 | 756 | emojis-list@^2.0.0: 757 | version "2.1.0" 758 | resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 759 | 760 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 761 | version "1.4.1" 762 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 763 | dependencies: 764 | once "^1.4.0" 765 | 766 | enhanced-resolve@4.1.0, enhanced-resolve@^4.1.0: 767 | version "4.1.0" 768 | resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" 769 | dependencies: 770 | graceful-fs "^4.1.2" 771 | memory-fs "^0.4.0" 772 | tapable "^1.0.0" 773 | 774 | errno@^0.1.3, errno@~0.1.7: 775 | version "0.1.7" 776 | resolved "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 777 | dependencies: 778 | prr "~1.0.1" 779 | 780 | es6-promise@^4.0.3: 781 | version "4.2.8" 782 | resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 783 | 784 | es6-promisify@^5.0.0: 785 | version "5.0.0" 786 | resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 787 | dependencies: 788 | es6-promise "^4.0.3" 789 | 790 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 791 | version "1.0.5" 792 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 793 | 794 | eslint-scope@^4.0.3: 795 | version "4.0.3" 796 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 797 | dependencies: 798 | esrecurse "^4.1.0" 799 | estraverse "^4.1.1" 800 | 801 | esrecurse@^4.1.0: 802 | version "4.2.1" 803 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 804 | dependencies: 805 | estraverse "^4.1.0" 806 | 807 | estraverse@^4.1.0, estraverse@^4.1.1: 808 | version "4.2.0" 809 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 810 | 811 | events@^3.0.0: 812 | version "3.0.0" 813 | resolved "https://registry.npmjs.org/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" 814 | 815 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 816 | version "1.0.3" 817 | resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 818 | dependencies: 819 | md5.js "^1.3.4" 820 | safe-buffer "^5.1.1" 821 | 822 | execa@^1.0.0: 823 | version "1.0.0" 824 | resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 825 | dependencies: 826 | cross-spawn "^6.0.0" 827 | get-stream "^4.0.0" 828 | is-stream "^1.1.0" 829 | npm-run-path "^2.0.0" 830 | p-finally "^1.0.0" 831 | signal-exit "^3.0.0" 832 | strip-eof "^1.0.0" 833 | 834 | expand-brackets@^2.1.4: 835 | version "2.1.4" 836 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 837 | dependencies: 838 | debug "^2.3.3" 839 | define-property "^0.2.5" 840 | extend-shallow "^2.0.1" 841 | posix-character-classes "^0.1.0" 842 | regex-not "^1.0.0" 843 | snapdragon "^0.8.1" 844 | to-regex "^3.0.1" 845 | 846 | expand-tilde@^2.0.0, expand-tilde@^2.0.2: 847 | version "2.0.2" 848 | resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 849 | dependencies: 850 | homedir-polyfill "^1.0.1" 851 | 852 | extend-shallow@^2.0.1: 853 | version "2.0.1" 854 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 855 | dependencies: 856 | is-extendable "^0.1.0" 857 | 858 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 859 | version "3.0.2" 860 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 861 | dependencies: 862 | assign-symbols "^1.0.0" 863 | is-extendable "^1.0.1" 864 | 865 | extglob@^2.0.4: 866 | version "2.0.4" 867 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 868 | dependencies: 869 | array-unique "^0.3.2" 870 | define-property "^1.0.0" 871 | expand-brackets "^2.1.4" 872 | extend-shallow "^2.0.1" 873 | fragment-cache "^0.2.1" 874 | regex-not "^1.0.0" 875 | snapdragon "^0.8.1" 876 | to-regex "^3.0.1" 877 | 878 | extract-zip@^1.6.6: 879 | version "1.6.7" 880 | resolved "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9" 881 | dependencies: 882 | concat-stream "1.6.2" 883 | debug "2.6.9" 884 | mkdirp "0.5.1" 885 | yauzl "2.4.1" 886 | 887 | fast-deep-equal@^2.0.1: 888 | version "2.0.1" 889 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 890 | 891 | fast-json-stable-stringify@^2.0.0: 892 | version "2.0.0" 893 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 894 | 895 | fd-slicer@~1.0.1: 896 | version "1.0.1" 897 | resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 898 | dependencies: 899 | pend "~1.2.0" 900 | 901 | figgy-pudding@^3.5.1: 902 | version "3.5.1" 903 | resolved "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" 904 | 905 | fill-range@^4.0.0: 906 | version "4.0.0" 907 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 908 | dependencies: 909 | extend-shallow "^2.0.1" 910 | is-number "^3.0.0" 911 | repeat-string "^1.6.1" 912 | to-regex-range "^2.1.0" 913 | 914 | find-cache-dir@^2.1.0: 915 | version "2.1.0" 916 | resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 917 | dependencies: 918 | commondir "^1.0.1" 919 | make-dir "^2.0.0" 920 | pkg-dir "^3.0.0" 921 | 922 | find-up@^3.0.0: 923 | version "3.0.0" 924 | resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 925 | dependencies: 926 | locate-path "^3.0.0" 927 | 928 | findup-sync@3.0.0: 929 | version "3.0.0" 930 | resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" 931 | dependencies: 932 | detect-file "^1.0.0" 933 | is-glob "^4.0.0" 934 | micromatch "^3.0.4" 935 | resolve-dir "^1.0.1" 936 | 937 | flush-write-stream@^1.0.0: 938 | version "1.1.1" 939 | resolved "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" 940 | dependencies: 941 | inherits "^2.0.3" 942 | readable-stream "^2.3.6" 943 | 944 | for-in@^1.0.2: 945 | version "1.0.2" 946 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 947 | 948 | fragment-cache@^0.2.1: 949 | version "0.2.1" 950 | resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 951 | dependencies: 952 | map-cache "^0.2.2" 953 | 954 | from2@^2.1.0: 955 | version "2.3.0" 956 | resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 957 | dependencies: 958 | inherits "^2.0.1" 959 | readable-stream "^2.0.0" 960 | 961 | fs-minipass@^1.2.5: 962 | version "1.2.6" 963 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" 964 | dependencies: 965 | minipass "^2.2.1" 966 | 967 | fs-write-stream-atomic@^1.0.8: 968 | version "1.0.10" 969 | resolved "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 970 | dependencies: 971 | graceful-fs "^4.1.2" 972 | iferr "^0.1.5" 973 | imurmurhash "^0.1.4" 974 | readable-stream "1 || 2" 975 | 976 | fs.realpath@^1.0.0: 977 | version "1.0.0" 978 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 979 | 980 | fsevents@^1.2.7: 981 | version "1.2.9" 982 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" 983 | dependencies: 984 | nan "^2.12.1" 985 | node-pre-gyp "^0.12.0" 986 | 987 | gauge@~2.7.3: 988 | version "2.7.4" 989 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 990 | dependencies: 991 | aproba "^1.0.3" 992 | console-control-strings "^1.0.0" 993 | has-unicode "^2.0.0" 994 | object-assign "^4.1.0" 995 | signal-exit "^3.0.0" 996 | string-width "^1.0.1" 997 | strip-ansi "^3.0.1" 998 | wide-align "^1.1.0" 999 | 1000 | get-caller-file@^2.0.1: 1001 | version "2.0.5" 1002 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1003 | 1004 | get-stream@^4.0.0: 1005 | version "4.1.0" 1006 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1007 | dependencies: 1008 | pump "^3.0.0" 1009 | 1010 | get-value@^2.0.3, get-value@^2.0.6: 1011 | version "2.0.6" 1012 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1013 | 1014 | glob-parent@^3.1.0: 1015 | version "3.1.0" 1016 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1017 | dependencies: 1018 | is-glob "^3.1.0" 1019 | path-dirname "^1.0.0" 1020 | 1021 | glob@^7.1.3, glob@^7.1.4: 1022 | version "7.1.4" 1023 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1024 | dependencies: 1025 | fs.realpath "^1.0.0" 1026 | inflight "^1.0.4" 1027 | inherits "2" 1028 | minimatch "^3.0.4" 1029 | once "^1.3.0" 1030 | path-is-absolute "^1.0.0" 1031 | 1032 | global-modules@2.0.0: 1033 | version "2.0.0" 1034 | resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" 1035 | dependencies: 1036 | global-prefix "^3.0.0" 1037 | 1038 | global-modules@^1.0.0: 1039 | version "1.0.0" 1040 | resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 1041 | dependencies: 1042 | global-prefix "^1.0.1" 1043 | is-windows "^1.0.1" 1044 | resolve-dir "^1.0.0" 1045 | 1046 | global-prefix@^1.0.1: 1047 | version "1.0.2" 1048 | resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 1049 | dependencies: 1050 | expand-tilde "^2.0.2" 1051 | homedir-polyfill "^1.0.1" 1052 | ini "^1.3.4" 1053 | is-windows "^1.0.1" 1054 | which "^1.2.14" 1055 | 1056 | global-prefix@^3.0.0: 1057 | version "3.0.0" 1058 | resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" 1059 | dependencies: 1060 | ini "^1.3.5" 1061 | kind-of "^6.0.2" 1062 | which "^1.3.1" 1063 | 1064 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: 1065 | version "4.2.1" 1066 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.1.tgz#1c1f0c364882c868f5bff6512146328336a11b1d" 1067 | 1068 | has-ansi@^2.0.0: 1069 | version "2.0.0" 1070 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1071 | dependencies: 1072 | ansi-regex "^2.0.0" 1073 | 1074 | has-flag@^3.0.0: 1075 | version "3.0.0" 1076 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1077 | 1078 | has-unicode@^2.0.0: 1079 | version "2.0.1" 1080 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1081 | 1082 | has-value@^0.3.1: 1083 | version "0.3.1" 1084 | resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1085 | dependencies: 1086 | get-value "^2.0.3" 1087 | has-values "^0.1.4" 1088 | isobject "^2.0.0" 1089 | 1090 | has-value@^1.0.0: 1091 | version "1.0.0" 1092 | resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1093 | dependencies: 1094 | get-value "^2.0.6" 1095 | has-values "^1.0.0" 1096 | isobject "^3.0.0" 1097 | 1098 | has-values@^0.1.4: 1099 | version "0.1.4" 1100 | resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1101 | 1102 | has-values@^1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1105 | dependencies: 1106 | is-number "^3.0.0" 1107 | kind-of "^4.0.0" 1108 | 1109 | hash-base@^3.0.0: 1110 | version "3.0.4" 1111 | resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1112 | dependencies: 1113 | inherits "^2.0.1" 1114 | safe-buffer "^5.0.1" 1115 | 1116 | hash.js@^1.0.0, hash.js@^1.0.3: 1117 | version "1.1.7" 1118 | resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1119 | dependencies: 1120 | inherits "^2.0.3" 1121 | minimalistic-assert "^1.0.1" 1122 | 1123 | hmac-drbg@^1.0.0: 1124 | version "1.0.1" 1125 | resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1126 | dependencies: 1127 | hash.js "^1.0.3" 1128 | minimalistic-assert "^1.0.0" 1129 | minimalistic-crypto-utils "^1.0.1" 1130 | 1131 | homedir-polyfill@^1.0.1: 1132 | version "1.0.3" 1133 | resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 1134 | dependencies: 1135 | parse-passwd "^1.0.0" 1136 | 1137 | https-browserify@^1.0.0: 1138 | version "1.0.0" 1139 | resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1140 | 1141 | https-proxy-agent@^2.2.1: 1142 | version "2.2.2" 1143 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz#271ea8e90f836ac9f119daccd39c19ff7dfb0793" 1144 | dependencies: 1145 | agent-base "^4.3.0" 1146 | debug "^3.1.0" 1147 | 1148 | humanize-ms@^1.2.1: 1149 | version "1.2.1" 1150 | resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" 1151 | dependencies: 1152 | ms "^2.0.0" 1153 | 1154 | iconv-lite@^0.4.4: 1155 | version "0.4.24" 1156 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1157 | dependencies: 1158 | safer-buffer ">= 2.1.2 < 3" 1159 | 1160 | ieee754@^1.1.4: 1161 | version "1.1.13" 1162 | resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1163 | 1164 | iferr@^0.1.5: 1165 | version "0.1.5" 1166 | resolved "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 1167 | 1168 | ignore-walk@^3.0.1: 1169 | version "3.0.1" 1170 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1171 | dependencies: 1172 | minimatch "^3.0.4" 1173 | 1174 | import-local@2.0.0: 1175 | version "2.0.0" 1176 | resolved "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 1177 | dependencies: 1178 | pkg-dir "^3.0.0" 1179 | resolve-cwd "^2.0.0" 1180 | 1181 | imurmurhash@^0.1.4: 1182 | version "0.1.4" 1183 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1184 | 1185 | infer-owner@^1.0.3: 1186 | version "1.0.4" 1187 | resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 1188 | 1189 | inflight@^1.0.4: 1190 | version "1.0.6" 1191 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1192 | dependencies: 1193 | once "^1.3.0" 1194 | wrappy "1" 1195 | 1196 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1197 | version "2.0.4" 1198 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1199 | 1200 | inherits@2.0.1: 1201 | version "2.0.1" 1202 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1203 | 1204 | inherits@2.0.3: 1205 | version "2.0.3" 1206 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1207 | 1208 | ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: 1209 | version "1.3.5" 1210 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1211 | 1212 | interpret@1.2.0: 1213 | version "1.2.0" 1214 | resolved "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 1215 | 1216 | invert-kv@^2.0.0: 1217 | version "2.0.0" 1218 | resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 1219 | 1220 | is-accessor-descriptor@^0.1.6: 1221 | version "0.1.6" 1222 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1223 | dependencies: 1224 | kind-of "^3.0.2" 1225 | 1226 | is-accessor-descriptor@^1.0.0: 1227 | version "1.0.0" 1228 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1229 | dependencies: 1230 | kind-of "^6.0.0" 1231 | 1232 | is-binary-path@^1.0.0: 1233 | version "1.0.1" 1234 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1235 | dependencies: 1236 | binary-extensions "^1.0.0" 1237 | 1238 | is-buffer@^1.1.5: 1239 | version "1.1.6" 1240 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1241 | 1242 | is-data-descriptor@^0.1.4: 1243 | version "0.1.4" 1244 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1245 | dependencies: 1246 | kind-of "^3.0.2" 1247 | 1248 | is-data-descriptor@^1.0.0: 1249 | version "1.0.0" 1250 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1251 | dependencies: 1252 | kind-of "^6.0.0" 1253 | 1254 | is-descriptor@^0.1.0: 1255 | version "0.1.6" 1256 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1257 | dependencies: 1258 | is-accessor-descriptor "^0.1.6" 1259 | is-data-descriptor "^0.1.4" 1260 | kind-of "^5.0.0" 1261 | 1262 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1263 | version "1.0.2" 1264 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1265 | dependencies: 1266 | is-accessor-descriptor "^1.0.0" 1267 | is-data-descriptor "^1.0.0" 1268 | kind-of "^6.0.2" 1269 | 1270 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1271 | version "0.1.1" 1272 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1273 | 1274 | is-extendable@^1.0.1: 1275 | version "1.0.1" 1276 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1277 | dependencies: 1278 | is-plain-object "^2.0.4" 1279 | 1280 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1281 | version "2.1.1" 1282 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1283 | 1284 | is-fullwidth-code-point@^1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1287 | dependencies: 1288 | number-is-nan "^1.0.0" 1289 | 1290 | is-fullwidth-code-point@^2.0.0: 1291 | version "2.0.0" 1292 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1293 | 1294 | is-glob@^3.1.0: 1295 | version "3.1.0" 1296 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1297 | dependencies: 1298 | is-extglob "^2.1.0" 1299 | 1300 | is-glob@^4.0.0: 1301 | version "4.0.1" 1302 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1303 | dependencies: 1304 | is-extglob "^2.1.1" 1305 | 1306 | is-number@^3.0.0: 1307 | version "3.0.0" 1308 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1309 | dependencies: 1310 | kind-of "^3.0.2" 1311 | 1312 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1313 | version "2.0.4" 1314 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1315 | dependencies: 1316 | isobject "^3.0.1" 1317 | 1318 | is-stream@^1.1.0: 1319 | version "1.1.0" 1320 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1321 | 1322 | is-windows@^1.0.1, is-windows@^1.0.2: 1323 | version "1.0.2" 1324 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1325 | 1326 | is-wsl@^1.1.0: 1327 | version "1.1.0" 1328 | resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1329 | 1330 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1331 | version "1.0.0" 1332 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1333 | 1334 | isexe@^2.0.0: 1335 | version "2.0.0" 1336 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1337 | 1338 | isobject@^2.0.0: 1339 | version "2.1.0" 1340 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1341 | dependencies: 1342 | isarray "1.0.0" 1343 | 1344 | isobject@^3.0.0, isobject@^3.0.1: 1345 | version "3.0.1" 1346 | resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1347 | 1348 | json-parse-better-errors@^1.0.2: 1349 | version "1.0.2" 1350 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1351 | 1352 | json-schema-traverse@^0.4.1: 1353 | version "0.4.1" 1354 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1355 | 1356 | json5@^1.0.1: 1357 | version "1.0.1" 1358 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1359 | dependencies: 1360 | minimist "^1.2.0" 1361 | 1362 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1363 | version "3.2.2" 1364 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1365 | dependencies: 1366 | is-buffer "^1.1.5" 1367 | 1368 | kind-of@^4.0.0: 1369 | version "4.0.0" 1370 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1371 | dependencies: 1372 | is-buffer "^1.1.5" 1373 | 1374 | kind-of@^5.0.0: 1375 | version "5.1.0" 1376 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1377 | 1378 | kind-of@^6.0.0, kind-of@^6.0.2: 1379 | version "6.0.2" 1380 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1381 | 1382 | lcid@^2.0.0: 1383 | version "2.0.0" 1384 | resolved "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 1385 | dependencies: 1386 | invert-kv "^2.0.0" 1387 | 1388 | loader-runner@^2.4.0: 1389 | version "2.4.0" 1390 | resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 1391 | 1392 | loader-utils@1.2.3, loader-utils@^1.2.3: 1393 | version "1.2.3" 1394 | resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" 1395 | dependencies: 1396 | big.js "^5.2.2" 1397 | emojis-list "^2.0.0" 1398 | json5 "^1.0.1" 1399 | 1400 | locate-path@^3.0.0: 1401 | version "3.0.0" 1402 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1403 | dependencies: 1404 | p-locate "^3.0.0" 1405 | path-exists "^3.0.0" 1406 | 1407 | lodash@^4.17.10: 1408 | version "4.17.15" 1409 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1410 | 1411 | lru-cache@^5.1.1: 1412 | version "5.1.1" 1413 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1414 | dependencies: 1415 | yallist "^3.0.2" 1416 | 1417 | make-dir@^2.0.0: 1418 | version "2.1.0" 1419 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 1420 | dependencies: 1421 | pify "^4.0.1" 1422 | semver "^5.6.0" 1423 | 1424 | mamacro@^0.0.3: 1425 | version "0.0.3" 1426 | resolved "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" 1427 | 1428 | map-age-cleaner@^0.1.1: 1429 | version "0.1.3" 1430 | resolved "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 1431 | dependencies: 1432 | p-defer "^1.0.0" 1433 | 1434 | map-cache@^0.2.2: 1435 | version "0.2.2" 1436 | resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1437 | 1438 | map-visit@^1.0.0: 1439 | version "1.0.0" 1440 | resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1441 | dependencies: 1442 | object-visit "^1.0.0" 1443 | 1444 | md5.js@^1.3.4: 1445 | version "1.3.5" 1446 | resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 1447 | dependencies: 1448 | hash-base "^3.0.0" 1449 | inherits "^2.0.1" 1450 | safe-buffer "^5.1.2" 1451 | 1452 | mem@^4.0.0: 1453 | version "4.3.0" 1454 | resolved "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" 1455 | dependencies: 1456 | map-age-cleaner "^0.1.1" 1457 | mimic-fn "^2.0.0" 1458 | p-is-promise "^2.0.0" 1459 | 1460 | memory-fs@^0.4.0, memory-fs@^0.4.1: 1461 | version "0.4.1" 1462 | resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1463 | dependencies: 1464 | errno "^0.1.3" 1465 | readable-stream "^2.0.1" 1466 | 1467 | micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: 1468 | version "3.1.10" 1469 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1470 | dependencies: 1471 | arr-diff "^4.0.0" 1472 | array-unique "^0.3.2" 1473 | braces "^2.3.1" 1474 | define-property "^2.0.2" 1475 | extend-shallow "^3.0.2" 1476 | extglob "^2.0.4" 1477 | fragment-cache "^0.2.1" 1478 | kind-of "^6.0.2" 1479 | nanomatch "^1.2.9" 1480 | object.pick "^1.3.0" 1481 | regex-not "^1.0.0" 1482 | snapdragon "^0.8.1" 1483 | to-regex "^3.0.2" 1484 | 1485 | miller-rabin@^4.0.0: 1486 | version "4.0.1" 1487 | resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1488 | dependencies: 1489 | bn.js "^4.0.0" 1490 | brorand "^1.0.1" 1491 | 1492 | mime@^2.0.3: 1493 | version "2.4.4" 1494 | resolved "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" 1495 | 1496 | mimic-fn@^2.0.0: 1497 | version "2.1.0" 1498 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1499 | 1500 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1501 | version "1.0.1" 1502 | resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1503 | 1504 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1505 | version "1.0.1" 1506 | resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1507 | 1508 | minimatch@^3.0.4: 1509 | version "3.0.4" 1510 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1511 | dependencies: 1512 | brace-expansion "^1.1.7" 1513 | 1514 | minimist@0.0.8: 1515 | version "0.0.8" 1516 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1517 | 1518 | minimist@^1.2.0: 1519 | version "1.2.0" 1520 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1521 | 1522 | minipass@^2.2.1, minipass@^2.3.5: 1523 | version "2.3.5" 1524 | resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1525 | dependencies: 1526 | safe-buffer "^5.1.2" 1527 | yallist "^3.0.0" 1528 | 1529 | minizlib@^1.2.1: 1530 | version "1.2.1" 1531 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 1532 | dependencies: 1533 | minipass "^2.2.1" 1534 | 1535 | mississippi@^3.0.0: 1536 | version "3.0.0" 1537 | resolved "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" 1538 | dependencies: 1539 | concat-stream "^1.5.0" 1540 | duplexify "^3.4.2" 1541 | end-of-stream "^1.1.0" 1542 | flush-write-stream "^1.0.0" 1543 | from2 "^2.1.0" 1544 | parallel-transform "^1.1.0" 1545 | pump "^3.0.0" 1546 | pumpify "^1.3.3" 1547 | stream-each "^1.1.0" 1548 | through2 "^2.0.0" 1549 | 1550 | mixin-deep@^1.2.0: 1551 | version "1.3.2" 1552 | resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 1553 | dependencies: 1554 | for-in "^1.0.2" 1555 | is-extendable "^1.0.1" 1556 | 1557 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 1558 | version "0.5.1" 1559 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1560 | dependencies: 1561 | minimist "0.0.8" 1562 | 1563 | move-concurrently@^1.0.1: 1564 | version "1.0.1" 1565 | resolved "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 1566 | dependencies: 1567 | aproba "^1.1.1" 1568 | copy-concurrently "^1.0.0" 1569 | fs-write-stream-atomic "^1.0.8" 1570 | mkdirp "^0.5.1" 1571 | rimraf "^2.5.4" 1572 | run-queue "^1.0.3" 1573 | 1574 | ms@2.0.0: 1575 | version "2.0.0" 1576 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1577 | 1578 | ms@^2.0.0, ms@^2.1.1: 1579 | version "2.1.2" 1580 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1581 | 1582 | nan@^2.12.1: 1583 | version "2.14.0" 1584 | resolved "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 1585 | 1586 | nanomatch@^1.2.9: 1587 | version "1.2.13" 1588 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1589 | dependencies: 1590 | arr-diff "^4.0.0" 1591 | array-unique "^0.3.2" 1592 | define-property "^2.0.2" 1593 | extend-shallow "^3.0.2" 1594 | fragment-cache "^0.2.1" 1595 | is-windows "^1.0.2" 1596 | kind-of "^6.0.2" 1597 | object.pick "^1.3.0" 1598 | regex-not "^1.0.0" 1599 | snapdragon "^0.8.1" 1600 | to-regex "^3.0.1" 1601 | 1602 | needle@^2.2.1: 1603 | version "2.4.0" 1604 | resolved "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" 1605 | dependencies: 1606 | debug "^3.2.6" 1607 | iconv-lite "^0.4.4" 1608 | sax "^1.2.4" 1609 | 1610 | neo-async@^2.5.0, neo-async@^2.6.1: 1611 | version "2.6.1" 1612 | resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 1613 | 1614 | nice-try@^1.0.4: 1615 | version "1.0.5" 1616 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1617 | 1618 | node-fetch@^2.2.0: 1619 | version "2.6.0" 1620 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" 1621 | 1622 | node-libs-browser@^2.2.1: 1623 | version "2.2.1" 1624 | resolved "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" 1625 | dependencies: 1626 | assert "^1.1.1" 1627 | browserify-zlib "^0.2.0" 1628 | buffer "^4.3.0" 1629 | console-browserify "^1.1.0" 1630 | constants-browserify "^1.0.0" 1631 | crypto-browserify "^3.11.0" 1632 | domain-browser "^1.1.1" 1633 | events "^3.0.0" 1634 | https-browserify "^1.0.0" 1635 | os-browserify "^0.3.0" 1636 | path-browserify "0.0.1" 1637 | process "^0.11.10" 1638 | punycode "^1.2.4" 1639 | querystring-es3 "^0.2.0" 1640 | readable-stream "^2.3.3" 1641 | stream-browserify "^2.0.1" 1642 | stream-http "^2.7.2" 1643 | string_decoder "^1.0.0" 1644 | timers-browserify "^2.0.4" 1645 | tty-browserify "0.0.0" 1646 | url "^0.11.0" 1647 | util "^0.11.0" 1648 | vm-browserify "^1.0.1" 1649 | 1650 | node-pre-gyp@^0.12.0: 1651 | version "0.12.0" 1652 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" 1653 | dependencies: 1654 | detect-libc "^1.0.2" 1655 | mkdirp "^0.5.1" 1656 | needle "^2.2.1" 1657 | nopt "^4.0.1" 1658 | npm-packlist "^1.1.6" 1659 | npmlog "^4.0.2" 1660 | rc "^1.2.7" 1661 | rimraf "^2.6.1" 1662 | semver "^5.3.0" 1663 | tar "^4" 1664 | 1665 | nopt@^4.0.1: 1666 | version "4.0.1" 1667 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1668 | dependencies: 1669 | abbrev "1" 1670 | osenv "^0.1.4" 1671 | 1672 | normalize-path@^2.1.1: 1673 | version "2.1.1" 1674 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1675 | dependencies: 1676 | remove-trailing-separator "^1.0.1" 1677 | 1678 | normalize-path@^3.0.0: 1679 | version "3.0.0" 1680 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1681 | 1682 | npm-bundled@^1.0.1: 1683 | version "1.0.6" 1684 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 1685 | 1686 | npm-packlist@^1.1.6: 1687 | version "1.4.4" 1688 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44" 1689 | dependencies: 1690 | ignore-walk "^3.0.1" 1691 | npm-bundled "^1.0.1" 1692 | 1693 | npm-run-path@^2.0.0: 1694 | version "2.0.2" 1695 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1696 | dependencies: 1697 | path-key "^2.0.0" 1698 | 1699 | npmlog@^4.0.2: 1700 | version "4.1.2" 1701 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1702 | dependencies: 1703 | are-we-there-yet "~1.1.2" 1704 | console-control-strings "~1.1.0" 1705 | gauge "~2.7.3" 1706 | set-blocking "~2.0.0" 1707 | 1708 | number-is-nan@^1.0.0: 1709 | version "1.0.1" 1710 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1711 | 1712 | object-assign@^4.1.0, object-assign@^4.1.1: 1713 | version "4.1.1" 1714 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1715 | 1716 | object-copy@^0.1.0: 1717 | version "0.1.0" 1718 | resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1719 | dependencies: 1720 | copy-descriptor "^0.1.0" 1721 | define-property "^0.2.5" 1722 | kind-of "^3.0.3" 1723 | 1724 | object-visit@^1.0.0: 1725 | version "1.0.1" 1726 | resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1727 | dependencies: 1728 | isobject "^3.0.0" 1729 | 1730 | object.pick@^1.3.0: 1731 | version "1.3.0" 1732 | resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1733 | dependencies: 1734 | isobject "^3.0.1" 1735 | 1736 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1737 | version "1.4.0" 1738 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1739 | dependencies: 1740 | wrappy "1" 1741 | 1742 | os-browserify@^0.3.0: 1743 | version "0.3.0" 1744 | resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 1745 | 1746 | os-homedir@^1.0.0: 1747 | version "1.0.2" 1748 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1749 | 1750 | os-locale@^3.1.0: 1751 | version "3.1.0" 1752 | resolved "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 1753 | dependencies: 1754 | execa "^1.0.0" 1755 | lcid "^2.0.0" 1756 | mem "^4.0.0" 1757 | 1758 | os-tmpdir@^1.0.0: 1759 | version "1.0.2" 1760 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1761 | 1762 | osenv@^0.1.4: 1763 | version "0.1.5" 1764 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1765 | dependencies: 1766 | os-homedir "^1.0.0" 1767 | os-tmpdir "^1.0.0" 1768 | 1769 | p-defer@^1.0.0: 1770 | version "1.0.0" 1771 | resolved "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 1772 | 1773 | p-finally@^1.0.0: 1774 | version "1.0.0" 1775 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1776 | 1777 | p-is-promise@^2.0.0: 1778 | version "2.1.0" 1779 | resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" 1780 | 1781 | p-limit@^2.0.0: 1782 | version "2.2.0" 1783 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 1784 | dependencies: 1785 | p-try "^2.0.0" 1786 | 1787 | p-locate@^3.0.0: 1788 | version "3.0.0" 1789 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1790 | dependencies: 1791 | p-limit "^2.0.0" 1792 | 1793 | p-try@^2.0.0: 1794 | version "2.2.0" 1795 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1796 | 1797 | pako@~1.0.5: 1798 | version "1.0.10" 1799 | resolved "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" 1800 | 1801 | parallel-transform@^1.1.0: 1802 | version "1.1.0" 1803 | resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 1804 | dependencies: 1805 | cyclist "~0.2.2" 1806 | inherits "^2.0.3" 1807 | readable-stream "^2.1.5" 1808 | 1809 | parse-asn1@^5.0.0: 1810 | version "5.1.4" 1811 | resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" 1812 | dependencies: 1813 | asn1.js "^4.0.0" 1814 | browserify-aes "^1.0.0" 1815 | create-hash "^1.1.0" 1816 | evp_bytestokey "^1.0.0" 1817 | pbkdf2 "^3.0.3" 1818 | safe-buffer "^5.1.1" 1819 | 1820 | parse-passwd@^1.0.0: 1821 | version "1.0.0" 1822 | resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1823 | 1824 | pascalcase@^0.1.1: 1825 | version "0.1.1" 1826 | resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1827 | 1828 | path-browserify@0.0.1: 1829 | version "0.0.1" 1830 | resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 1831 | 1832 | path-dirname@^1.0.0: 1833 | version "1.0.2" 1834 | resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1835 | 1836 | path-exists@^3.0.0: 1837 | version "3.0.0" 1838 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1839 | 1840 | path-is-absolute@^1.0.0: 1841 | version "1.0.1" 1842 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1843 | 1844 | path-key@^2.0.0, path-key@^2.0.1: 1845 | version "2.0.1" 1846 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1847 | 1848 | pbkdf2@^3.0.3: 1849 | version "3.0.17" 1850 | resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" 1851 | dependencies: 1852 | create-hash "^1.1.2" 1853 | create-hmac "^1.1.4" 1854 | ripemd160 "^2.0.1" 1855 | safe-buffer "^5.0.1" 1856 | sha.js "^2.4.8" 1857 | 1858 | pend@~1.2.0: 1859 | version "1.2.0" 1860 | resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1861 | 1862 | pify@^4.0.1: 1863 | version "4.0.1" 1864 | resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 1865 | 1866 | pkg-dir@^3.0.0: 1867 | version "3.0.0" 1868 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 1869 | dependencies: 1870 | find-up "^3.0.0" 1871 | 1872 | posix-character-classes@^0.1.0: 1873 | version "0.1.1" 1874 | resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1875 | 1876 | process-nextick-args@~2.0.0: 1877 | version "2.0.1" 1878 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1879 | 1880 | process@^0.11.10: 1881 | version "0.11.10" 1882 | resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1883 | 1884 | progress@^2.0.0: 1885 | version "2.0.3" 1886 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1887 | 1888 | promise-inflight@^1.0.1: 1889 | version "1.0.1" 1890 | resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 1891 | 1892 | proxy-from-env@^1.0.0: 1893 | version "1.0.0" 1894 | resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 1895 | 1896 | prr@~1.0.1: 1897 | version "1.0.1" 1898 | resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 1899 | 1900 | public-encrypt@^4.0.0: 1901 | version "4.0.3" 1902 | resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 1903 | dependencies: 1904 | bn.js "^4.1.0" 1905 | browserify-rsa "^4.0.0" 1906 | create-hash "^1.1.0" 1907 | parse-asn1 "^5.0.0" 1908 | randombytes "^2.0.1" 1909 | safe-buffer "^5.1.2" 1910 | 1911 | pump@^2.0.0: 1912 | version "2.0.1" 1913 | resolved "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 1914 | dependencies: 1915 | end-of-stream "^1.1.0" 1916 | once "^1.3.1" 1917 | 1918 | pump@^3.0.0: 1919 | version "3.0.0" 1920 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1921 | dependencies: 1922 | end-of-stream "^1.1.0" 1923 | once "^1.3.1" 1924 | 1925 | pumpify@^1.3.3: 1926 | version "1.5.1" 1927 | resolved "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 1928 | dependencies: 1929 | duplexify "^3.6.0" 1930 | inherits "^2.0.3" 1931 | pump "^2.0.0" 1932 | 1933 | punycode@1.3.2: 1934 | version "1.3.2" 1935 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1936 | 1937 | punycode@^1.2.4: 1938 | version "1.4.1" 1939 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1940 | 1941 | punycode@^2.1.0: 1942 | version "2.1.1" 1943 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1944 | 1945 | puppeteer@1.7.0: 1946 | version "1.7.0" 1947 | resolved "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0.tgz#edcba2300a50847202c0f19fd15e7a96171ff3bd" 1948 | dependencies: 1949 | debug "^3.1.0" 1950 | extract-zip "^1.6.6" 1951 | https-proxy-agent "^2.2.1" 1952 | mime "^2.0.3" 1953 | progress "^2.0.0" 1954 | proxy-from-env "^1.0.0" 1955 | rimraf "^2.6.1" 1956 | ws "^5.1.1" 1957 | 1958 | querystring-es3@^0.2.0: 1959 | version "0.2.1" 1960 | resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1961 | 1962 | querystring@0.2.0: 1963 | version "0.2.0" 1964 | resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1965 | 1966 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 1967 | version "2.1.0" 1968 | resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1969 | dependencies: 1970 | safe-buffer "^5.1.0" 1971 | 1972 | randomfill@^1.0.3: 1973 | version "1.0.4" 1974 | resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 1975 | dependencies: 1976 | randombytes "^2.0.5" 1977 | safe-buffer "^5.1.0" 1978 | 1979 | rc@^1.2.7: 1980 | version "1.2.8" 1981 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1982 | dependencies: 1983 | deep-extend "^0.6.0" 1984 | ini "~1.3.0" 1985 | minimist "^1.2.0" 1986 | strip-json-comments "~2.0.1" 1987 | 1988 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: 1989 | version "2.3.6" 1990 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1991 | dependencies: 1992 | core-util-is "~1.0.0" 1993 | inherits "~2.0.3" 1994 | isarray "~1.0.0" 1995 | process-nextick-args "~2.0.0" 1996 | safe-buffer "~5.1.1" 1997 | string_decoder "~1.1.1" 1998 | util-deprecate "~1.0.1" 1999 | 2000 | readdirp@^2.2.1: 2001 | version "2.2.1" 2002 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2003 | dependencies: 2004 | graceful-fs "^4.1.11" 2005 | micromatch "^3.1.10" 2006 | readable-stream "^2.0.2" 2007 | 2008 | regex-not@^1.0.0, regex-not@^1.0.2: 2009 | version "1.0.2" 2010 | resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2011 | dependencies: 2012 | extend-shallow "^3.0.2" 2013 | safe-regex "^1.1.0" 2014 | 2015 | remove-trailing-separator@^1.0.1: 2016 | version "1.1.0" 2017 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2018 | 2019 | repeat-element@^1.1.2: 2020 | version "1.1.3" 2021 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2022 | 2023 | repeat-string@^1.6.1: 2024 | version "1.6.1" 2025 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2026 | 2027 | require-directory@^2.1.1: 2028 | version "2.1.1" 2029 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2030 | 2031 | require-main-filename@^2.0.0: 2032 | version "2.0.0" 2033 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2034 | 2035 | resolve-cwd@^2.0.0: 2036 | version "2.0.0" 2037 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2038 | dependencies: 2039 | resolve-from "^3.0.0" 2040 | 2041 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2042 | version "1.0.1" 2043 | resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 2044 | dependencies: 2045 | expand-tilde "^2.0.0" 2046 | global-modules "^1.0.0" 2047 | 2048 | resolve-from@^3.0.0: 2049 | version "3.0.0" 2050 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2051 | 2052 | resolve-url@^0.2.1: 2053 | version "0.2.1" 2054 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2055 | 2056 | ret@~0.1.10: 2057 | version "0.1.15" 2058 | resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2059 | 2060 | rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: 2061 | version "2.6.3" 2062 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2063 | dependencies: 2064 | glob "^7.1.3" 2065 | 2066 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2067 | version "2.0.2" 2068 | resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2069 | dependencies: 2070 | hash-base "^3.0.0" 2071 | inherits "^2.0.1" 2072 | 2073 | run-queue@^1.0.0, run-queue@^1.0.3: 2074 | version "1.0.3" 2075 | resolved "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 2076 | dependencies: 2077 | aproba "^1.1.1" 2078 | 2079 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: 2080 | version "5.2.0" 2081 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 2082 | 2083 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2084 | version "5.1.2" 2085 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2086 | 2087 | safe-regex@^1.1.0: 2088 | version "1.1.0" 2089 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2090 | dependencies: 2091 | ret "~0.1.10" 2092 | 2093 | "safer-buffer@>= 2.1.2 < 3": 2094 | version "2.1.2" 2095 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2096 | 2097 | sax@^1.2.4: 2098 | version "1.2.4" 2099 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2100 | 2101 | schema-utils@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" 2104 | dependencies: 2105 | ajv "^6.1.0" 2106 | ajv-errors "^1.0.0" 2107 | ajv-keywords "^3.1.0" 2108 | 2109 | semver@^5.3.0, semver@^5.5.0, semver@^5.6.0: 2110 | version "5.7.0" 2111 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2112 | 2113 | serialize-javascript@^1.7.0: 2114 | version "1.7.0" 2115 | resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" 2116 | 2117 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2118 | version "2.0.0" 2119 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2120 | 2121 | set-value@^2.0.0, set-value@^2.0.1: 2122 | version "2.0.1" 2123 | resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 2124 | dependencies: 2125 | extend-shallow "^2.0.1" 2126 | is-extendable "^0.1.1" 2127 | is-plain-object "^2.0.3" 2128 | split-string "^3.0.1" 2129 | 2130 | setimmediate@^1.0.4: 2131 | version "1.0.5" 2132 | resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2133 | 2134 | sha.js@^2.4.0, sha.js@^2.4.8: 2135 | version "2.4.11" 2136 | resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2137 | dependencies: 2138 | inherits "^2.0.1" 2139 | safe-buffer "^5.0.1" 2140 | 2141 | shebang-command@^1.2.0: 2142 | version "1.2.0" 2143 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2144 | dependencies: 2145 | shebang-regex "^1.0.0" 2146 | 2147 | shebang-regex@^1.0.0: 2148 | version "1.0.0" 2149 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2150 | 2151 | signal-exit@^3.0.0: 2152 | version "3.0.2" 2153 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2154 | 2155 | snapdragon-node@^2.0.1: 2156 | version "2.1.1" 2157 | resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2158 | dependencies: 2159 | define-property "^1.0.0" 2160 | isobject "^3.0.0" 2161 | snapdragon-util "^3.0.1" 2162 | 2163 | snapdragon-util@^3.0.1: 2164 | version "3.0.1" 2165 | resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2166 | dependencies: 2167 | kind-of "^3.2.0" 2168 | 2169 | snapdragon@^0.8.1: 2170 | version "0.8.2" 2171 | resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2172 | dependencies: 2173 | base "^0.11.1" 2174 | debug "^2.2.0" 2175 | define-property "^0.2.5" 2176 | extend-shallow "^2.0.1" 2177 | map-cache "^0.2.2" 2178 | source-map "^0.5.6" 2179 | source-map-resolve "^0.5.0" 2180 | use "^3.1.0" 2181 | 2182 | source-list-map@^2.0.0: 2183 | version "2.0.1" 2184 | resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 2185 | 2186 | source-map-resolve@^0.5.0: 2187 | version "0.5.2" 2188 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2189 | dependencies: 2190 | atob "^2.1.1" 2191 | decode-uri-component "^0.2.0" 2192 | resolve-url "^0.2.1" 2193 | source-map-url "^0.4.0" 2194 | urix "^0.1.0" 2195 | 2196 | source-map-support@~0.5.12: 2197 | version "0.5.13" 2198 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2199 | dependencies: 2200 | buffer-from "^1.0.0" 2201 | source-map "^0.6.0" 2202 | 2203 | source-map-url@^0.4.0: 2204 | version "0.4.0" 2205 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2206 | 2207 | source-map@^0.5.6: 2208 | version "0.5.7" 2209 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2210 | 2211 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2212 | version "0.6.1" 2213 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2214 | 2215 | split-string@^3.0.1, split-string@^3.0.2: 2216 | version "3.1.0" 2217 | resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2218 | dependencies: 2219 | extend-shallow "^3.0.0" 2220 | 2221 | ssri@^6.0.1: 2222 | version "6.0.1" 2223 | resolved "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" 2224 | dependencies: 2225 | figgy-pudding "^3.5.1" 2226 | 2227 | static-extend@^0.1.1: 2228 | version "0.1.2" 2229 | resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2230 | dependencies: 2231 | define-property "^0.2.5" 2232 | object-copy "^0.1.0" 2233 | 2234 | stream-browserify@^2.0.1: 2235 | version "2.0.2" 2236 | resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 2237 | dependencies: 2238 | inherits "~2.0.1" 2239 | readable-stream "^2.0.2" 2240 | 2241 | stream-each@^1.1.0: 2242 | version "1.2.3" 2243 | resolved "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" 2244 | dependencies: 2245 | end-of-stream "^1.1.0" 2246 | stream-shift "^1.0.0" 2247 | 2248 | stream-http@^2.7.2: 2249 | version "2.8.3" 2250 | resolved "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 2251 | dependencies: 2252 | builtin-status-codes "^3.0.0" 2253 | inherits "^2.0.1" 2254 | readable-stream "^2.3.6" 2255 | to-arraybuffer "^1.0.0" 2256 | xtend "^4.0.0" 2257 | 2258 | stream-shift@^1.0.0: 2259 | version "1.0.0" 2260 | resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2261 | 2262 | string-width@^1.0.1: 2263 | version "1.0.2" 2264 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2265 | dependencies: 2266 | code-point-at "^1.0.0" 2267 | is-fullwidth-code-point "^1.0.0" 2268 | strip-ansi "^3.0.0" 2269 | 2270 | "string-width@^1.0.2 || 2": 2271 | version "2.1.1" 2272 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2273 | dependencies: 2274 | is-fullwidth-code-point "^2.0.0" 2275 | strip-ansi "^4.0.0" 2276 | 2277 | string-width@^3.0.0, string-width@^3.1.0: 2278 | version "3.1.0" 2279 | resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2280 | dependencies: 2281 | emoji-regex "^7.0.1" 2282 | is-fullwidth-code-point "^2.0.0" 2283 | strip-ansi "^5.1.0" 2284 | 2285 | string_decoder@^1.0.0: 2286 | version "1.3.0" 2287 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2288 | dependencies: 2289 | safe-buffer "~5.2.0" 2290 | 2291 | string_decoder@~1.1.1: 2292 | version "1.1.1" 2293 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2294 | dependencies: 2295 | safe-buffer "~5.1.0" 2296 | 2297 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2298 | version "3.0.1" 2299 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2300 | dependencies: 2301 | ansi-regex "^2.0.0" 2302 | 2303 | strip-ansi@^4.0.0: 2304 | version "4.0.0" 2305 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2306 | dependencies: 2307 | ansi-regex "^3.0.0" 2308 | 2309 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 2310 | version "5.2.0" 2311 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2312 | dependencies: 2313 | ansi-regex "^4.1.0" 2314 | 2315 | strip-eof@^1.0.0: 2316 | version "1.0.0" 2317 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2318 | 2319 | strip-json-comments@~2.0.1: 2320 | version "2.0.1" 2321 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2322 | 2323 | supports-color@6.1.0: 2324 | version "6.1.0" 2325 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 2326 | dependencies: 2327 | has-flag "^3.0.0" 2328 | 2329 | supports-color@^2.0.0: 2330 | version "2.0.0" 2331 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2332 | 2333 | supports-color@^5.3.0: 2334 | version "5.5.0" 2335 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2336 | dependencies: 2337 | has-flag "^3.0.0" 2338 | 2339 | tapable@^1.0.0, tapable@^1.1.3: 2340 | version "1.1.3" 2341 | resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 2342 | 2343 | tar@^4: 2344 | version "4.4.10" 2345 | resolved "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" 2346 | dependencies: 2347 | chownr "^1.1.1" 2348 | fs-minipass "^1.2.5" 2349 | minipass "^2.3.5" 2350 | minizlib "^1.2.1" 2351 | mkdirp "^0.5.0" 2352 | safe-buffer "^5.1.2" 2353 | yallist "^3.0.3" 2354 | 2355 | terser-webpack-plugin@^1.4.1: 2356 | version "1.4.1" 2357 | resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" 2358 | dependencies: 2359 | cacache "^12.0.2" 2360 | find-cache-dir "^2.1.0" 2361 | is-wsl "^1.1.0" 2362 | schema-utils "^1.0.0" 2363 | serialize-javascript "^1.7.0" 2364 | source-map "^0.6.1" 2365 | terser "^4.1.2" 2366 | webpack-sources "^1.4.0" 2367 | worker-farm "^1.7.0" 2368 | 2369 | terser@^4.1.2: 2370 | version "4.1.3" 2371 | resolved "https://registry.npmjs.org/terser/-/terser-4.1.3.tgz#6074fbcf3517561c3272ea885f422c7a8c32d689" 2372 | dependencies: 2373 | commander "^2.20.0" 2374 | source-map "~0.6.1" 2375 | source-map-support "~0.5.12" 2376 | 2377 | through2@^2.0.0: 2378 | version "2.0.5" 2379 | resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2380 | dependencies: 2381 | readable-stream "~2.3.6" 2382 | xtend "~4.0.1" 2383 | 2384 | timers-browserify@^2.0.4: 2385 | version "2.0.10" 2386 | resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" 2387 | dependencies: 2388 | setimmediate "^1.0.4" 2389 | 2390 | to-arraybuffer@^1.0.0: 2391 | version "1.0.1" 2392 | resolved "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2393 | 2394 | to-object-path@^0.3.0: 2395 | version "0.3.0" 2396 | resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2397 | dependencies: 2398 | kind-of "^3.0.2" 2399 | 2400 | to-regex-range@^2.1.0: 2401 | version "2.1.1" 2402 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2403 | dependencies: 2404 | is-number "^3.0.0" 2405 | repeat-string "^1.6.1" 2406 | 2407 | to-regex@^3.0.1, to-regex@^3.0.2: 2408 | version "3.0.2" 2409 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2410 | dependencies: 2411 | define-property "^2.0.2" 2412 | extend-shallow "^3.0.2" 2413 | regex-not "^1.0.2" 2414 | safe-regex "^1.1.0" 2415 | 2416 | tslib@^1.9.0: 2417 | version "1.10.0" 2418 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 2419 | 2420 | tty-browserify@0.0.0: 2421 | version "0.0.0" 2422 | resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2423 | 2424 | typedarray@^0.0.6: 2425 | version "0.0.6" 2426 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2427 | 2428 | union-value@^1.0.0: 2429 | version "1.0.1" 2430 | resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 2431 | dependencies: 2432 | arr-union "^3.1.0" 2433 | get-value "^2.0.6" 2434 | is-extendable "^0.1.1" 2435 | set-value "^2.0.1" 2436 | 2437 | unique-filename@^1.1.1: 2438 | version "1.1.1" 2439 | resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 2440 | dependencies: 2441 | unique-slug "^2.0.0" 2442 | 2443 | unique-slug@^2.0.0: 2444 | version "2.0.2" 2445 | resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" 2446 | dependencies: 2447 | imurmurhash "^0.1.4" 2448 | 2449 | unset-value@^1.0.0: 2450 | version "1.0.0" 2451 | resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2452 | dependencies: 2453 | has-value "^0.3.1" 2454 | isobject "^3.0.0" 2455 | 2456 | upath@^1.1.1: 2457 | version "1.1.2" 2458 | resolved "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" 2459 | 2460 | uri-js@^4.2.2: 2461 | version "4.2.2" 2462 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2463 | dependencies: 2464 | punycode "^2.1.0" 2465 | 2466 | urix@^0.1.0: 2467 | version "0.1.0" 2468 | resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2469 | 2470 | url@^0.11.0: 2471 | version "0.11.0" 2472 | resolved "https://registry.npmjs.org/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2473 | dependencies: 2474 | punycode "1.3.2" 2475 | querystring "0.2.0" 2476 | 2477 | use@^3.1.0: 2478 | version "3.1.1" 2479 | resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2480 | 2481 | util-deprecate@~1.0.1: 2482 | version "1.0.2" 2483 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2484 | 2485 | util@0.10.3: 2486 | version "0.10.3" 2487 | resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2488 | dependencies: 2489 | inherits "2.0.1" 2490 | 2491 | util@^0.11.0: 2492 | version "0.11.1" 2493 | resolved "https://registry.npmjs.org/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" 2494 | dependencies: 2495 | inherits "2.0.3" 2496 | 2497 | v8-compile-cache@2.0.3: 2498 | version "2.0.3" 2499 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" 2500 | 2501 | vm-browserify@^1.0.1: 2502 | version "1.1.0" 2503 | resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" 2504 | 2505 | watchpack@^1.6.0: 2506 | version "1.6.0" 2507 | resolved "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" 2508 | dependencies: 2509 | chokidar "^2.0.2" 2510 | graceful-fs "^4.1.2" 2511 | neo-async "^2.5.0" 2512 | 2513 | webpack-cli@^3.1.0: 2514 | version "3.3.6" 2515 | resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.6.tgz#2c8c399a2642133f8d736a359007a052e060032c" 2516 | dependencies: 2517 | chalk "2.4.2" 2518 | cross-spawn "6.0.5" 2519 | enhanced-resolve "4.1.0" 2520 | findup-sync "3.0.0" 2521 | global-modules "2.0.0" 2522 | import-local "2.0.0" 2523 | interpret "1.2.0" 2524 | loader-utils "1.2.3" 2525 | supports-color "6.1.0" 2526 | v8-compile-cache "2.0.3" 2527 | yargs "13.2.4" 2528 | 2529 | webpack-sources@^1.4.0, webpack-sources@^1.4.1: 2530 | version "1.4.3" 2531 | resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" 2532 | dependencies: 2533 | source-list-map "^2.0.0" 2534 | source-map "~0.6.1" 2535 | 2536 | webpack@^4.17.1: 2537 | version "4.39.1" 2538 | resolved "https://registry.npmjs.org/webpack/-/webpack-4.39.1.tgz#60ed9fb2b72cd60f26ea526c404d2a4cc97a1bd8" 2539 | dependencies: 2540 | "@webassemblyjs/ast" "1.8.5" 2541 | "@webassemblyjs/helper-module-context" "1.8.5" 2542 | "@webassemblyjs/wasm-edit" "1.8.5" 2543 | "@webassemblyjs/wasm-parser" "1.8.5" 2544 | acorn "^6.2.1" 2545 | ajv "^6.10.2" 2546 | ajv-keywords "^3.4.1" 2547 | chrome-trace-event "^1.0.2" 2548 | enhanced-resolve "^4.1.0" 2549 | eslint-scope "^4.0.3" 2550 | json-parse-better-errors "^1.0.2" 2551 | loader-runner "^2.4.0" 2552 | loader-utils "^1.2.3" 2553 | memory-fs "^0.4.1" 2554 | micromatch "^3.1.10" 2555 | mkdirp "^0.5.1" 2556 | neo-async "^2.6.1" 2557 | node-libs-browser "^2.2.1" 2558 | schema-utils "^1.0.0" 2559 | tapable "^1.1.3" 2560 | terser-webpack-plugin "^1.4.1" 2561 | watchpack "^1.6.0" 2562 | webpack-sources "^1.4.1" 2563 | 2564 | which-module@^2.0.0: 2565 | version "2.0.0" 2566 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2567 | 2568 | which@^1.2.14, which@^1.2.9, which@^1.3.1: 2569 | version "1.3.1" 2570 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2571 | dependencies: 2572 | isexe "^2.0.0" 2573 | 2574 | wide-align@^1.1.0: 2575 | version "1.1.3" 2576 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2577 | dependencies: 2578 | string-width "^1.0.2 || 2" 2579 | 2580 | worker-farm@^1.7.0: 2581 | version "1.7.0" 2582 | resolved "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" 2583 | dependencies: 2584 | errno "~0.1.7" 2585 | 2586 | wrap-ansi@^5.1.0: 2587 | version "5.1.0" 2588 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 2589 | dependencies: 2590 | ansi-styles "^3.2.0" 2591 | string-width "^3.0.0" 2592 | strip-ansi "^5.0.0" 2593 | 2594 | wrappy@1: 2595 | version "1.0.2" 2596 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2597 | 2598 | ws@^5.1.1: 2599 | version "5.2.2" 2600 | resolved "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 2601 | dependencies: 2602 | async-limiter "~1.0.0" 2603 | 2604 | ws@^6.0.0: 2605 | version "6.2.1" 2606 | resolved "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" 2607 | dependencies: 2608 | async-limiter "~1.0.0" 2609 | 2610 | xtend@^4.0.0, xtend@~4.0.1: 2611 | version "4.0.2" 2612 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2613 | 2614 | y18n@^4.0.0: 2615 | version "4.0.0" 2616 | resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 2617 | 2618 | yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: 2619 | version "3.0.3" 2620 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 2621 | 2622 | yargs-parser@^13.1.0: 2623 | version "13.1.1" 2624 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" 2625 | dependencies: 2626 | camelcase "^5.0.0" 2627 | decamelize "^1.2.0" 2628 | 2629 | yargs@13.2.4: 2630 | version "13.2.4" 2631 | resolved "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" 2632 | dependencies: 2633 | cliui "^5.0.0" 2634 | find-up "^3.0.0" 2635 | get-caller-file "^2.0.1" 2636 | os-locale "^3.1.0" 2637 | require-directory "^2.1.1" 2638 | require-main-filename "^2.0.0" 2639 | set-blocking "^2.0.0" 2640 | string-width "^3.0.0" 2641 | which-module "^2.0.0" 2642 | y18n "^4.0.0" 2643 | yargs-parser "^13.1.0" 2644 | 2645 | yauzl@2.4.1: 2646 | version "2.4.1" 2647 | resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 2648 | dependencies: 2649 | fd-slicer "~1.0.1" 2650 | --------------------------------------------------------------------------------