├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── audio ├── arrow.wav ├── cut.wav ├── delete.wav ├── enter.wav ├── key.wav ├── paste.wav ├── sounder.exe ├── spacebar.wav └── tab.wav ├── icon.png ├── package-lock.json ├── package.json ├── src ├── extension.ts ├── player.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json └── tslint.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Deploy Extension 2 | on: 3 | release: 4 | types: 5 | - published 6 | workflow_dispatch: 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - uses: actions/setup-node@v1 14 | with: 15 | node-version: 16 16 | 17 | - name: Install dependencies 18 | run: npm ci 19 | 20 | - name: Publish to Visual Studio Marketplace 21 | uses: HaaLeo/publish-vscode-extension@v1 22 | with: 23 | pat: ${{ secrets.VSCE_PAT }} 24 | registryUrl: https://marketplace.visualstudio.com 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test/ 4 | *.vsix 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "ms-vscode.vscode-typescript-tslint-plugin" 6 | ] 7 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that compiles the extension and then opens it inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Run Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ], 16 | "outFiles": [ 17 | "${workspaceFolder}/out/**/*.js" 18 | ], 19 | "preLaunchTask": "${defaultBuildTask}" 20 | }, 21 | { 22 | "name": "Extension Tests", 23 | "type": "extensionHost", 24 | "request": "launch", 25 | "runtimeExecutable": "${execPath}", 26 | "args": [ 27 | "--extensionDevelopmentPath=${workspaceFolder}", 28 | "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" 29 | ], 30 | "outFiles": [ 31 | "${workspaceFolder}/out/test/**/*.js" 32 | ], 33 | "preLaunchTask": "${defaultBuildTask}" 34 | } 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.exclude": { 4 | "out": false // set this to true to hide the "out" folder with the compiled JS files 5 | }, 6 | "search.exclude": { 7 | "out": true // set this to false to include "out" folder in search results 8 | }, 9 | // Turn off tsc task auto detection since we have the necessary tasks as npm scripts 10 | "typescript.tsc.autoDetect": "off" 11 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | // See https://go.microsoft.com/fwlink/?LinkId=733558 2 | // for the documentation about the tasks.json format 3 | { 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "type": "npm", 8 | "script": "watch", 9 | "problemMatcher": "$tsc-watch", 10 | "isBackground": true, 11 | "presentation": { 12 | "reveal": "never" 13 | }, 14 | "group": { 15 | "kind": "build", 16 | "isDefault": true 17 | } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | out/test/** 4 | src/** 5 | .gitignore 6 | vsc-extension-quickstart.md 7 | **/tsconfig.json 8 | **/tslint.json 9 | **/*.map 10 | **/*.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hacker-sounds 2 | 3 | [![Visual Studio Marketplace](https://img.shields.io/vscode-marketplace/v/mattogodoy.hacker-sounds.svg)](https://marketplace.visualstudio.com/items?itemName=mattogodoy.hacker-sounds) 4 | [![Visual Studio Marketplace](https://img.shields.io/vscode-marketplace/d/mattogodoy.hacker-sounds.svg)](https://marketplace.visualstudio.com/items?itemName=mattogodoy.hacker-sounds) 5 | [![Visual Studio Marketplace](https://img.shields.io/vscode-marketplace/r/mattogodoy.hacker-sounds.svg)](https://marketplace.visualstudio.com/items?itemName=mattogodoy.hacker-sounds) 6 | [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/jengjeng/aural-coding-vscode/blob/master/LICENSE) 7 | 8 | This Visual Studio Code extension automatically turns you into a very skilled hacker by playing movie-like sounds while you write code. 9 | 10 | ## Requirements 11 | 12 | ### Linux 13 | 14 | On Linux, you will need to have mplayer installed and on your PATH to get this extension working. 15 | 16 | **Debian based** 17 | 18 | ```bash 19 | sudo apt-get install mplayer 20 | ``` 21 | 22 | **Red Hat based** 23 | 24 | ```bash 25 | sudo dnf install mplayer 26 | ``` 27 | 28 | **Arch based** 29 | 30 | ```bash 31 | sudo pacman -S mplayer 32 | ``` 33 | 34 | ### Windows and Mac 35 | 36 | No special requirements. 37 | 38 | ## Installation 39 | 40 | Run `code --install-extension mattogodoy.hacker-sounds` 41 | 42 | or search [Hacker Sounds](https://marketplace.visualstudio.com/items?itemName=mattogodoy.hacker-sounds) in Extensions Marketplace. 43 | 44 | ## How to use 45 | 46 | ### Enable / Disable 47 | 48 | Hacker Sounds will start immediately when Visual Studio Code is started. However, you can enable and disable the extension by executing these commands in the Command Palette (Cmd+Shift+P): 49 | 50 | - `Hacker Sounds: Enable` 51 | - `Hacker Sounds: Disable` 52 | 53 | ### Volume control 54 | 55 | You can adjust the volume of the sounds by executing these commands in the Command Palette (Cmd+Shift+P): 56 | 57 | - `Hacker Sounds: Volume Up` 58 | - `Hacker Sounds: Volume Down` 59 | - `Hacker Sounds: Set Volume` 60 | 61 | **NOTE:** The volume adjustments only apply to this extension's sounds. It does not affect the system volume. 62 | 63 | ## Known Issues & Bugs 64 | 65 | The extension is in a very early stage. Please report any issues / bugs you find. 66 | 67 | ## Contributing 68 | 69 | Any pull request is welcome. 70 | 71 | ## Release Notes 72 | 73 | ### 1.4.3 74 | 75 | - Fixed bug in which manually setting the volume went always to minimum or maximum. 76 | - Redacted some of the messages. 77 | 78 | ### 1.4.2 79 | 80 | - Minor fixes 81 | 82 | ### 1.4.1 83 | 84 | - Fixed dependency error 85 | 86 | ### 1.4.0 87 | 88 | - Now you can type the volume level directly using the `Hacker Sounds: Set Volume` command. 89 | - Thanks, [Onur Yüksel](https://github.com/Onuryukselce)! 90 | 91 | ### 1.3.0 92 | 93 | - Now you can adjust volume levels for Mac, Windows and Linux. This feature has not been tested in Linux yet. 94 | - Merged Pull Request [#5](https://github.com/mattogodoy/hacker-sounds/pull/5) 95 | - Thanks, [Jory Liang](https://github.com/liangzr)! 96 | - Replaced [sWavPlayer](https://www.dcmembers.com/skwire/download/swavplayer/) for [sounder](https://www.elifulkerson.com/projects/commandline-wav-player.php) as the Windows sound player with the following benefits: 97 | - Much smaller in size (sounder is 33 KB and sWavPlayer was 878 KB) 98 | - Performance in Windows is greatly improved 99 | - Allows to set the volume 100 | - Updated dependencies 101 | 102 | ### 1.2.0 103 | 104 | - Sounds improved in volume level and quality. 105 | - Thanks, [exoticus](https://github.com/exoticus)! 106 | - Merged Pull Request [#3](https://github.com/mattogodoy/hacker-sounds/pull/3) 107 | - Thanks, [tiansin](https://github.com/tiansin)! 108 | 109 | ### 1.1.1 110 | 111 | - Merged Pull Request [#2](https://github.com/mattogodoy/hacker-sounds/pull/2) 112 | - Thanks, [tiansin](https://github.com/tiansin)! 113 | 114 | ### 1.1.0 115 | 116 | - Refactored part of the code 117 | - New and better sounds 118 | 119 | ### 1.0.3 120 | 121 | Fixed issue [#1](https://github.com/mattogodoy/hacker-sounds/issues/1) 122 | 123 | ### 1.0.2 124 | 125 | Added fix for Windows. It's working now 🎉 126 | 127 | ### 1.0.1 128 | 129 | Updated README information. 130 | 131 | ### 1.0.0 132 | 133 | Initial release. Working on macOS. 134 | 135 | ## Credits 136 | 137 | For Windows, this extension uses the `sounder` light-weight player: 138 | 139 | 140 | ----------------------------------------------------------------------------------------------------------- 141 | 142 | **Hack the world!** 143 | -------------------------------------------------------------------------------- /audio/arrow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/arrow.wav -------------------------------------------------------------------------------- /audio/cut.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/cut.wav -------------------------------------------------------------------------------- /audio/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/delete.wav -------------------------------------------------------------------------------- /audio/enter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/enter.wav -------------------------------------------------------------------------------- /audio/key.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/key.wav -------------------------------------------------------------------------------- /audio/paste.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/paste.wav -------------------------------------------------------------------------------- /audio/sounder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/sounder.exe -------------------------------------------------------------------------------- /audio/spacebar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/spacebar.wav -------------------------------------------------------------------------------- /audio/tab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/audio/tab.wav -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattogodoy/hacker-sounds/08e3e950ebb29a2bcd3d8ad0a48b2b92d5a48d32/icon.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacker-sounds", 3 | "version": "1.4.1", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "hacker-sounds", 9 | "version": "1.4.1", 10 | "license": "MIT", 11 | "dependencies": { 12 | "lodash.debounce": "^4.0.8", 13 | "play-sound": "^1.1.3" 14 | }, 15 | "devDependencies": { 16 | "@types/glob": "^7.1.1", 17 | "@types/lodash.debounce": "^4.0.6", 18 | "@types/mocha": "^5.2.7", 19 | "@types/node": "^12.11.7", 20 | "@types/vscode": "^1.40.0", 21 | "esbuild": "^0.14.23", 22 | "glob": "^7.1.5", 23 | "lodash": "^4.17.21", 24 | "mocha": "^6.2.2", 25 | "tslint": "^5.20.0", 26 | "typescript": "^3.6.4", 27 | "vscode-test": "^1.2.2" 28 | }, 29 | "engines": { 30 | "vscode": "^1.40.0" 31 | } 32 | }, 33 | "node_modules/@babel/code-frame": { 34 | "version": "7.5.5", 35 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", 36 | "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", 37 | "dev": true, 38 | "dependencies": { 39 | "@babel/highlight": "^7.0.0" 40 | } 41 | }, 42 | "node_modules/@babel/highlight": { 43 | "version": "7.5.0", 44 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", 45 | "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", 46 | "dev": true, 47 | "dependencies": { 48 | "chalk": "^2.0.0", 49 | "esutils": "^2.0.2", 50 | "js-tokens": "^4.0.0" 51 | } 52 | }, 53 | "node_modules/@types/events": { 54 | "version": "3.0.0", 55 | "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", 56 | "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", 57 | "dev": true 58 | }, 59 | "node_modules/@types/glob": { 60 | "version": "7.1.1", 61 | "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", 62 | "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", 63 | "dev": true, 64 | "dependencies": { 65 | "@types/events": "*", 66 | "@types/minimatch": "*", 67 | "@types/node": "*" 68 | } 69 | }, 70 | "node_modules/@types/lodash": { 71 | "version": "4.14.151", 72 | "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.151.tgz", 73 | "integrity": "sha512-Zst90IcBX5wnwSu7CAS0vvJkTjTELY4ssKbHiTnGcJgi170uiS8yQDdc3v6S77bRqYQIN1App5a1Pc2lceE5/g==", 74 | "dev": true 75 | }, 76 | "node_modules/@types/lodash.debounce": { 77 | "version": "4.0.6", 78 | "resolved": "https://registry.npmjs.org/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz", 79 | "integrity": "sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ==", 80 | "dev": true, 81 | "dependencies": { 82 | "@types/lodash": "*" 83 | } 84 | }, 85 | "node_modules/@types/minimatch": { 86 | "version": "3.0.3", 87 | "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", 88 | "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", 89 | "dev": true 90 | }, 91 | "node_modules/@types/mocha": { 92 | "version": "5.2.7", 93 | "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-5.2.7.tgz", 94 | "integrity": "sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ==", 95 | "dev": true 96 | }, 97 | "node_modules/@types/node": { 98 | "version": "12.20.45", 99 | "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.45.tgz", 100 | "integrity": "sha512-1Jg2Qv5tuxBqgQV04+wO5u+wmSHbHgpORCJdeCLM+E+YdPElpdHhgywU+M1V1InL8rfOtpqtOjswk+uXTKwx7w==", 101 | "dev": true 102 | }, 103 | "node_modules/@types/vscode": { 104 | "version": "1.40.0", 105 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.40.0.tgz", 106 | "integrity": "sha512-5kEIxL3qVRkwhlMerxO7XuMffa+0LBl+iG2TcRa0NsdoeSFLkt/9hJ02jsi/Kvc6y8OVF2N2P2IHP5S4lWf/5w==", 107 | "dev": true 108 | }, 109 | "node_modules/agent-base": { 110 | "version": "4.3.0", 111 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", 112 | "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", 113 | "dev": true, 114 | "dependencies": { 115 | "es6-promisify": "^5.0.0" 116 | }, 117 | "engines": { 118 | "node": ">= 4.0.0" 119 | } 120 | }, 121 | "node_modules/ansi-colors": { 122 | "version": "3.2.3", 123 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", 124 | "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", 125 | "dev": true, 126 | "engines": { 127 | "node": ">=6" 128 | } 129 | }, 130 | "node_modules/ansi-regex": { 131 | "version": "3.0.0", 132 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 133 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 134 | "dev": true, 135 | "engines": { 136 | "node": ">=4" 137 | } 138 | }, 139 | "node_modules/ansi-styles": { 140 | "version": "3.2.1", 141 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 142 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 143 | "dev": true, 144 | "dependencies": { 145 | "color-convert": "^1.9.0" 146 | }, 147 | "engines": { 148 | "node": ">=4" 149 | } 150 | }, 151 | "node_modules/argparse": { 152 | "version": "1.0.10", 153 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 154 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 155 | "dev": true, 156 | "dependencies": { 157 | "sprintf-js": "~1.0.2" 158 | } 159 | }, 160 | "node_modules/balanced-match": { 161 | "version": "1.0.0", 162 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 163 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 164 | "dev": true 165 | }, 166 | "node_modules/brace-expansion": { 167 | "version": "1.1.11", 168 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 169 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 170 | "dev": true, 171 | "dependencies": { 172 | "balanced-match": "^1.0.0", 173 | "concat-map": "0.0.1" 174 | } 175 | }, 176 | "node_modules/browser-stdout": { 177 | "version": "1.3.1", 178 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 179 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 180 | "dev": true 181 | }, 182 | "node_modules/builtin-modules": { 183 | "version": "1.1.1", 184 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", 185 | "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", 186 | "dev": true, 187 | "engines": { 188 | "node": ">=0.10.0" 189 | } 190 | }, 191 | "node_modules/camelcase": { 192 | "version": "5.3.1", 193 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 194 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 195 | "dev": true, 196 | "engines": { 197 | "node": ">=6" 198 | } 199 | }, 200 | "node_modules/chalk": { 201 | "version": "2.4.2", 202 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 203 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 204 | "dev": true, 205 | "dependencies": { 206 | "ansi-styles": "^3.2.1", 207 | "escape-string-regexp": "^1.0.5", 208 | "supports-color": "^5.3.0" 209 | }, 210 | "engines": { 211 | "node": ">=4" 212 | } 213 | }, 214 | "node_modules/chalk/node_modules/supports-color": { 215 | "version": "5.5.0", 216 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 217 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 218 | "dev": true, 219 | "dependencies": { 220 | "has-flag": "^3.0.0" 221 | }, 222 | "engines": { 223 | "node": ">=4" 224 | } 225 | }, 226 | "node_modules/cliui": { 227 | "version": "5.0.0", 228 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", 229 | "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", 230 | "dev": true, 231 | "dependencies": { 232 | "string-width": "^3.1.0", 233 | "strip-ansi": "^5.2.0", 234 | "wrap-ansi": "^5.1.0" 235 | } 236 | }, 237 | "node_modules/cliui/node_modules/ansi-regex": { 238 | "version": "4.1.0", 239 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 240 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 241 | "dev": true, 242 | "engines": { 243 | "node": ">=6" 244 | } 245 | }, 246 | "node_modules/cliui/node_modules/string-width": { 247 | "version": "3.1.0", 248 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 249 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 250 | "dev": true, 251 | "dependencies": { 252 | "emoji-regex": "^7.0.1", 253 | "is-fullwidth-code-point": "^2.0.0", 254 | "strip-ansi": "^5.1.0" 255 | }, 256 | "engines": { 257 | "node": ">=6" 258 | } 259 | }, 260 | "node_modules/cliui/node_modules/strip-ansi": { 261 | "version": "5.2.0", 262 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 263 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 264 | "dev": true, 265 | "dependencies": { 266 | "ansi-regex": "^4.1.0" 267 | }, 268 | "engines": { 269 | "node": ">=6" 270 | } 271 | }, 272 | "node_modules/color-convert": { 273 | "version": "1.9.3", 274 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 275 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 276 | "dev": true, 277 | "dependencies": { 278 | "color-name": "1.1.3" 279 | } 280 | }, 281 | "node_modules/color-name": { 282 | "version": "1.1.3", 283 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 284 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 285 | "dev": true 286 | }, 287 | "node_modules/commander": { 288 | "version": "2.20.3", 289 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 290 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 291 | "dev": true 292 | }, 293 | "node_modules/concat-map": { 294 | "version": "0.0.1", 295 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 296 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 297 | "dev": true 298 | }, 299 | "node_modules/debug": { 300 | "version": "3.2.6", 301 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 302 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 303 | "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", 304 | "dev": true, 305 | "dependencies": { 306 | "ms": "^2.1.1" 307 | } 308 | }, 309 | "node_modules/decamelize": { 310 | "version": "1.2.0", 311 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 312 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", 313 | "dev": true, 314 | "engines": { 315 | "node": ">=0.10.0" 316 | } 317 | }, 318 | "node_modules/define-properties": { 319 | "version": "1.1.3", 320 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 321 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 322 | "dev": true, 323 | "dependencies": { 324 | "object-keys": "^1.0.12" 325 | }, 326 | "engines": { 327 | "node": ">= 0.4" 328 | } 329 | }, 330 | "node_modules/diff": { 331 | "version": "3.5.0", 332 | "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", 333 | "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", 334 | "dev": true, 335 | "engines": { 336 | "node": ">=0.3.1" 337 | } 338 | }, 339 | "node_modules/emoji-regex": { 340 | "version": "7.0.3", 341 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 342 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 343 | "dev": true 344 | }, 345 | "node_modules/es-abstract": { 346 | "version": "1.16.2", 347 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.16.2.tgz", 348 | "integrity": "sha512-jYo/J8XU2emLXl3OLwfwtuFfuF2w6DYPs+xy9ZfVyPkDcrauu6LYrw/q2TyCtrbc/KUdCiC5e9UajRhgNkVopA==", 349 | "dev": true, 350 | "dependencies": { 351 | "es-to-primitive": "^1.2.1", 352 | "function-bind": "^1.1.1", 353 | "has": "^1.0.3", 354 | "has-symbols": "^1.0.1", 355 | "is-callable": "^1.1.4", 356 | "is-regex": "^1.0.4", 357 | "object-inspect": "^1.7.0", 358 | "object-keys": "^1.1.1", 359 | "string.prototype.trimleft": "^2.1.0", 360 | "string.prototype.trimright": "^2.1.0" 361 | }, 362 | "engines": { 363 | "node": ">= 0.4" 364 | }, 365 | "funding": { 366 | "url": "https://github.com/sponsors/ljharb" 367 | } 368 | }, 369 | "node_modules/es-to-primitive": { 370 | "version": "1.2.1", 371 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 372 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 373 | "dev": true, 374 | "dependencies": { 375 | "is-callable": "^1.1.4", 376 | "is-date-object": "^1.0.1", 377 | "is-symbol": "^1.0.2" 378 | }, 379 | "engines": { 380 | "node": ">= 0.4" 381 | }, 382 | "funding": { 383 | "url": "https://github.com/sponsors/ljharb" 384 | } 385 | }, 386 | "node_modules/es6-promise": { 387 | "version": "4.2.8", 388 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", 389 | "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", 390 | "dev": true 391 | }, 392 | "node_modules/es6-promisify": { 393 | "version": "5.0.0", 394 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", 395 | "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", 396 | "dev": true, 397 | "dependencies": { 398 | "es6-promise": "^4.0.3" 399 | } 400 | }, 401 | "node_modules/esbuild": { 402 | "version": "0.14.23", 403 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.23.tgz", 404 | "integrity": "sha512-XjnIcZ9KB6lfonCa+jRguXyRYcldmkyZ99ieDksqW/C8bnyEX299yA4QH2XcgijCgaddEZePPTgvx/2imsq7Ig==", 405 | "dev": true, 406 | "hasInstallScript": true, 407 | "bin": { 408 | "esbuild": "bin/esbuild" 409 | }, 410 | "engines": { 411 | "node": ">=12" 412 | }, 413 | "optionalDependencies": { 414 | "esbuild-android-arm64": "0.14.23", 415 | "esbuild-darwin-64": "0.14.23", 416 | "esbuild-darwin-arm64": "0.14.23", 417 | "esbuild-freebsd-64": "0.14.23", 418 | "esbuild-freebsd-arm64": "0.14.23", 419 | "esbuild-linux-32": "0.14.23", 420 | "esbuild-linux-64": "0.14.23", 421 | "esbuild-linux-arm": "0.14.23", 422 | "esbuild-linux-arm64": "0.14.23", 423 | "esbuild-linux-mips64le": "0.14.23", 424 | "esbuild-linux-ppc64le": "0.14.23", 425 | "esbuild-linux-riscv64": "0.14.23", 426 | "esbuild-linux-s390x": "0.14.23", 427 | "esbuild-netbsd-64": "0.14.23", 428 | "esbuild-openbsd-64": "0.14.23", 429 | "esbuild-sunos-64": "0.14.23", 430 | "esbuild-windows-32": "0.14.23", 431 | "esbuild-windows-64": "0.14.23", 432 | "esbuild-windows-arm64": "0.14.23" 433 | } 434 | }, 435 | "node_modules/esbuild-android-arm64": { 436 | "version": "0.14.23", 437 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.23.tgz", 438 | "integrity": "sha512-k9sXem++mINrZty1v4FVt6nC5BQCFG4K2geCIUUqHNlTdFnuvcqsY7prcKZLFhqVC1rbcJAr9VSUGFL/vD4vsw==", 439 | "cpu": [ 440 | "arm64" 441 | ], 442 | "dev": true, 443 | "optional": true, 444 | "os": [ 445 | "android" 446 | ], 447 | "engines": { 448 | "node": ">=12" 449 | } 450 | }, 451 | "node_modules/esbuild-darwin-64": { 452 | "version": "0.14.23", 453 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.23.tgz", 454 | "integrity": "sha512-lB0XRbtOYYL1tLcYw8BoBaYsFYiR48RPrA0KfA/7RFTr4MV7Bwy/J4+7nLsVnv9FGuQummM3uJ93J3ptaTqFug==", 455 | "cpu": [ 456 | "x64" 457 | ], 458 | "dev": true, 459 | "optional": true, 460 | "os": [ 461 | "darwin" 462 | ], 463 | "engines": { 464 | "node": ">=12" 465 | } 466 | }, 467 | "node_modules/esbuild-darwin-arm64": { 468 | "version": "0.14.23", 469 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.23.tgz", 470 | "integrity": "sha512-yat73Z/uJ5tRcfRiI4CCTv0FSnwErm3BJQeZAh+1tIP0TUNh6o+mXg338Zl5EKChD+YGp6PN+Dbhs7qa34RxSw==", 471 | "cpu": [ 472 | "arm64" 473 | ], 474 | "dev": true, 475 | "optional": true, 476 | "os": [ 477 | "darwin" 478 | ], 479 | "engines": { 480 | "node": ">=12" 481 | } 482 | }, 483 | "node_modules/esbuild-freebsd-64": { 484 | "version": "0.14.23", 485 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.23.tgz", 486 | "integrity": "sha512-/1xiTjoLuQ+LlbfjJdKkX45qK/M7ARrbLmyf7x3JhyQGMjcxRYVR6Dw81uH3qlMHwT4cfLW4aEVBhP1aNV7VsA==", 487 | "cpu": [ 488 | "x64" 489 | ], 490 | "dev": true, 491 | "optional": true, 492 | "os": [ 493 | "freebsd" 494 | ], 495 | "engines": { 496 | "node": ">=12" 497 | } 498 | }, 499 | "node_modules/esbuild-freebsd-arm64": { 500 | "version": "0.14.23", 501 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.23.tgz", 502 | "integrity": "sha512-uyPqBU/Zcp6yEAZS4LKj5jEE0q2s4HmlMBIPzbW6cTunZ8cyvjG6YWpIZXb1KK3KTJDe62ltCrk3VzmWHp+iLg==", 503 | "cpu": [ 504 | "arm64" 505 | ], 506 | "dev": true, 507 | "optional": true, 508 | "os": [ 509 | "freebsd" 510 | ], 511 | "engines": { 512 | "node": ">=12" 513 | } 514 | }, 515 | "node_modules/esbuild-linux-32": { 516 | "version": "0.14.23", 517 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.23.tgz", 518 | "integrity": "sha512-37R/WMkQyUfNhbH7aJrr1uCjDVdnPeTHGeDhZPUNhfoHV0lQuZNCKuNnDvlH/u/nwIYZNdVvz1Igv5rY/zfrzQ==", 519 | "cpu": [ 520 | "ia32" 521 | ], 522 | "dev": true, 523 | "optional": true, 524 | "os": [ 525 | "linux" 526 | ], 527 | "engines": { 528 | "node": ">=12" 529 | } 530 | }, 531 | "node_modules/esbuild-linux-64": { 532 | "version": "0.14.23", 533 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.23.tgz", 534 | "integrity": "sha512-H0gztDP60qqr8zoFhAO64waoN5yBXkmYCElFklpd6LPoobtNGNnDe99xOQm28+fuD75YJ7GKHzp/MLCLhw2+vQ==", 535 | "cpu": [ 536 | "x64" 537 | ], 538 | "dev": true, 539 | "optional": true, 540 | "os": [ 541 | "linux" 542 | ], 543 | "engines": { 544 | "node": ">=12" 545 | } 546 | }, 547 | "node_modules/esbuild-linux-arm": { 548 | "version": "0.14.23", 549 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.23.tgz", 550 | "integrity": "sha512-x64CEUxi8+EzOAIpCUeuni0bZfzPw/65r8tC5cy5zOq9dY7ysOi5EVQHnzaxS+1NmV+/RVRpmrzGw1QgY2Xpmw==", 551 | "cpu": [ 552 | "arm" 553 | ], 554 | "dev": true, 555 | "optional": true, 556 | "os": [ 557 | "linux" 558 | ], 559 | "engines": { 560 | "node": ">=12" 561 | } 562 | }, 563 | "node_modules/esbuild-linux-arm64": { 564 | "version": "0.14.23", 565 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.23.tgz", 566 | "integrity": "sha512-c4MLOIByNHR55n3KoYf9hYDfBRghMjOiHLaoYLhkQkIabb452RWi+HsNgB41sUpSlOAqfpqKPFNg7VrxL3UX9g==", 567 | "cpu": [ 568 | "arm64" 569 | ], 570 | "dev": true, 571 | "optional": true, 572 | "os": [ 573 | "linux" 574 | ], 575 | "engines": { 576 | "node": ">=12" 577 | } 578 | }, 579 | "node_modules/esbuild-linux-mips64le": { 580 | "version": "0.14.23", 581 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.23.tgz", 582 | "integrity": "sha512-kHKyKRIAedYhKug2EJpyJxOUj3VYuamOVA1pY7EimoFPzaF3NeY7e4cFBAISC/Av0/tiV0xlFCt9q0HJ68IBIw==", 583 | "cpu": [ 584 | "mips64el" 585 | ], 586 | "dev": true, 587 | "optional": true, 588 | "os": [ 589 | "linux" 590 | ], 591 | "engines": { 592 | "node": ">=12" 593 | } 594 | }, 595 | "node_modules/esbuild-linux-ppc64le": { 596 | "version": "0.14.23", 597 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.23.tgz", 598 | "integrity": "sha512-7ilAiJEPuJJnJp/LiDO0oJm5ygbBPzhchJJh9HsHZzeqO+3PUzItXi+8PuicY08r0AaaOe25LA7sGJ0MzbfBag==", 599 | "cpu": [ 600 | "ppc64" 601 | ], 602 | "dev": true, 603 | "optional": true, 604 | "os": [ 605 | "linux" 606 | ], 607 | "engines": { 608 | "node": ">=12" 609 | } 610 | }, 611 | "node_modules/esbuild-linux-riscv64": { 612 | "version": "0.14.23", 613 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.23.tgz", 614 | "integrity": "sha512-fbL3ggK2wY0D8I5raPIMPhpCvODFE+Bhb5QGtNP3r5aUsRR6TQV+ZBXIaw84iyvKC8vlXiA4fWLGhghAd/h/Zg==", 615 | "cpu": [ 616 | "riscv64" 617 | ], 618 | "dev": true, 619 | "optional": true, 620 | "os": [ 621 | "linux" 622 | ], 623 | "engines": { 624 | "node": ">=12" 625 | } 626 | }, 627 | "node_modules/esbuild-linux-s390x": { 628 | "version": "0.14.23", 629 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.23.tgz", 630 | "integrity": "sha512-GHMDCyfy7+FaNSO8RJ8KCFsnax8fLUsOrj9q5Gi2JmZMY0Zhp75keb5abTFCq2/Oy6KVcT0Dcbyo/bFb4rIFJA==", 631 | "cpu": [ 632 | "s390x" 633 | ], 634 | "dev": true, 635 | "optional": true, 636 | "os": [ 637 | "linux" 638 | ], 639 | "engines": { 640 | "node": ">=12" 641 | } 642 | }, 643 | "node_modules/esbuild-netbsd-64": { 644 | "version": "0.14.23", 645 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.23.tgz", 646 | "integrity": "sha512-ovk2EX+3rrO1M2lowJfgMb/JPN1VwVYrx0QPUyudxkxLYrWeBxDKQvc6ffO+kB4QlDyTfdtAURrVzu3JeNdA2g==", 647 | "cpu": [ 648 | "x64" 649 | ], 650 | "dev": true, 651 | "optional": true, 652 | "os": [ 653 | "netbsd" 654 | ], 655 | "engines": { 656 | "node": ">=12" 657 | } 658 | }, 659 | "node_modules/esbuild-openbsd-64": { 660 | "version": "0.14.23", 661 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.23.tgz", 662 | "integrity": "sha512-uYYNqbVR+i7k8ojP/oIROAHO9lATLN7H2QeXKt2H310Fc8FJj4y3Wce6hx0VgnJ4k1JDrgbbiXM8rbEgQyg8KA==", 663 | "cpu": [ 664 | "x64" 665 | ], 666 | "dev": true, 667 | "optional": true, 668 | "os": [ 669 | "openbsd" 670 | ], 671 | "engines": { 672 | "node": ">=12" 673 | } 674 | }, 675 | "node_modules/esbuild-sunos-64": { 676 | "version": "0.14.23", 677 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.23.tgz", 678 | "integrity": "sha512-hAzeBeET0+SbScknPzS2LBY6FVDpgE+CsHSpe6CEoR51PApdn2IB0SyJX7vGelXzlyrnorM4CAsRyb9Qev4h9g==", 679 | "cpu": [ 680 | "x64" 681 | ], 682 | "dev": true, 683 | "optional": true, 684 | "os": [ 685 | "sunos" 686 | ], 687 | "engines": { 688 | "node": ">=12" 689 | } 690 | }, 691 | "node_modules/esbuild-windows-32": { 692 | "version": "0.14.23", 693 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.23.tgz", 694 | "integrity": "sha512-Kttmi3JnohdaREbk6o9e25kieJR379TsEWF0l39PQVHXq3FR6sFKtVPgY8wk055o6IB+rllrzLnbqOw/UV60EA==", 695 | "cpu": [ 696 | "ia32" 697 | ], 698 | "dev": true, 699 | "optional": true, 700 | "os": [ 701 | "win32" 702 | ], 703 | "engines": { 704 | "node": ">=12" 705 | } 706 | }, 707 | "node_modules/esbuild-windows-64": { 708 | "version": "0.14.23", 709 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.23.tgz", 710 | "integrity": "sha512-JtIT0t8ymkpl6YlmOl6zoSWL5cnCgyLaBdf/SiU/Eg3C13r0NbHZWNT/RDEMKK91Y6t79kTs3vyRcNZbfu5a8g==", 711 | "cpu": [ 712 | "x64" 713 | ], 714 | "dev": true, 715 | "optional": true, 716 | "os": [ 717 | "win32" 718 | ], 719 | "engines": { 720 | "node": ">=12" 721 | } 722 | }, 723 | "node_modules/esbuild-windows-arm64": { 724 | "version": "0.14.23", 725 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.23.tgz", 726 | "integrity": "sha512-cTFaQqT2+ik9e4hePvYtRZQ3pqOvKDVNarzql0VFIzhc0tru/ZgdLoXd6epLiKT+SzoSce6V9YJ+nn6RCn6SHw==", 727 | "cpu": [ 728 | "arm64" 729 | ], 730 | "dev": true, 731 | "optional": true, 732 | "os": [ 733 | "win32" 734 | ], 735 | "engines": { 736 | "node": ">=12" 737 | } 738 | }, 739 | "node_modules/escape-string-regexp": { 740 | "version": "1.0.5", 741 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 742 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 743 | "dev": true, 744 | "engines": { 745 | "node": ">=0.8.0" 746 | } 747 | }, 748 | "node_modules/esprima": { 749 | "version": "4.0.1", 750 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 751 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 752 | "dev": true, 753 | "bin": { 754 | "esparse": "bin/esparse.js", 755 | "esvalidate": "bin/esvalidate.js" 756 | }, 757 | "engines": { 758 | "node": ">=4" 759 | } 760 | }, 761 | "node_modules/esutils": { 762 | "version": "2.0.3", 763 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 764 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 765 | "dev": true, 766 | "engines": { 767 | "node": ">=0.10.0" 768 | } 769 | }, 770 | "node_modules/find-exec": { 771 | "version": "1.0.1", 772 | "resolved": "https://registry.npmjs.org/find-exec/-/find-exec-1.0.1.tgz", 773 | "integrity": "sha512-4o6QkGkpg3xK5s/47rdK9LDZRsE4JR1mrXnaAOXBngG6UKeIDJXfwtNCAkljgyy6VRh75D3FFaB0tii9vDEtIA==" 774 | }, 775 | "node_modules/find-up": { 776 | "version": "3.0.0", 777 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 778 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 779 | "dev": true, 780 | "dependencies": { 781 | "locate-path": "^3.0.0" 782 | }, 783 | "engines": { 784 | "node": ">=6" 785 | } 786 | }, 787 | "node_modules/flat": { 788 | "version": "4.1.0", 789 | "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", 790 | "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", 791 | "deprecated": "Fixed a prototype pollution security issue in 4.1.0, please upgrade to ^4.1.1 or ^5.0.1.", 792 | "dev": true, 793 | "dependencies": { 794 | "is-buffer": "~2.0.3" 795 | }, 796 | "bin": { 797 | "flat": "cli.js" 798 | } 799 | }, 800 | "node_modules/fs.realpath": { 801 | "version": "1.0.0", 802 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 803 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 804 | "dev": true 805 | }, 806 | "node_modules/function-bind": { 807 | "version": "1.1.1", 808 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 809 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 810 | "dev": true 811 | }, 812 | "node_modules/get-caller-file": { 813 | "version": "2.0.5", 814 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 815 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 816 | "dev": true, 817 | "engines": { 818 | "node": "6.* || 8.* || >= 10.*" 819 | } 820 | }, 821 | "node_modules/glob": { 822 | "version": "7.1.6", 823 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 824 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 825 | "dev": true, 826 | "dependencies": { 827 | "fs.realpath": "^1.0.0", 828 | "inflight": "^1.0.4", 829 | "inherits": "2", 830 | "minimatch": "^3.0.4", 831 | "once": "^1.3.0", 832 | "path-is-absolute": "^1.0.0" 833 | }, 834 | "engines": { 835 | "node": "*" 836 | }, 837 | "funding": { 838 | "url": "https://github.com/sponsors/isaacs" 839 | } 840 | }, 841 | "node_modules/growl": { 842 | "version": "1.10.5", 843 | "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", 844 | "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", 845 | "dev": true, 846 | "engines": { 847 | "node": ">=4.x" 848 | } 849 | }, 850 | "node_modules/has": { 851 | "version": "1.0.3", 852 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 853 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 854 | "dev": true, 855 | "dependencies": { 856 | "function-bind": "^1.1.1" 857 | }, 858 | "engines": { 859 | "node": ">= 0.4.0" 860 | } 861 | }, 862 | "node_modules/has-flag": { 863 | "version": "3.0.0", 864 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 865 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 866 | "dev": true, 867 | "engines": { 868 | "node": ">=4" 869 | } 870 | }, 871 | "node_modules/has-symbols": { 872 | "version": "1.0.1", 873 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", 874 | "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", 875 | "dev": true, 876 | "engines": { 877 | "node": ">= 0.4" 878 | }, 879 | "funding": { 880 | "url": "https://github.com/sponsors/ljharb" 881 | } 882 | }, 883 | "node_modules/he": { 884 | "version": "1.2.0", 885 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 886 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 887 | "dev": true, 888 | "bin": { 889 | "he": "bin/he" 890 | } 891 | }, 892 | "node_modules/http-proxy-agent": { 893 | "version": "2.1.0", 894 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz", 895 | "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", 896 | "dev": true, 897 | "dependencies": { 898 | "agent-base": "4", 899 | "debug": "3.1.0" 900 | }, 901 | "engines": { 902 | "node": ">= 4.5.0" 903 | } 904 | }, 905 | "node_modules/http-proxy-agent/node_modules/debug": { 906 | "version": "3.1.0", 907 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 908 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 909 | "dev": true, 910 | "dependencies": { 911 | "ms": "2.0.0" 912 | } 913 | }, 914 | "node_modules/http-proxy-agent/node_modules/ms": { 915 | "version": "2.0.0", 916 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 917 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 918 | "dev": true 919 | }, 920 | "node_modules/https-proxy-agent": { 921 | "version": "2.2.4", 922 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", 923 | "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", 924 | "dev": true, 925 | "dependencies": { 926 | "agent-base": "^4.3.0", 927 | "debug": "^3.1.0" 928 | }, 929 | "engines": { 930 | "node": ">= 4.5.0" 931 | } 932 | }, 933 | "node_modules/inflight": { 934 | "version": "1.0.6", 935 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 936 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 937 | "dev": true, 938 | "dependencies": { 939 | "once": "^1.3.0", 940 | "wrappy": "1" 941 | } 942 | }, 943 | "node_modules/inherits": { 944 | "version": "2.0.4", 945 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 946 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 947 | "dev": true 948 | }, 949 | "node_modules/is-buffer": { 950 | "version": "2.0.4", 951 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", 952 | "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", 953 | "dev": true, 954 | "engines": { 955 | "node": ">=4" 956 | } 957 | }, 958 | "node_modules/is-callable": { 959 | "version": "1.1.4", 960 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", 961 | "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", 962 | "dev": true, 963 | "engines": { 964 | "node": ">= 0.4" 965 | } 966 | }, 967 | "node_modules/is-date-object": { 968 | "version": "1.0.1", 969 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", 970 | "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", 971 | "dev": true, 972 | "engines": { 973 | "node": ">= 0.4" 974 | } 975 | }, 976 | "node_modules/is-fullwidth-code-point": { 977 | "version": "2.0.0", 978 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 979 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 980 | "dev": true, 981 | "engines": { 982 | "node": ">=4" 983 | } 984 | }, 985 | "node_modules/is-regex": { 986 | "version": "1.0.4", 987 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", 988 | "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", 989 | "dev": true, 990 | "dependencies": { 991 | "has": "^1.0.1" 992 | }, 993 | "engines": { 994 | "node": ">= 0.4" 995 | } 996 | }, 997 | "node_modules/is-symbol": { 998 | "version": "1.0.3", 999 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 1000 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 1001 | "dev": true, 1002 | "dependencies": { 1003 | "has-symbols": "^1.0.1" 1004 | }, 1005 | "engines": { 1006 | "node": ">= 0.4" 1007 | }, 1008 | "funding": { 1009 | "url": "https://github.com/sponsors/ljharb" 1010 | } 1011 | }, 1012 | "node_modules/isexe": { 1013 | "version": "2.0.0", 1014 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1015 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 1016 | "dev": true 1017 | }, 1018 | "node_modules/js-tokens": { 1019 | "version": "4.0.0", 1020 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1021 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 1022 | "dev": true 1023 | }, 1024 | "node_modules/js-yaml": { 1025 | "version": "3.13.1", 1026 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", 1027 | "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", 1028 | "dev": true, 1029 | "dependencies": { 1030 | "argparse": "^1.0.7", 1031 | "esprima": "^4.0.0" 1032 | }, 1033 | "bin": { 1034 | "js-yaml": "bin/js-yaml.js" 1035 | } 1036 | }, 1037 | "node_modules/locate-path": { 1038 | "version": "3.0.0", 1039 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 1040 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 1041 | "dev": true, 1042 | "dependencies": { 1043 | "p-locate": "^3.0.0", 1044 | "path-exists": "^3.0.0" 1045 | }, 1046 | "engines": { 1047 | "node": ">=6" 1048 | } 1049 | }, 1050 | "node_modules/lodash": { 1051 | "version": "4.17.21", 1052 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1053 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1054 | "dev": true 1055 | }, 1056 | "node_modules/lodash.debounce": { 1057 | "version": "4.0.8", 1058 | "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", 1059 | "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" 1060 | }, 1061 | "node_modules/log-symbols": { 1062 | "version": "2.2.0", 1063 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", 1064 | "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", 1065 | "dev": true, 1066 | "dependencies": { 1067 | "chalk": "^2.0.1" 1068 | }, 1069 | "engines": { 1070 | "node": ">=4" 1071 | } 1072 | }, 1073 | "node_modules/minimatch": { 1074 | "version": "3.0.4", 1075 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1076 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1077 | "dev": true, 1078 | "dependencies": { 1079 | "brace-expansion": "^1.1.7" 1080 | }, 1081 | "engines": { 1082 | "node": "*" 1083 | } 1084 | }, 1085 | "node_modules/minimist": { 1086 | "version": "0.0.8", 1087 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", 1088 | "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", 1089 | "dev": true 1090 | }, 1091 | "node_modules/mkdirp": { 1092 | "version": "0.5.5", 1093 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 1094 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 1095 | "dev": true, 1096 | "dependencies": { 1097 | "minimist": "^1.2.5" 1098 | }, 1099 | "bin": { 1100 | "mkdirp": "bin/cmd.js" 1101 | } 1102 | }, 1103 | "node_modules/mkdirp/node_modules/minimist": { 1104 | "version": "1.2.5", 1105 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 1106 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 1107 | "dev": true 1108 | }, 1109 | "node_modules/mocha": { 1110 | "version": "6.2.2", 1111 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.2.tgz", 1112 | "integrity": "sha512-FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A==", 1113 | "dev": true, 1114 | "dependencies": { 1115 | "ansi-colors": "3.2.3", 1116 | "browser-stdout": "1.3.1", 1117 | "debug": "3.2.6", 1118 | "diff": "3.5.0", 1119 | "escape-string-regexp": "1.0.5", 1120 | "find-up": "3.0.0", 1121 | "glob": "7.1.3", 1122 | "growl": "1.10.5", 1123 | "he": "1.2.0", 1124 | "js-yaml": "3.13.1", 1125 | "log-symbols": "2.2.0", 1126 | "minimatch": "3.0.4", 1127 | "mkdirp": "0.5.1", 1128 | "ms": "2.1.1", 1129 | "node-environment-flags": "1.0.5", 1130 | "object.assign": "4.1.0", 1131 | "strip-json-comments": "2.0.1", 1132 | "supports-color": "6.0.0", 1133 | "which": "1.3.1", 1134 | "wide-align": "1.1.3", 1135 | "yargs": "13.3.0", 1136 | "yargs-parser": "13.1.1", 1137 | "yargs-unparser": "1.6.0" 1138 | }, 1139 | "bin": { 1140 | "_mocha": "bin/_mocha", 1141 | "mocha": "bin/mocha" 1142 | }, 1143 | "engines": { 1144 | "node": ">= 6.0.0" 1145 | } 1146 | }, 1147 | "node_modules/mocha/node_modules/glob": { 1148 | "version": "7.1.3", 1149 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", 1150 | "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", 1151 | "dev": true, 1152 | "dependencies": { 1153 | "fs.realpath": "^1.0.0", 1154 | "inflight": "^1.0.4", 1155 | "inherits": "2", 1156 | "minimatch": "^3.0.4", 1157 | "once": "^1.3.0", 1158 | "path-is-absolute": "^1.0.0" 1159 | }, 1160 | "engines": { 1161 | "node": "*" 1162 | } 1163 | }, 1164 | "node_modules/mocha/node_modules/mkdirp": { 1165 | "version": "0.5.1", 1166 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", 1167 | "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", 1168 | "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", 1169 | "dev": true, 1170 | "dependencies": { 1171 | "minimist": "0.0.8" 1172 | }, 1173 | "bin": { 1174 | "mkdirp": "bin/cmd.js" 1175 | } 1176 | }, 1177 | "node_modules/mocha/node_modules/yargs-parser": { 1178 | "version": "13.1.1", 1179 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", 1180 | "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", 1181 | "dev": true, 1182 | "dependencies": { 1183 | "camelcase": "^5.0.0", 1184 | "decamelize": "^1.2.0" 1185 | } 1186 | }, 1187 | "node_modules/ms": { 1188 | "version": "2.1.1", 1189 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 1190 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", 1191 | "dev": true 1192 | }, 1193 | "node_modules/node-environment-flags": { 1194 | "version": "1.0.5", 1195 | "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", 1196 | "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", 1197 | "dev": true, 1198 | "dependencies": { 1199 | "object.getownpropertydescriptors": "^2.0.3", 1200 | "semver": "^5.7.0" 1201 | } 1202 | }, 1203 | "node_modules/object-inspect": { 1204 | "version": "1.7.0", 1205 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", 1206 | "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", 1207 | "dev": true, 1208 | "funding": { 1209 | "url": "https://github.com/sponsors/ljharb" 1210 | } 1211 | }, 1212 | "node_modules/object-keys": { 1213 | "version": "1.1.1", 1214 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1215 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 1216 | "dev": true, 1217 | "engines": { 1218 | "node": ">= 0.4" 1219 | } 1220 | }, 1221 | "node_modules/object.assign": { 1222 | "version": "4.1.0", 1223 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", 1224 | "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", 1225 | "dev": true, 1226 | "dependencies": { 1227 | "define-properties": "^1.1.2", 1228 | "function-bind": "^1.1.1", 1229 | "has-symbols": "^1.0.0", 1230 | "object-keys": "^1.0.11" 1231 | }, 1232 | "engines": { 1233 | "node": ">= 0.4" 1234 | } 1235 | }, 1236 | "node_modules/object.getownpropertydescriptors": { 1237 | "version": "2.0.3", 1238 | "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", 1239 | "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", 1240 | "dev": true, 1241 | "dependencies": { 1242 | "define-properties": "^1.1.2", 1243 | "es-abstract": "^1.5.1" 1244 | }, 1245 | "engines": { 1246 | "node": ">= 0.8" 1247 | } 1248 | }, 1249 | "node_modules/once": { 1250 | "version": "1.4.0", 1251 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1252 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1253 | "dev": true, 1254 | "dependencies": { 1255 | "wrappy": "1" 1256 | } 1257 | }, 1258 | "node_modules/p-limit": { 1259 | "version": "2.2.1", 1260 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", 1261 | "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", 1262 | "dev": true, 1263 | "dependencies": { 1264 | "p-try": "^2.0.0" 1265 | }, 1266 | "engines": { 1267 | "node": ">=6" 1268 | } 1269 | }, 1270 | "node_modules/p-locate": { 1271 | "version": "3.0.0", 1272 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 1273 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 1274 | "dev": true, 1275 | "dependencies": { 1276 | "p-limit": "^2.0.0" 1277 | }, 1278 | "engines": { 1279 | "node": ">=6" 1280 | } 1281 | }, 1282 | "node_modules/p-try": { 1283 | "version": "2.2.0", 1284 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 1285 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 1286 | "dev": true, 1287 | "engines": { 1288 | "node": ">=6" 1289 | } 1290 | }, 1291 | "node_modules/path-exists": { 1292 | "version": "3.0.0", 1293 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 1294 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 1295 | "dev": true, 1296 | "engines": { 1297 | "node": ">=4" 1298 | } 1299 | }, 1300 | "node_modules/path-is-absolute": { 1301 | "version": "1.0.1", 1302 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1303 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 1304 | "dev": true, 1305 | "engines": { 1306 | "node": ">=0.10.0" 1307 | } 1308 | }, 1309 | "node_modules/path-parse": { 1310 | "version": "1.0.7", 1311 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1312 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1313 | "dev": true 1314 | }, 1315 | "node_modules/play-sound": { 1316 | "version": "1.1.3", 1317 | "resolved": "https://registry.npmjs.org/play-sound/-/play-sound-1.1.3.tgz", 1318 | "integrity": "sha512-lqEzgtNAdfg2VUXItOtu5bTyWcqeFmnJmgvc8iHEeEOBEJdurqiGYfmCOzIpSBcwrs7XeSpvHv+Rw9dzRPc4aw==", 1319 | "dependencies": { 1320 | "find-exec": "1.0.1" 1321 | } 1322 | }, 1323 | "node_modules/require-directory": { 1324 | "version": "2.1.1", 1325 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 1326 | "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", 1327 | "dev": true, 1328 | "engines": { 1329 | "node": ">=0.10.0" 1330 | } 1331 | }, 1332 | "node_modules/require-main-filename": { 1333 | "version": "2.0.0", 1334 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", 1335 | "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", 1336 | "dev": true 1337 | }, 1338 | "node_modules/resolve": { 1339 | "version": "1.13.1", 1340 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz", 1341 | "integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==", 1342 | "dev": true, 1343 | "dependencies": { 1344 | "path-parse": "^1.0.6" 1345 | }, 1346 | "funding": { 1347 | "url": "https://github.com/sponsors/ljharb" 1348 | } 1349 | }, 1350 | "node_modules/rimraf": { 1351 | "version": "2.7.1", 1352 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 1353 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 1354 | "dev": true, 1355 | "dependencies": { 1356 | "glob": "^7.1.3" 1357 | }, 1358 | "bin": { 1359 | "rimraf": "bin.js" 1360 | } 1361 | }, 1362 | "node_modules/semver": { 1363 | "version": "5.7.1", 1364 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 1365 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 1366 | "dev": true, 1367 | "bin": { 1368 | "semver": "bin/semver" 1369 | } 1370 | }, 1371 | "node_modules/set-blocking": { 1372 | "version": "2.0.0", 1373 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 1374 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", 1375 | "dev": true 1376 | }, 1377 | "node_modules/sprintf-js": { 1378 | "version": "1.0.3", 1379 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 1380 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", 1381 | "dev": true 1382 | }, 1383 | "node_modules/string-width": { 1384 | "version": "2.1.1", 1385 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 1386 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 1387 | "dev": true, 1388 | "dependencies": { 1389 | "is-fullwidth-code-point": "^2.0.0", 1390 | "strip-ansi": "^4.0.0" 1391 | }, 1392 | "engines": { 1393 | "node": ">=4" 1394 | } 1395 | }, 1396 | "node_modules/string.prototype.trimleft": { 1397 | "version": "2.1.0", 1398 | "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz", 1399 | "integrity": "sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==", 1400 | "dev": true, 1401 | "dependencies": { 1402 | "define-properties": "^1.1.3", 1403 | "function-bind": "^1.1.1" 1404 | }, 1405 | "engines": { 1406 | "node": ">= 0.4" 1407 | } 1408 | }, 1409 | "node_modules/string.prototype.trimright": { 1410 | "version": "2.1.0", 1411 | "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz", 1412 | "integrity": "sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==", 1413 | "dev": true, 1414 | "dependencies": { 1415 | "define-properties": "^1.1.3", 1416 | "function-bind": "^1.1.1" 1417 | }, 1418 | "engines": { 1419 | "node": ">= 0.4" 1420 | } 1421 | }, 1422 | "node_modules/strip-ansi": { 1423 | "version": "4.0.0", 1424 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 1425 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 1426 | "dev": true, 1427 | "dependencies": { 1428 | "ansi-regex": "^3.0.0" 1429 | }, 1430 | "engines": { 1431 | "node": ">=4" 1432 | } 1433 | }, 1434 | "node_modules/strip-json-comments": { 1435 | "version": "2.0.1", 1436 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 1437 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 1438 | "dev": true, 1439 | "engines": { 1440 | "node": ">=0.10.0" 1441 | } 1442 | }, 1443 | "node_modules/supports-color": { 1444 | "version": "6.0.0", 1445 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", 1446 | "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", 1447 | "dev": true, 1448 | "dependencies": { 1449 | "has-flag": "^3.0.0" 1450 | }, 1451 | "engines": { 1452 | "node": ">=6" 1453 | } 1454 | }, 1455 | "node_modules/tslib": { 1456 | "version": "1.10.0", 1457 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", 1458 | "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", 1459 | "dev": true 1460 | }, 1461 | "node_modules/tslint": { 1462 | "version": "5.20.1", 1463 | "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.20.1.tgz", 1464 | "integrity": "sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg==", 1465 | "dev": true, 1466 | "dependencies": { 1467 | "@babel/code-frame": "^7.0.0", 1468 | "builtin-modules": "^1.1.1", 1469 | "chalk": "^2.3.0", 1470 | "commander": "^2.12.1", 1471 | "diff": "^4.0.1", 1472 | "glob": "^7.1.1", 1473 | "js-yaml": "^3.13.1", 1474 | "minimatch": "^3.0.4", 1475 | "mkdirp": "^0.5.1", 1476 | "resolve": "^1.3.2", 1477 | "semver": "^5.3.0", 1478 | "tslib": "^1.8.0", 1479 | "tsutils": "^2.29.0" 1480 | }, 1481 | "bin": { 1482 | "tslint": "bin/tslint" 1483 | }, 1484 | "engines": { 1485 | "node": ">=4.8.0" 1486 | }, 1487 | "peerDependencies": { 1488 | "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" 1489 | } 1490 | }, 1491 | "node_modules/tslint/node_modules/diff": { 1492 | "version": "4.0.1", 1493 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.1.tgz", 1494 | "integrity": "sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q==", 1495 | "dev": true, 1496 | "engines": { 1497 | "node": ">=0.3.1" 1498 | } 1499 | }, 1500 | "node_modules/tsutils": { 1501 | "version": "2.29.0", 1502 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", 1503 | "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", 1504 | "dev": true, 1505 | "dependencies": { 1506 | "tslib": "^1.8.1" 1507 | }, 1508 | "peerDependencies": { 1509 | "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" 1510 | } 1511 | }, 1512 | "node_modules/typescript": { 1513 | "version": "3.7.2", 1514 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.2.tgz", 1515 | "integrity": "sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ==", 1516 | "dev": true, 1517 | "bin": { 1518 | "tsc": "bin/tsc", 1519 | "tsserver": "bin/tsserver" 1520 | }, 1521 | "engines": { 1522 | "node": ">=4.2.0" 1523 | } 1524 | }, 1525 | "node_modules/vscode-test": { 1526 | "version": "1.2.3", 1527 | "resolved": "https://registry.npmjs.org/vscode-test/-/vscode-test-1.2.3.tgz", 1528 | "integrity": "sha512-mKRTNso33NaUULiPBFg6zRjyntjcCpIgkrogyPQuKlvoQREQR8jLKN5UD4L5rkTSD+oBhcKtaLR2/g34FexURw==", 1529 | "deprecated": "This package has been renamed to @vscode/test-electron, please update to the new name", 1530 | "dev": true, 1531 | "dependencies": { 1532 | "http-proxy-agent": "^2.1.0", 1533 | "https-proxy-agent": "^2.2.4", 1534 | "rimraf": "^2.6.3" 1535 | }, 1536 | "engines": { 1537 | "node": ">=8.9.3" 1538 | } 1539 | }, 1540 | "node_modules/which": { 1541 | "version": "1.3.1", 1542 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 1543 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 1544 | "dev": true, 1545 | "dependencies": { 1546 | "isexe": "^2.0.0" 1547 | }, 1548 | "bin": { 1549 | "which": "bin/which" 1550 | } 1551 | }, 1552 | "node_modules/which-module": { 1553 | "version": "2.0.0", 1554 | "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", 1555 | "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", 1556 | "dev": true 1557 | }, 1558 | "node_modules/wide-align": { 1559 | "version": "1.1.3", 1560 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", 1561 | "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", 1562 | "dev": true, 1563 | "dependencies": { 1564 | "string-width": "^1.0.2 || 2" 1565 | } 1566 | }, 1567 | "node_modules/wrap-ansi": { 1568 | "version": "5.1.0", 1569 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", 1570 | "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", 1571 | "dev": true, 1572 | "dependencies": { 1573 | "ansi-styles": "^3.2.0", 1574 | "string-width": "^3.0.0", 1575 | "strip-ansi": "^5.0.0" 1576 | }, 1577 | "engines": { 1578 | "node": ">=6" 1579 | } 1580 | }, 1581 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 1582 | "version": "4.1.0", 1583 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 1584 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 1585 | "dev": true, 1586 | "engines": { 1587 | "node": ">=6" 1588 | } 1589 | }, 1590 | "node_modules/wrap-ansi/node_modules/string-width": { 1591 | "version": "3.1.0", 1592 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 1593 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 1594 | "dev": true, 1595 | "dependencies": { 1596 | "emoji-regex": "^7.0.1", 1597 | "is-fullwidth-code-point": "^2.0.0", 1598 | "strip-ansi": "^5.1.0" 1599 | }, 1600 | "engines": { 1601 | "node": ">=6" 1602 | } 1603 | }, 1604 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 1605 | "version": "5.2.0", 1606 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 1607 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 1608 | "dev": true, 1609 | "dependencies": { 1610 | "ansi-regex": "^4.1.0" 1611 | }, 1612 | "engines": { 1613 | "node": ">=6" 1614 | } 1615 | }, 1616 | "node_modules/wrappy": { 1617 | "version": "1.0.2", 1618 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1619 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 1620 | "dev": true 1621 | }, 1622 | "node_modules/y18n": { 1623 | "version": "4.0.1", 1624 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", 1625 | "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", 1626 | "dev": true 1627 | }, 1628 | "node_modules/yargs": { 1629 | "version": "13.3.0", 1630 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", 1631 | "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", 1632 | "dev": true, 1633 | "dependencies": { 1634 | "cliui": "^5.0.0", 1635 | "find-up": "^3.0.0", 1636 | "get-caller-file": "^2.0.1", 1637 | "require-directory": "^2.1.1", 1638 | "require-main-filename": "^2.0.0", 1639 | "set-blocking": "^2.0.0", 1640 | "string-width": "^3.0.0", 1641 | "which-module": "^2.0.0", 1642 | "y18n": "^4.0.0", 1643 | "yargs-parser": "^13.1.1" 1644 | } 1645 | }, 1646 | "node_modules/yargs-parser": { 1647 | "version": "13.1.2", 1648 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", 1649 | "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", 1650 | "dev": true, 1651 | "dependencies": { 1652 | "camelcase": "^5.0.0", 1653 | "decamelize": "^1.2.0" 1654 | } 1655 | }, 1656 | "node_modules/yargs-unparser": { 1657 | "version": "1.6.0", 1658 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", 1659 | "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", 1660 | "dev": true, 1661 | "dependencies": { 1662 | "flat": "^4.1.0", 1663 | "lodash": "^4.17.15", 1664 | "yargs": "^13.3.0" 1665 | }, 1666 | "engines": { 1667 | "node": ">=6" 1668 | } 1669 | }, 1670 | "node_modules/yargs/node_modules/ansi-regex": { 1671 | "version": "4.1.0", 1672 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 1673 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 1674 | "dev": true, 1675 | "engines": { 1676 | "node": ">=6" 1677 | } 1678 | }, 1679 | "node_modules/yargs/node_modules/string-width": { 1680 | "version": "3.1.0", 1681 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 1682 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 1683 | "dev": true, 1684 | "dependencies": { 1685 | "emoji-regex": "^7.0.1", 1686 | "is-fullwidth-code-point": "^2.0.0", 1687 | "strip-ansi": "^5.1.0" 1688 | }, 1689 | "engines": { 1690 | "node": ">=6" 1691 | } 1692 | }, 1693 | "node_modules/yargs/node_modules/strip-ansi": { 1694 | "version": "5.2.0", 1695 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 1696 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 1697 | "dev": true, 1698 | "dependencies": { 1699 | "ansi-regex": "^4.1.0" 1700 | }, 1701 | "engines": { 1702 | "node": ">=6" 1703 | } 1704 | } 1705 | }, 1706 | "dependencies": { 1707 | "@babel/code-frame": { 1708 | "version": "7.5.5", 1709 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", 1710 | "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", 1711 | "dev": true, 1712 | "requires": { 1713 | "@babel/highlight": "^7.0.0" 1714 | } 1715 | }, 1716 | "@babel/highlight": { 1717 | "version": "7.5.0", 1718 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", 1719 | "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", 1720 | "dev": true, 1721 | "requires": { 1722 | "chalk": "^2.0.0", 1723 | "esutils": "^2.0.2", 1724 | "js-tokens": "^4.0.0" 1725 | } 1726 | }, 1727 | "@types/events": { 1728 | "version": "3.0.0", 1729 | "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", 1730 | "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", 1731 | "dev": true 1732 | }, 1733 | "@types/glob": { 1734 | "version": "7.1.1", 1735 | "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", 1736 | "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", 1737 | "dev": true, 1738 | "requires": { 1739 | "@types/events": "*", 1740 | "@types/minimatch": "*", 1741 | "@types/node": "*" 1742 | } 1743 | }, 1744 | "@types/lodash": { 1745 | "version": "4.14.151", 1746 | "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.151.tgz", 1747 | "integrity": "sha512-Zst90IcBX5wnwSu7CAS0vvJkTjTELY4ssKbHiTnGcJgi170uiS8yQDdc3v6S77bRqYQIN1App5a1Pc2lceE5/g==", 1748 | "dev": true 1749 | }, 1750 | "@types/lodash.debounce": { 1751 | "version": "4.0.6", 1752 | "resolved": "https://registry.npmjs.org/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz", 1753 | "integrity": "sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ==", 1754 | "dev": true, 1755 | "requires": { 1756 | "@types/lodash": "*" 1757 | } 1758 | }, 1759 | "@types/minimatch": { 1760 | "version": "3.0.3", 1761 | "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", 1762 | "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", 1763 | "dev": true 1764 | }, 1765 | "@types/mocha": { 1766 | "version": "5.2.7", 1767 | "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-5.2.7.tgz", 1768 | "integrity": "sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ==", 1769 | "dev": true 1770 | }, 1771 | "@types/node": { 1772 | "version": "12.20.45", 1773 | "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.45.tgz", 1774 | "integrity": "sha512-1Jg2Qv5tuxBqgQV04+wO5u+wmSHbHgpORCJdeCLM+E+YdPElpdHhgywU+M1V1InL8rfOtpqtOjswk+uXTKwx7w==", 1775 | "dev": true 1776 | }, 1777 | "@types/vscode": { 1778 | "version": "1.40.0", 1779 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.40.0.tgz", 1780 | "integrity": "sha512-5kEIxL3qVRkwhlMerxO7XuMffa+0LBl+iG2TcRa0NsdoeSFLkt/9hJ02jsi/Kvc6y8OVF2N2P2IHP5S4lWf/5w==", 1781 | "dev": true 1782 | }, 1783 | "agent-base": { 1784 | "version": "4.3.0", 1785 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", 1786 | "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", 1787 | "dev": true, 1788 | "requires": { 1789 | "es6-promisify": "^5.0.0" 1790 | } 1791 | }, 1792 | "ansi-colors": { 1793 | "version": "3.2.3", 1794 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", 1795 | "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", 1796 | "dev": true 1797 | }, 1798 | "ansi-regex": { 1799 | "version": "3.0.0", 1800 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 1801 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 1802 | "dev": true 1803 | }, 1804 | "ansi-styles": { 1805 | "version": "3.2.1", 1806 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1807 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1808 | "dev": true, 1809 | "requires": { 1810 | "color-convert": "^1.9.0" 1811 | } 1812 | }, 1813 | "argparse": { 1814 | "version": "1.0.10", 1815 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1816 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1817 | "dev": true, 1818 | "requires": { 1819 | "sprintf-js": "~1.0.2" 1820 | } 1821 | }, 1822 | "balanced-match": { 1823 | "version": "1.0.0", 1824 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 1825 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 1826 | "dev": true 1827 | }, 1828 | "brace-expansion": { 1829 | "version": "1.1.11", 1830 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1831 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1832 | "dev": true, 1833 | "requires": { 1834 | "balanced-match": "^1.0.0", 1835 | "concat-map": "0.0.1" 1836 | } 1837 | }, 1838 | "browser-stdout": { 1839 | "version": "1.3.1", 1840 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 1841 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 1842 | "dev": true 1843 | }, 1844 | "builtin-modules": { 1845 | "version": "1.1.1", 1846 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", 1847 | "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", 1848 | "dev": true 1849 | }, 1850 | "camelcase": { 1851 | "version": "5.3.1", 1852 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1853 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1854 | "dev": true 1855 | }, 1856 | "chalk": { 1857 | "version": "2.4.2", 1858 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1859 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1860 | "dev": true, 1861 | "requires": { 1862 | "ansi-styles": "^3.2.1", 1863 | "escape-string-regexp": "^1.0.5", 1864 | "supports-color": "^5.3.0" 1865 | }, 1866 | "dependencies": { 1867 | "supports-color": { 1868 | "version": "5.5.0", 1869 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1870 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1871 | "dev": true, 1872 | "requires": { 1873 | "has-flag": "^3.0.0" 1874 | } 1875 | } 1876 | } 1877 | }, 1878 | "cliui": { 1879 | "version": "5.0.0", 1880 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", 1881 | "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", 1882 | "dev": true, 1883 | "requires": { 1884 | "string-width": "^3.1.0", 1885 | "strip-ansi": "^5.2.0", 1886 | "wrap-ansi": "^5.1.0" 1887 | }, 1888 | "dependencies": { 1889 | "ansi-regex": { 1890 | "version": "4.1.0", 1891 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 1892 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 1893 | "dev": true 1894 | }, 1895 | "string-width": { 1896 | "version": "3.1.0", 1897 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 1898 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 1899 | "dev": true, 1900 | "requires": { 1901 | "emoji-regex": "^7.0.1", 1902 | "is-fullwidth-code-point": "^2.0.0", 1903 | "strip-ansi": "^5.1.0" 1904 | } 1905 | }, 1906 | "strip-ansi": { 1907 | "version": "5.2.0", 1908 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 1909 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 1910 | "dev": true, 1911 | "requires": { 1912 | "ansi-regex": "^4.1.0" 1913 | } 1914 | } 1915 | } 1916 | }, 1917 | "color-convert": { 1918 | "version": "1.9.3", 1919 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1920 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1921 | "dev": true, 1922 | "requires": { 1923 | "color-name": "1.1.3" 1924 | } 1925 | }, 1926 | "color-name": { 1927 | "version": "1.1.3", 1928 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1929 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 1930 | "dev": true 1931 | }, 1932 | "commander": { 1933 | "version": "2.20.3", 1934 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 1935 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 1936 | "dev": true 1937 | }, 1938 | "concat-map": { 1939 | "version": "0.0.1", 1940 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1941 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 1942 | "dev": true 1943 | }, 1944 | "debug": { 1945 | "version": "3.2.6", 1946 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 1947 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 1948 | "dev": true, 1949 | "requires": { 1950 | "ms": "^2.1.1" 1951 | } 1952 | }, 1953 | "decamelize": { 1954 | "version": "1.2.0", 1955 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 1956 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", 1957 | "dev": true 1958 | }, 1959 | "define-properties": { 1960 | "version": "1.1.3", 1961 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 1962 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 1963 | "dev": true, 1964 | "requires": { 1965 | "object-keys": "^1.0.12" 1966 | } 1967 | }, 1968 | "diff": { 1969 | "version": "3.5.0", 1970 | "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", 1971 | "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", 1972 | "dev": true 1973 | }, 1974 | "emoji-regex": { 1975 | "version": "7.0.3", 1976 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 1977 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 1978 | "dev": true 1979 | }, 1980 | "es-abstract": { 1981 | "version": "1.16.2", 1982 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.16.2.tgz", 1983 | "integrity": "sha512-jYo/J8XU2emLXl3OLwfwtuFfuF2w6DYPs+xy9ZfVyPkDcrauu6LYrw/q2TyCtrbc/KUdCiC5e9UajRhgNkVopA==", 1984 | "dev": true, 1985 | "requires": { 1986 | "es-to-primitive": "^1.2.1", 1987 | "function-bind": "^1.1.1", 1988 | "has": "^1.0.3", 1989 | "has-symbols": "^1.0.1", 1990 | "is-callable": "^1.1.4", 1991 | "is-regex": "^1.0.4", 1992 | "object-inspect": "^1.7.0", 1993 | "object-keys": "^1.1.1", 1994 | "string.prototype.trimleft": "^2.1.0", 1995 | "string.prototype.trimright": "^2.1.0" 1996 | } 1997 | }, 1998 | "es-to-primitive": { 1999 | "version": "1.2.1", 2000 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 2001 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 2002 | "dev": true, 2003 | "requires": { 2004 | "is-callable": "^1.1.4", 2005 | "is-date-object": "^1.0.1", 2006 | "is-symbol": "^1.0.2" 2007 | } 2008 | }, 2009 | "es6-promise": { 2010 | "version": "4.2.8", 2011 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", 2012 | "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", 2013 | "dev": true 2014 | }, 2015 | "es6-promisify": { 2016 | "version": "5.0.0", 2017 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", 2018 | "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", 2019 | "dev": true, 2020 | "requires": { 2021 | "es6-promise": "^4.0.3" 2022 | } 2023 | }, 2024 | "esbuild": { 2025 | "version": "0.14.23", 2026 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.23.tgz", 2027 | "integrity": "sha512-XjnIcZ9KB6lfonCa+jRguXyRYcldmkyZ99ieDksqW/C8bnyEX299yA4QH2XcgijCgaddEZePPTgvx/2imsq7Ig==", 2028 | "dev": true, 2029 | "requires": { 2030 | "esbuild-android-arm64": "0.14.23", 2031 | "esbuild-darwin-64": "0.14.23", 2032 | "esbuild-darwin-arm64": "0.14.23", 2033 | "esbuild-freebsd-64": "0.14.23", 2034 | "esbuild-freebsd-arm64": "0.14.23", 2035 | "esbuild-linux-32": "0.14.23", 2036 | "esbuild-linux-64": "0.14.23", 2037 | "esbuild-linux-arm": "0.14.23", 2038 | "esbuild-linux-arm64": "0.14.23", 2039 | "esbuild-linux-mips64le": "0.14.23", 2040 | "esbuild-linux-ppc64le": "0.14.23", 2041 | "esbuild-linux-riscv64": "0.14.23", 2042 | "esbuild-linux-s390x": "0.14.23", 2043 | "esbuild-netbsd-64": "0.14.23", 2044 | "esbuild-openbsd-64": "0.14.23", 2045 | "esbuild-sunos-64": "0.14.23", 2046 | "esbuild-windows-32": "0.14.23", 2047 | "esbuild-windows-64": "0.14.23", 2048 | "esbuild-windows-arm64": "0.14.23" 2049 | } 2050 | }, 2051 | "esbuild-android-arm64": { 2052 | "version": "0.14.23", 2053 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.23.tgz", 2054 | "integrity": "sha512-k9sXem++mINrZty1v4FVt6nC5BQCFG4K2geCIUUqHNlTdFnuvcqsY7prcKZLFhqVC1rbcJAr9VSUGFL/vD4vsw==", 2055 | "dev": true, 2056 | "optional": true 2057 | }, 2058 | "esbuild-darwin-64": { 2059 | "version": "0.14.23", 2060 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.23.tgz", 2061 | "integrity": "sha512-lB0XRbtOYYL1tLcYw8BoBaYsFYiR48RPrA0KfA/7RFTr4MV7Bwy/J4+7nLsVnv9FGuQummM3uJ93J3ptaTqFug==", 2062 | "dev": true, 2063 | "optional": true 2064 | }, 2065 | "esbuild-darwin-arm64": { 2066 | "version": "0.14.23", 2067 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.23.tgz", 2068 | "integrity": "sha512-yat73Z/uJ5tRcfRiI4CCTv0FSnwErm3BJQeZAh+1tIP0TUNh6o+mXg338Zl5EKChD+YGp6PN+Dbhs7qa34RxSw==", 2069 | "dev": true, 2070 | "optional": true 2071 | }, 2072 | "esbuild-freebsd-64": { 2073 | "version": "0.14.23", 2074 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.23.tgz", 2075 | "integrity": "sha512-/1xiTjoLuQ+LlbfjJdKkX45qK/M7ARrbLmyf7x3JhyQGMjcxRYVR6Dw81uH3qlMHwT4cfLW4aEVBhP1aNV7VsA==", 2076 | "dev": true, 2077 | "optional": true 2078 | }, 2079 | "esbuild-freebsd-arm64": { 2080 | "version": "0.14.23", 2081 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.23.tgz", 2082 | "integrity": "sha512-uyPqBU/Zcp6yEAZS4LKj5jEE0q2s4HmlMBIPzbW6cTunZ8cyvjG6YWpIZXb1KK3KTJDe62ltCrk3VzmWHp+iLg==", 2083 | "dev": true, 2084 | "optional": true 2085 | }, 2086 | "esbuild-linux-32": { 2087 | "version": "0.14.23", 2088 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.23.tgz", 2089 | "integrity": "sha512-37R/WMkQyUfNhbH7aJrr1uCjDVdnPeTHGeDhZPUNhfoHV0lQuZNCKuNnDvlH/u/nwIYZNdVvz1Igv5rY/zfrzQ==", 2090 | "dev": true, 2091 | "optional": true 2092 | }, 2093 | "esbuild-linux-64": { 2094 | "version": "0.14.23", 2095 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.23.tgz", 2096 | "integrity": "sha512-H0gztDP60qqr8zoFhAO64waoN5yBXkmYCElFklpd6LPoobtNGNnDe99xOQm28+fuD75YJ7GKHzp/MLCLhw2+vQ==", 2097 | "dev": true, 2098 | "optional": true 2099 | }, 2100 | "esbuild-linux-arm": { 2101 | "version": "0.14.23", 2102 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.23.tgz", 2103 | "integrity": "sha512-x64CEUxi8+EzOAIpCUeuni0bZfzPw/65r8tC5cy5zOq9dY7ysOi5EVQHnzaxS+1NmV+/RVRpmrzGw1QgY2Xpmw==", 2104 | "dev": true, 2105 | "optional": true 2106 | }, 2107 | "esbuild-linux-arm64": { 2108 | "version": "0.14.23", 2109 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.23.tgz", 2110 | "integrity": "sha512-c4MLOIByNHR55n3KoYf9hYDfBRghMjOiHLaoYLhkQkIabb452RWi+HsNgB41sUpSlOAqfpqKPFNg7VrxL3UX9g==", 2111 | "dev": true, 2112 | "optional": true 2113 | }, 2114 | "esbuild-linux-mips64le": { 2115 | "version": "0.14.23", 2116 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.23.tgz", 2117 | "integrity": "sha512-kHKyKRIAedYhKug2EJpyJxOUj3VYuamOVA1pY7EimoFPzaF3NeY7e4cFBAISC/Av0/tiV0xlFCt9q0HJ68IBIw==", 2118 | "dev": true, 2119 | "optional": true 2120 | }, 2121 | "esbuild-linux-ppc64le": { 2122 | "version": "0.14.23", 2123 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.23.tgz", 2124 | "integrity": "sha512-7ilAiJEPuJJnJp/LiDO0oJm5ygbBPzhchJJh9HsHZzeqO+3PUzItXi+8PuicY08r0AaaOe25LA7sGJ0MzbfBag==", 2125 | "dev": true, 2126 | "optional": true 2127 | }, 2128 | "esbuild-linux-riscv64": { 2129 | "version": "0.14.23", 2130 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.23.tgz", 2131 | "integrity": "sha512-fbL3ggK2wY0D8I5raPIMPhpCvODFE+Bhb5QGtNP3r5aUsRR6TQV+ZBXIaw84iyvKC8vlXiA4fWLGhghAd/h/Zg==", 2132 | "dev": true, 2133 | "optional": true 2134 | }, 2135 | "esbuild-linux-s390x": { 2136 | "version": "0.14.23", 2137 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.23.tgz", 2138 | "integrity": "sha512-GHMDCyfy7+FaNSO8RJ8KCFsnax8fLUsOrj9q5Gi2JmZMY0Zhp75keb5abTFCq2/Oy6KVcT0Dcbyo/bFb4rIFJA==", 2139 | "dev": true, 2140 | "optional": true 2141 | }, 2142 | "esbuild-netbsd-64": { 2143 | "version": "0.14.23", 2144 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.23.tgz", 2145 | "integrity": "sha512-ovk2EX+3rrO1M2lowJfgMb/JPN1VwVYrx0QPUyudxkxLYrWeBxDKQvc6ffO+kB4QlDyTfdtAURrVzu3JeNdA2g==", 2146 | "dev": true, 2147 | "optional": true 2148 | }, 2149 | "esbuild-openbsd-64": { 2150 | "version": "0.14.23", 2151 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.23.tgz", 2152 | "integrity": "sha512-uYYNqbVR+i7k8ojP/oIROAHO9lATLN7H2QeXKt2H310Fc8FJj4y3Wce6hx0VgnJ4k1JDrgbbiXM8rbEgQyg8KA==", 2153 | "dev": true, 2154 | "optional": true 2155 | }, 2156 | "esbuild-sunos-64": { 2157 | "version": "0.14.23", 2158 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.23.tgz", 2159 | "integrity": "sha512-hAzeBeET0+SbScknPzS2LBY6FVDpgE+CsHSpe6CEoR51PApdn2IB0SyJX7vGelXzlyrnorM4CAsRyb9Qev4h9g==", 2160 | "dev": true, 2161 | "optional": true 2162 | }, 2163 | "esbuild-windows-32": { 2164 | "version": "0.14.23", 2165 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.23.tgz", 2166 | "integrity": "sha512-Kttmi3JnohdaREbk6o9e25kieJR379TsEWF0l39PQVHXq3FR6sFKtVPgY8wk055o6IB+rllrzLnbqOw/UV60EA==", 2167 | "dev": true, 2168 | "optional": true 2169 | }, 2170 | "esbuild-windows-64": { 2171 | "version": "0.14.23", 2172 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.23.tgz", 2173 | "integrity": "sha512-JtIT0t8ymkpl6YlmOl6zoSWL5cnCgyLaBdf/SiU/Eg3C13r0NbHZWNT/RDEMKK91Y6t79kTs3vyRcNZbfu5a8g==", 2174 | "dev": true, 2175 | "optional": true 2176 | }, 2177 | "esbuild-windows-arm64": { 2178 | "version": "0.14.23", 2179 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.23.tgz", 2180 | "integrity": "sha512-cTFaQqT2+ik9e4hePvYtRZQ3pqOvKDVNarzql0VFIzhc0tru/ZgdLoXd6epLiKT+SzoSce6V9YJ+nn6RCn6SHw==", 2181 | "dev": true, 2182 | "optional": true 2183 | }, 2184 | "escape-string-regexp": { 2185 | "version": "1.0.5", 2186 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 2187 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 2188 | "dev": true 2189 | }, 2190 | "esprima": { 2191 | "version": "4.0.1", 2192 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 2193 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 2194 | "dev": true 2195 | }, 2196 | "esutils": { 2197 | "version": "2.0.3", 2198 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2199 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2200 | "dev": true 2201 | }, 2202 | "find-exec": { 2203 | "version": "1.0.1", 2204 | "resolved": "https://registry.npmjs.org/find-exec/-/find-exec-1.0.1.tgz", 2205 | "integrity": "sha512-4o6QkGkpg3xK5s/47rdK9LDZRsE4JR1mrXnaAOXBngG6UKeIDJXfwtNCAkljgyy6VRh75D3FFaB0tii9vDEtIA==" 2206 | }, 2207 | "find-up": { 2208 | "version": "3.0.0", 2209 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 2210 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 2211 | "dev": true, 2212 | "requires": { 2213 | "locate-path": "^3.0.0" 2214 | } 2215 | }, 2216 | "flat": { 2217 | "version": "4.1.0", 2218 | "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", 2219 | "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", 2220 | "dev": true, 2221 | "requires": { 2222 | "is-buffer": "~2.0.3" 2223 | } 2224 | }, 2225 | "fs.realpath": { 2226 | "version": "1.0.0", 2227 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2228 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 2229 | "dev": true 2230 | }, 2231 | "function-bind": { 2232 | "version": "1.1.1", 2233 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 2234 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 2235 | "dev": true 2236 | }, 2237 | "get-caller-file": { 2238 | "version": "2.0.5", 2239 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 2240 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 2241 | "dev": true 2242 | }, 2243 | "glob": { 2244 | "version": "7.1.6", 2245 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 2246 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 2247 | "dev": true, 2248 | "requires": { 2249 | "fs.realpath": "^1.0.0", 2250 | "inflight": "^1.0.4", 2251 | "inherits": "2", 2252 | "minimatch": "^3.0.4", 2253 | "once": "^1.3.0", 2254 | "path-is-absolute": "^1.0.0" 2255 | } 2256 | }, 2257 | "growl": { 2258 | "version": "1.10.5", 2259 | "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", 2260 | "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", 2261 | "dev": true 2262 | }, 2263 | "has": { 2264 | "version": "1.0.3", 2265 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2266 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2267 | "dev": true, 2268 | "requires": { 2269 | "function-bind": "^1.1.1" 2270 | } 2271 | }, 2272 | "has-flag": { 2273 | "version": "3.0.0", 2274 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2275 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 2276 | "dev": true 2277 | }, 2278 | "has-symbols": { 2279 | "version": "1.0.1", 2280 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", 2281 | "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", 2282 | "dev": true 2283 | }, 2284 | "he": { 2285 | "version": "1.2.0", 2286 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 2287 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 2288 | "dev": true 2289 | }, 2290 | "http-proxy-agent": { 2291 | "version": "2.1.0", 2292 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz", 2293 | "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", 2294 | "dev": true, 2295 | "requires": { 2296 | "agent-base": "4", 2297 | "debug": "3.1.0" 2298 | }, 2299 | "dependencies": { 2300 | "debug": { 2301 | "version": "3.1.0", 2302 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 2303 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 2304 | "dev": true, 2305 | "requires": { 2306 | "ms": "2.0.0" 2307 | } 2308 | }, 2309 | "ms": { 2310 | "version": "2.0.0", 2311 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2312 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 2313 | "dev": true 2314 | } 2315 | } 2316 | }, 2317 | "https-proxy-agent": { 2318 | "version": "2.2.4", 2319 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", 2320 | "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", 2321 | "dev": true, 2322 | "requires": { 2323 | "agent-base": "^4.3.0", 2324 | "debug": "^3.1.0" 2325 | } 2326 | }, 2327 | "inflight": { 2328 | "version": "1.0.6", 2329 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2330 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 2331 | "dev": true, 2332 | "requires": { 2333 | "once": "^1.3.0", 2334 | "wrappy": "1" 2335 | } 2336 | }, 2337 | "inherits": { 2338 | "version": "2.0.4", 2339 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2340 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2341 | "dev": true 2342 | }, 2343 | "is-buffer": { 2344 | "version": "2.0.4", 2345 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", 2346 | "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", 2347 | "dev": true 2348 | }, 2349 | "is-callable": { 2350 | "version": "1.1.4", 2351 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", 2352 | "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", 2353 | "dev": true 2354 | }, 2355 | "is-date-object": { 2356 | "version": "1.0.1", 2357 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", 2358 | "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", 2359 | "dev": true 2360 | }, 2361 | "is-fullwidth-code-point": { 2362 | "version": "2.0.0", 2363 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 2364 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 2365 | "dev": true 2366 | }, 2367 | "is-regex": { 2368 | "version": "1.0.4", 2369 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", 2370 | "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", 2371 | "dev": true, 2372 | "requires": { 2373 | "has": "^1.0.1" 2374 | } 2375 | }, 2376 | "is-symbol": { 2377 | "version": "1.0.3", 2378 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 2379 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 2380 | "dev": true, 2381 | "requires": { 2382 | "has-symbols": "^1.0.1" 2383 | } 2384 | }, 2385 | "isexe": { 2386 | "version": "2.0.0", 2387 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2388 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 2389 | "dev": true 2390 | }, 2391 | "js-tokens": { 2392 | "version": "4.0.0", 2393 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2394 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2395 | "dev": true 2396 | }, 2397 | "js-yaml": { 2398 | "version": "3.13.1", 2399 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", 2400 | "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", 2401 | "dev": true, 2402 | "requires": { 2403 | "argparse": "^1.0.7", 2404 | "esprima": "^4.0.0" 2405 | } 2406 | }, 2407 | "locate-path": { 2408 | "version": "3.0.0", 2409 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 2410 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 2411 | "dev": true, 2412 | "requires": { 2413 | "p-locate": "^3.0.0", 2414 | "path-exists": "^3.0.0" 2415 | } 2416 | }, 2417 | "lodash": { 2418 | "version": "4.17.21", 2419 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2420 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2421 | "dev": true 2422 | }, 2423 | "lodash.debounce": { 2424 | "version": "4.0.8", 2425 | "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", 2426 | "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" 2427 | }, 2428 | "log-symbols": { 2429 | "version": "2.2.0", 2430 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", 2431 | "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", 2432 | "dev": true, 2433 | "requires": { 2434 | "chalk": "^2.0.1" 2435 | } 2436 | }, 2437 | "minimatch": { 2438 | "version": "3.0.4", 2439 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 2440 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 2441 | "dev": true, 2442 | "requires": { 2443 | "brace-expansion": "^1.1.7" 2444 | } 2445 | }, 2446 | "minimist": { 2447 | "version": "0.0.8", 2448 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", 2449 | "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", 2450 | "dev": true 2451 | }, 2452 | "mkdirp": { 2453 | "version": "0.5.5", 2454 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 2455 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 2456 | "dev": true, 2457 | "requires": { 2458 | "minimist": "^1.2.5" 2459 | }, 2460 | "dependencies": { 2461 | "minimist": { 2462 | "version": "1.2.5", 2463 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 2464 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 2465 | "dev": true 2466 | } 2467 | } 2468 | }, 2469 | "mocha": { 2470 | "version": "6.2.2", 2471 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.2.tgz", 2472 | "integrity": "sha512-FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A==", 2473 | "dev": true, 2474 | "requires": { 2475 | "ansi-colors": "3.2.3", 2476 | "browser-stdout": "1.3.1", 2477 | "debug": "3.2.6", 2478 | "diff": "3.5.0", 2479 | "escape-string-regexp": "1.0.5", 2480 | "find-up": "3.0.0", 2481 | "glob": "7.1.3", 2482 | "growl": "1.10.5", 2483 | "he": "1.2.0", 2484 | "js-yaml": "3.13.1", 2485 | "log-symbols": "2.2.0", 2486 | "minimatch": "3.0.4", 2487 | "mkdirp": "0.5.1", 2488 | "ms": "2.1.1", 2489 | "node-environment-flags": "1.0.5", 2490 | "object.assign": "4.1.0", 2491 | "strip-json-comments": "2.0.1", 2492 | "supports-color": "6.0.0", 2493 | "which": "1.3.1", 2494 | "wide-align": "1.1.3", 2495 | "yargs": "13.3.0", 2496 | "yargs-parser": "13.1.1", 2497 | "yargs-unparser": "1.6.0" 2498 | }, 2499 | "dependencies": { 2500 | "glob": { 2501 | "version": "7.1.3", 2502 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", 2503 | "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", 2504 | "dev": true, 2505 | "requires": { 2506 | "fs.realpath": "^1.0.0", 2507 | "inflight": "^1.0.4", 2508 | "inherits": "2", 2509 | "minimatch": "^3.0.4", 2510 | "once": "^1.3.0", 2511 | "path-is-absolute": "^1.0.0" 2512 | } 2513 | }, 2514 | "mkdirp": { 2515 | "version": "0.5.1", 2516 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", 2517 | "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", 2518 | "dev": true, 2519 | "requires": { 2520 | "minimist": "0.0.8" 2521 | } 2522 | }, 2523 | "yargs-parser": { 2524 | "version": "13.1.1", 2525 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", 2526 | "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", 2527 | "dev": true, 2528 | "requires": { 2529 | "camelcase": "^5.0.0", 2530 | "decamelize": "^1.2.0" 2531 | } 2532 | } 2533 | } 2534 | }, 2535 | "ms": { 2536 | "version": "2.1.1", 2537 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 2538 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", 2539 | "dev": true 2540 | }, 2541 | "node-environment-flags": { 2542 | "version": "1.0.5", 2543 | "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", 2544 | "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", 2545 | "dev": true, 2546 | "requires": { 2547 | "object.getownpropertydescriptors": "^2.0.3", 2548 | "semver": "^5.7.0" 2549 | } 2550 | }, 2551 | "object-inspect": { 2552 | "version": "1.7.0", 2553 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", 2554 | "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", 2555 | "dev": true 2556 | }, 2557 | "object-keys": { 2558 | "version": "1.1.1", 2559 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2560 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2561 | "dev": true 2562 | }, 2563 | "object.assign": { 2564 | "version": "4.1.0", 2565 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", 2566 | "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", 2567 | "dev": true, 2568 | "requires": { 2569 | "define-properties": "^1.1.2", 2570 | "function-bind": "^1.1.1", 2571 | "has-symbols": "^1.0.0", 2572 | "object-keys": "^1.0.11" 2573 | } 2574 | }, 2575 | "object.getownpropertydescriptors": { 2576 | "version": "2.0.3", 2577 | "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", 2578 | "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", 2579 | "dev": true, 2580 | "requires": { 2581 | "define-properties": "^1.1.2", 2582 | "es-abstract": "^1.5.1" 2583 | } 2584 | }, 2585 | "once": { 2586 | "version": "1.4.0", 2587 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2588 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 2589 | "dev": true, 2590 | "requires": { 2591 | "wrappy": "1" 2592 | } 2593 | }, 2594 | "p-limit": { 2595 | "version": "2.2.1", 2596 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", 2597 | "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", 2598 | "dev": true, 2599 | "requires": { 2600 | "p-try": "^2.0.0" 2601 | } 2602 | }, 2603 | "p-locate": { 2604 | "version": "3.0.0", 2605 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 2606 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 2607 | "dev": true, 2608 | "requires": { 2609 | "p-limit": "^2.0.0" 2610 | } 2611 | }, 2612 | "p-try": { 2613 | "version": "2.2.0", 2614 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 2615 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 2616 | "dev": true 2617 | }, 2618 | "path-exists": { 2619 | "version": "3.0.0", 2620 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 2621 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 2622 | "dev": true 2623 | }, 2624 | "path-is-absolute": { 2625 | "version": "1.0.1", 2626 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2627 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 2628 | "dev": true 2629 | }, 2630 | "path-parse": { 2631 | "version": "1.0.7", 2632 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2633 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2634 | "dev": true 2635 | }, 2636 | "play-sound": { 2637 | "version": "1.1.3", 2638 | "resolved": "https://registry.npmjs.org/play-sound/-/play-sound-1.1.3.tgz", 2639 | "integrity": "sha512-lqEzgtNAdfg2VUXItOtu5bTyWcqeFmnJmgvc8iHEeEOBEJdurqiGYfmCOzIpSBcwrs7XeSpvHv+Rw9dzRPc4aw==", 2640 | "requires": { 2641 | "find-exec": "1.0.1" 2642 | } 2643 | }, 2644 | "require-directory": { 2645 | "version": "2.1.1", 2646 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2647 | "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", 2648 | "dev": true 2649 | }, 2650 | "require-main-filename": { 2651 | "version": "2.0.0", 2652 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", 2653 | "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", 2654 | "dev": true 2655 | }, 2656 | "resolve": { 2657 | "version": "1.13.1", 2658 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz", 2659 | "integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==", 2660 | "dev": true, 2661 | "requires": { 2662 | "path-parse": "^1.0.6" 2663 | } 2664 | }, 2665 | "rimraf": { 2666 | "version": "2.7.1", 2667 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 2668 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 2669 | "dev": true, 2670 | "requires": { 2671 | "glob": "^7.1.3" 2672 | } 2673 | }, 2674 | "semver": { 2675 | "version": "5.7.1", 2676 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2677 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 2678 | "dev": true 2679 | }, 2680 | "set-blocking": { 2681 | "version": "2.0.0", 2682 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 2683 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", 2684 | "dev": true 2685 | }, 2686 | "sprintf-js": { 2687 | "version": "1.0.3", 2688 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 2689 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", 2690 | "dev": true 2691 | }, 2692 | "string-width": { 2693 | "version": "2.1.1", 2694 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 2695 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 2696 | "dev": true, 2697 | "requires": { 2698 | "is-fullwidth-code-point": "^2.0.0", 2699 | "strip-ansi": "^4.0.0" 2700 | } 2701 | }, 2702 | "string.prototype.trimleft": { 2703 | "version": "2.1.0", 2704 | "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz", 2705 | "integrity": "sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==", 2706 | "dev": true, 2707 | "requires": { 2708 | "define-properties": "^1.1.3", 2709 | "function-bind": "^1.1.1" 2710 | } 2711 | }, 2712 | "string.prototype.trimright": { 2713 | "version": "2.1.0", 2714 | "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz", 2715 | "integrity": "sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==", 2716 | "dev": true, 2717 | "requires": { 2718 | "define-properties": "^1.1.3", 2719 | "function-bind": "^1.1.1" 2720 | } 2721 | }, 2722 | "strip-ansi": { 2723 | "version": "4.0.0", 2724 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 2725 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 2726 | "dev": true, 2727 | "requires": { 2728 | "ansi-regex": "^3.0.0" 2729 | } 2730 | }, 2731 | "strip-json-comments": { 2732 | "version": "2.0.1", 2733 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2734 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 2735 | "dev": true 2736 | }, 2737 | "supports-color": { 2738 | "version": "6.0.0", 2739 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", 2740 | "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", 2741 | "dev": true, 2742 | "requires": { 2743 | "has-flag": "^3.0.0" 2744 | } 2745 | }, 2746 | "tslib": { 2747 | "version": "1.10.0", 2748 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", 2749 | "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", 2750 | "dev": true 2751 | }, 2752 | "tslint": { 2753 | "version": "5.20.1", 2754 | "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.20.1.tgz", 2755 | "integrity": "sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg==", 2756 | "dev": true, 2757 | "requires": { 2758 | "@babel/code-frame": "^7.0.0", 2759 | "builtin-modules": "^1.1.1", 2760 | "chalk": "^2.3.0", 2761 | "commander": "^2.12.1", 2762 | "diff": "^4.0.1", 2763 | "glob": "^7.1.1", 2764 | "js-yaml": "^3.13.1", 2765 | "minimatch": "^3.0.4", 2766 | "mkdirp": "^0.5.1", 2767 | "resolve": "^1.3.2", 2768 | "semver": "^5.3.0", 2769 | "tslib": "^1.8.0", 2770 | "tsutils": "^2.29.0" 2771 | }, 2772 | "dependencies": { 2773 | "diff": { 2774 | "version": "4.0.1", 2775 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.1.tgz", 2776 | "integrity": "sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q==", 2777 | "dev": true 2778 | } 2779 | } 2780 | }, 2781 | "tsutils": { 2782 | "version": "2.29.0", 2783 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", 2784 | "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", 2785 | "dev": true, 2786 | "requires": { 2787 | "tslib": "^1.8.1" 2788 | } 2789 | }, 2790 | "typescript": { 2791 | "version": "3.7.2", 2792 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.2.tgz", 2793 | "integrity": "sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ==", 2794 | "dev": true 2795 | }, 2796 | "vscode-test": { 2797 | "version": "1.2.3", 2798 | "resolved": "https://registry.npmjs.org/vscode-test/-/vscode-test-1.2.3.tgz", 2799 | "integrity": "sha512-mKRTNso33NaUULiPBFg6zRjyntjcCpIgkrogyPQuKlvoQREQR8jLKN5UD4L5rkTSD+oBhcKtaLR2/g34FexURw==", 2800 | "dev": true, 2801 | "requires": { 2802 | "http-proxy-agent": "^2.1.0", 2803 | "https-proxy-agent": "^2.2.4", 2804 | "rimraf": "^2.6.3" 2805 | } 2806 | }, 2807 | "which": { 2808 | "version": "1.3.1", 2809 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2810 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2811 | "dev": true, 2812 | "requires": { 2813 | "isexe": "^2.0.0" 2814 | } 2815 | }, 2816 | "which-module": { 2817 | "version": "2.0.0", 2818 | "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", 2819 | "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", 2820 | "dev": true 2821 | }, 2822 | "wide-align": { 2823 | "version": "1.1.3", 2824 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", 2825 | "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", 2826 | "dev": true, 2827 | "requires": { 2828 | "string-width": "^1.0.2 || 2" 2829 | } 2830 | }, 2831 | "wrap-ansi": { 2832 | "version": "5.1.0", 2833 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", 2834 | "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", 2835 | "dev": true, 2836 | "requires": { 2837 | "ansi-styles": "^3.2.0", 2838 | "string-width": "^3.0.0", 2839 | "strip-ansi": "^5.0.0" 2840 | }, 2841 | "dependencies": { 2842 | "ansi-regex": { 2843 | "version": "4.1.0", 2844 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2845 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2846 | "dev": true 2847 | }, 2848 | "string-width": { 2849 | "version": "3.1.0", 2850 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2851 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2852 | "dev": true, 2853 | "requires": { 2854 | "emoji-regex": "^7.0.1", 2855 | "is-fullwidth-code-point": "^2.0.0", 2856 | "strip-ansi": "^5.1.0" 2857 | } 2858 | }, 2859 | "strip-ansi": { 2860 | "version": "5.2.0", 2861 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2862 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2863 | "dev": true, 2864 | "requires": { 2865 | "ansi-regex": "^4.1.0" 2866 | } 2867 | } 2868 | } 2869 | }, 2870 | "wrappy": { 2871 | "version": "1.0.2", 2872 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2873 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 2874 | "dev": true 2875 | }, 2876 | "y18n": { 2877 | "version": "4.0.1", 2878 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", 2879 | "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", 2880 | "dev": true 2881 | }, 2882 | "yargs": { 2883 | "version": "13.3.0", 2884 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", 2885 | "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", 2886 | "dev": true, 2887 | "requires": { 2888 | "cliui": "^5.0.0", 2889 | "find-up": "^3.0.0", 2890 | "get-caller-file": "^2.0.1", 2891 | "require-directory": "^2.1.1", 2892 | "require-main-filename": "^2.0.0", 2893 | "set-blocking": "^2.0.0", 2894 | "string-width": "^3.0.0", 2895 | "which-module": "^2.0.0", 2896 | "y18n": "^4.0.0", 2897 | "yargs-parser": "^13.1.1" 2898 | }, 2899 | "dependencies": { 2900 | "ansi-regex": { 2901 | "version": "4.1.0", 2902 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2903 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2904 | "dev": true 2905 | }, 2906 | "string-width": { 2907 | "version": "3.1.0", 2908 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2909 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2910 | "dev": true, 2911 | "requires": { 2912 | "emoji-regex": "^7.0.1", 2913 | "is-fullwidth-code-point": "^2.0.0", 2914 | "strip-ansi": "^5.1.0" 2915 | } 2916 | }, 2917 | "strip-ansi": { 2918 | "version": "5.2.0", 2919 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2920 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2921 | "dev": true, 2922 | "requires": { 2923 | "ansi-regex": "^4.1.0" 2924 | } 2925 | } 2926 | } 2927 | }, 2928 | "yargs-parser": { 2929 | "version": "13.1.2", 2930 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", 2931 | "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", 2932 | "dev": true, 2933 | "requires": { 2934 | "camelcase": "^5.0.0", 2935 | "decamelize": "^1.2.0" 2936 | } 2937 | }, 2938 | "yargs-unparser": { 2939 | "version": "1.6.0", 2940 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", 2941 | "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", 2942 | "dev": true, 2943 | "requires": { 2944 | "flat": "^4.1.0", 2945 | "lodash": "^4.17.15", 2946 | "yargs": "^13.3.0" 2947 | } 2948 | } 2949 | } 2950 | } 2951 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacker-sounds", 3 | "publisher": "mattogodoy", 4 | "displayName": "Hacker Sounds", 5 | "description": "This extension automatically turns you into a very skilled hacker by playing movie-like sounds while you write code.", 6 | "version": "1.4.3", 7 | "engines": { 8 | "vscode": "^1.40.0" 9 | }, 10 | "homepage": "https://matto.io", 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/mattogodoy/hacker-sounds" 14 | }, 15 | "keywords": [ 16 | "sound", 17 | "keyboard", 18 | "hacker", 19 | "fx", 20 | "sci-fi" 21 | ], 22 | "icon": "icon.png", 23 | "license": "MIT", 24 | "categories": [ 25 | "Other" 26 | ], 27 | "activationEvents": [ 28 | "*" 29 | ], 30 | "main": "./out/extension.js", 31 | "contributes": { 32 | "commands": [ 33 | { 34 | "command": "hacker_sounds.enable", 35 | "title": "Hacker Sounds: Enable" 36 | }, 37 | { 38 | "command": "hacker_sounds.disable", 39 | "title": "Hacker Sounds: Disable" 40 | }, 41 | { 42 | "command": "hacker_sounds.volumeUp", 43 | "title": "Hacker Sounds: Volume Up" 44 | }, 45 | { 46 | "command": "hacker_sounds.volumeDown", 47 | "title": "Hacker Sounds: Volume Down" 48 | }, 49 | { 50 | "command": "hacker_sounds.setVolume", 51 | "title": "Hacker Sounds: Set Volume", 52 | "args": "newVol" 53 | } 54 | ] 55 | }, 56 | "scripts": { 57 | "vscode:prepublish": "npm run -S esbuild-base -- --minify", 58 | "esbuild-base": "esbuild ./src/extension.js --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node", 59 | "esbuild": "npm run -S esbuild-base -- --sourcemap", 60 | "esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch", 61 | "test-compile": "tsc -p ./", 62 | "watch": "tsc -watch -p ./" 63 | }, 64 | "devDependencies": { 65 | "@types/glob": "^7.1.1", 66 | "@types/lodash.debounce": "^4.0.6", 67 | "@types/mocha": "^5.2.7", 68 | "@types/node": "^12.11.7", 69 | "@types/vscode": "^1.40.0", 70 | "esbuild": "^0.14.23", 71 | "glob": "^7.1.5", 72 | "lodash": "^4.17.21", 73 | "mocha": "^6.2.2", 74 | "tslint": "^5.20.0", 75 | "typescript": "^3.6.4", 76 | "vscode-test": "^1.2.2" 77 | }, 78 | "dependencies": { 79 | "lodash": "^4.17.21", 80 | "lodash.debounce": "^4.0.8", 81 | "play-sound": "^1.1.3" 82 | } 83 | } -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | // The module 'vscode' contains the VS Code extensibility API 2 | // Import the module and reference it with the alias vscode in your code below 3 | 'use strict'; 4 | import * as vscode from 'vscode'; 5 | import * as path from 'path'; 6 | import player, { PlayerConfig } from './player'; 7 | import debounce = require('lodash.debounce'); 8 | import { toInteger } from 'lodash'; 9 | 10 | let listener: EditorListener; 11 | let isActive: boolean; 12 | let isNotArrowKey: boolean; 13 | let config: PlayerConfig = { 14 | macVol: 1, 15 | winVol: 100, 16 | linuxVol: 100 17 | }; 18 | 19 | export function activate(context: vscode.ExtensionContext) { 20 | console.log('Initializing "hacker-sounds" extension'); 21 | 22 | // is the extension activated? yes by default. 23 | isActive = context.globalState.get('hacker_sounds', true); 24 | config.macVol = context.globalState.get('mac_volume', 1); 25 | config.winVol = context.globalState.get('win_volume', 100); 26 | config.linuxVol = context.globalState.get('linux_volume', 1); 27 | 28 | // to avoid multiple different instances 29 | listener = listener || new EditorListener(player); 30 | 31 | vscode.commands.registerCommand('hacker_sounds.enable', () => { 32 | if (!isActive) { 33 | context.globalState.update('hacker_sounds', true); 34 | isActive = true; 35 | vscode.window.showInformationMessage('Hacker Sounds extension enabled'); 36 | } else { 37 | vscode.window.showWarningMessage('Hacker Sounds extension is already enabled'); 38 | } 39 | }); 40 | vscode.commands.registerCommand('hacker_sounds.disable', () => { 41 | if (isActive) { 42 | context.globalState.update('hacker_sounds', false); 43 | isActive = false; 44 | vscode.window.showInformationMessage('Hacker Sounds extension disabled'); 45 | } else { 46 | vscode.window.showWarningMessage('Hacker Sounds extension is already disabled'); 47 | } 48 | }); 49 | vscode.commands.registerCommand('hacker_sounds.volumeUp', () => { 50 | let newVol = null; 51 | switch (process.platform) { 52 | case 'darwin': 53 | config.macVol += 1; 54 | 55 | if (config.macVol > 10) { 56 | vscode.window.showWarningMessage('Hacker Sounds already at maximum volume'); 57 | config.macVol = 10; 58 | } 59 | 60 | newVol = config.macVol; 61 | context.globalState.update('mac_volume', newVol); 62 | break; 63 | 64 | case 'win32': 65 | config.winVol += 10; 66 | 67 | if (config.winVol > 100) { 68 | vscode.window.showWarningMessage('Hacker Sounds already at maximum volume'); 69 | config.winVol = 100; 70 | } 71 | 72 | newVol = config.winVol; 73 | context.globalState.update('win_volume', newVol); 74 | break; 75 | 76 | case 'linux': 77 | config.linuxVol += 1; 78 | 79 | if (config.linuxVol > 10) { 80 | vscode.window.showWarningMessage('Hacker Sounds already at maximum volume'); 81 | config.linuxVol = 10; 82 | } 83 | 84 | newVol = config.linuxVol; 85 | context.globalState.update('linux_volume', newVol); 86 | break; 87 | 88 | default: 89 | newVol = 0; 90 | break; 91 | } 92 | 93 | vscode.window.showInformationMessage('Hacker Sounds volume raised: ' + newVol); 94 | }); 95 | vscode.commands.registerCommand('hacker_sounds.volumeDown', () => { 96 | let newVol = null; 97 | 98 | switch (process.platform) { 99 | case 'darwin': 100 | config.macVol -= 1; 101 | 102 | if (config.macVol < 1) { 103 | vscode.window.showWarningMessage('Hacker Sounds already at minimum volume'); 104 | config.macVol = 1; 105 | } 106 | 107 | newVol = config.macVol; 108 | context.globalState.update('mac_volume', newVol); 109 | break; 110 | 111 | case 'win32': 112 | config.winVol -= 10; 113 | 114 | if (config.winVol < 10) { 115 | vscode.window.showWarningMessage('Hacker Sounds already at minimum volume'); 116 | config.winVol = 10; 117 | } 118 | 119 | newVol = config.winVol; 120 | context.globalState.update('win_volume', newVol); 121 | break; 122 | 123 | case 'linux': 124 | config.linuxVol -= 1; 125 | 126 | if (config.linuxVol < 1) { 127 | vscode.window.showWarningMessage('Hacker Sounds already at minimum volume'); 128 | config.linuxVol = 1; 129 | } 130 | 131 | newVol = config.linuxVol; 132 | context.globalState.update('linux_volume', newVol); 133 | break; 134 | 135 | default: 136 | newVol = 0; 137 | break; 138 | } 139 | 140 | vscode.window.showInformationMessage('Hacker Sounds volume lowered: ' + newVol); 141 | }); 142 | 143 | vscode.commands.registerCommand('hacker_sounds.setVolume', async () => { 144 | let input = await vscode.window.showInputBox() 145 | let newVol = toInteger(input); 146 | 147 | switch (process.platform) { 148 | case 'darwin': 149 | if (newVol > 10) { 150 | vscode.window.showInformationMessage("Volume increased to maximum") 151 | config.macVol = 10; 152 | } else if (newVol < 1) { 153 | vscode.window.showInformationMessage("Volume decreased to minimum") 154 | config.macVol = 1 155 | } else { 156 | if (config.macVol < newVol) 157 | vscode.window.showInformationMessage("Volume increased to " + newVol) 158 | else if (config.macVol > newVol) 159 | vscode.window.showInformationMessage("Volume decreased to " + newVol) 160 | else 161 | vscode.window.showWarningMessage("Volume already at " + newVol); 162 | 163 | config.macVol = newVol; 164 | } 165 | 166 | context.globalState.update('mac_volume', newVol); 167 | break; 168 | 169 | case 'win32': 170 | if (newVol > 100) { 171 | vscode.window.showInformationMessage("Volume increased to maximum") 172 | config.winVol = 100; 173 | } 174 | else if (newVol < 10) { 175 | vscode.window.showInformationMessage("Volume decreased to minimum") 176 | config.winVol = 10 177 | } else { 178 | if (config.winVol < newVol) 179 | vscode.window.showInformationMessage("Volume increased to " + newVol) 180 | else if (config.winVol > newVol) 181 | vscode.window.showInformationMessage("Volume decreased to " + newVol) 182 | else 183 | vscode.window.showWarningMessage("Volume already at " + newVol); 184 | 185 | config.winVol = newVol; 186 | } 187 | 188 | context.globalState.update('win_volume', newVol); 189 | break; 190 | 191 | case 'linux': 192 | if (newVol > 10) { 193 | vscode.window.showInformationMessage("Volume increased to maximum") 194 | config.linuxVol = 10; 195 | } else if (newVol < 1) { 196 | vscode.window.showInformationMessage("Volume decreased to minimum") 197 | config.linuxVol = 1 198 | } else { 199 | if (config.linuxVol < newVol) 200 | vscode.window.showInformationMessage("Volume increased to " + newVol) 201 | else if (config.linuxVol > newVol) 202 | vscode.window.showInformationMessage("Volume decreased to " + newVol) 203 | else 204 | vscode.window.showWarningMessage("Volume already at " + newVol); 205 | 206 | config.linuxVol = newVol; 207 | } 208 | 209 | context.globalState.update('linux_volume', newVol); 210 | break; 211 | 212 | default: 213 | newVol = 0; 214 | break; 215 | } 216 | }); 217 | 218 | 219 | // Add to a list of disposables which are disposed when this extension is deactivated. 220 | context.subscriptions.push(listener); 221 | } 222 | 223 | // this method is called when your extension is deactivated 224 | export function deactivate() { } 225 | 226 | /** 227 | * Listen to editor changes and play a sound when a key is pressed. 228 | */ 229 | export class EditorListener { 230 | private _disposable: vscode.Disposable; 231 | private _subscriptions: vscode.Disposable[] = []; 232 | private _basePath: string = path.join(__dirname, '..'); 233 | 234 | // Audio files 235 | private _spaceAudio: string = path.join(this._basePath, 'audio', 'spacebar.wav'); 236 | private _deleteAudio: string = path.join(this._basePath, 'audio', 'delete.wav'); 237 | private _otherKeysAudio: string = path.join(this._basePath, 'audio', 'key.wav'); 238 | private _cutAudio: string = path.join(this._basePath, 'audio', 'cut.wav'); 239 | private _pasteAudio: string = path.join(this._basePath, 'audio', 'paste.wav'); 240 | private _enterAudio: string = path.join(this._basePath, 'audio', 'enter.wav'); 241 | private _tabAudio: string = path.join(this._basePath, 'audio', 'tab.wav'); 242 | private _arrowsAudio: string = path.join(this._basePath, 'audio', 'arrow.wav'); 243 | 244 | constructor(private player: any) { 245 | isNotArrowKey = false; 246 | 247 | vscode.workspace.onDidChangeTextDocument(this._keystrokeCallback, this, this._subscriptions); 248 | vscode.window.onDidChangeTextEditorSelection(this._arrowKeysCallback, this, this._subscriptions); 249 | this._disposable = vscode.Disposable.from(...this._subscriptions); 250 | this.player = { 251 | play: (filePath: string) => player.play(filePath, config) 252 | }; 253 | } 254 | 255 | _keystrokeCallback = debounce((event: vscode.TextDocumentChangeEvent) => { 256 | if (!isActive) { return; } 257 | 258 | let activeDocument = vscode.window.activeTextEditor && vscode.window.activeTextEditor.document; 259 | if (event.document !== activeDocument || event.contentChanges.length === 0) { return; } 260 | 261 | isNotArrowKey = true; 262 | let pressedKey = event.contentChanges[0].text; 263 | 264 | switch (pressedKey) { 265 | case '': 266 | if (event.contentChanges[0].rangeLength === 1) { 267 | // backspace or delete pressed 268 | this.player.play(this._deleteAudio); 269 | } else { 270 | // text cut 271 | this.player.play(this._cutAudio); 272 | } 273 | break; 274 | 275 | case ' ': 276 | // space bar pressed 277 | this.player.play(this._spaceAudio); 278 | break; 279 | 280 | case '\n': 281 | // enter pressed 282 | this.player.play(this._enterAudio); 283 | break; 284 | 285 | case '\t': 286 | case ' ': 287 | case ' ': 288 | // tab pressed 289 | this.player.play(this._tabAudio); 290 | break; 291 | 292 | default: 293 | let textLength = pressedKey.trim().length; 294 | 295 | switch (textLength) { 296 | case 0: 297 | // user hit Enter while indented 298 | this.player.play(this._enterAudio); 299 | break; 300 | 301 | case 1: 302 | // it's a regular character 303 | this.player.play(this._otherKeysAudio); 304 | break; 305 | 306 | default: 307 | // text pasted 308 | this.player.play(this._pasteAudio); 309 | break; 310 | } 311 | break; 312 | } 313 | }, 100, { leading: true }); 314 | 315 | _arrowKeysCallback = debounce((event: vscode.TextEditorSelectionChangeEvent) => { 316 | if (!isActive) { return; } 317 | 318 | // current editor 319 | const editor = vscode.window.activeTextEditor; 320 | if (!editor || editor.document !== event.textEditor.document) { return; } 321 | 322 | // check if there is no selection 323 | if (editor.selection.isEmpty && isNotArrowKey === false) { 324 | this.player.play(this._arrowsAudio); 325 | } else { 326 | isNotArrowKey = false; 327 | } 328 | }, 100, { leading: true }); 329 | 330 | dispose() { 331 | this._disposable.dispose(); 332 | } 333 | } 334 | -------------------------------------------------------------------------------- /src/player.ts: -------------------------------------------------------------------------------- 1 | const cp = require('child_process'); 2 | const path = require('path'); 3 | const player = require('play-sound')(); 4 | 5 | const _isWindows = process.platform === 'win32'; 6 | const _playerWindowsPath = path.join(__dirname, '..', 'audio', 'sounder.exe'); 7 | 8 | export interface PlayerConfig { 9 | /** 10 | * Specify volume of the sounds 11 | */ 12 | macVol: number; 13 | winVol: number; 14 | linuxVol: number; 15 | } 16 | 17 | const playerAdapter = (opts: PlayerConfig) => ({ 18 | afplay: ['-v', opts.macVol], 19 | mplayer: ['-af', `volume=${opts.linuxVol}`], 20 | }); 21 | 22 | export default { 23 | play(filePath: string, config: PlayerConfig) : Promise { 24 | return new Promise ((resolve, reject) => { 25 | if (_isWindows) { 26 | cp.execFile(_playerWindowsPath, ['/vol', config.winVol, filePath]); 27 | resolve(); 28 | } else { 29 | player.play(filePath, playerAdapter(config), (err: any) => { 30 | if (err) { 31 | console.error("Error playing sound:", filePath, " - Description:", err); 32 | return reject(err); 33 | } 34 | resolve(); 35 | }); 36 | } 37 | }); 38 | } 39 | }; 40 | -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path'; 2 | 3 | import { runTests } from 'vscode-test'; 4 | 5 | async function main() { 6 | try { 7 | // The folder containing the Extension Manifest package.json 8 | // Passed to `--extensionDevelopmentPath` 9 | const extensionDevelopmentPath = path.resolve(__dirname, '../../'); 10 | 11 | // The path to test runner 12 | // Passed to --extensionTestsPath 13 | const extensionTestsPath = path.resolve(__dirname, './suite/index'); 14 | 15 | // Download VS Code, unzip it and run the integration test 16 | await runTests({ extensionDevelopmentPath, extensionTestsPath }); 17 | } catch (err) { 18 | console.error('Failed to run tests'); 19 | process.exit(1); 20 | } 21 | } 22 | 23 | main(); 24 | -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- 1 | import * as assert from 'assert'; 2 | 3 | // You can import and use all API from the 'vscode' module 4 | // as well as import your extension to test it 5 | import * as vscode from 'vscode'; 6 | // import * as myExtension from '../extension'; 7 | 8 | suite('Extension Test Suite', () => { 9 | vscode.window.showInformationMessage('Start all tests.'); 10 | 11 | test('Sample test', () => { 12 | assert.equal(-1, [1, 2, 3].indexOf(5)); 13 | assert.equal(-1, [1, 2, 3].indexOf(0)); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path'; 2 | import * as Mocha from 'mocha'; 3 | import * as glob from 'glob'; 4 | 5 | export function run(): Promise { 6 | // Create the mocha test 7 | const mocha = new Mocha({ 8 | ui: 'tdd', 9 | }); 10 | mocha.useColors(true); 11 | 12 | const testsRoot = path.resolve(__dirname, '..'); 13 | 14 | return new Promise((c, e) => { 15 | glob('**/**.test.js', { cwd: testsRoot }, (err, files) => { 16 | if (err) { 17 | return e(err); 18 | } 19 | 20 | // Add files to the test suite 21 | files.forEach(f => mocha.addFile(path.resolve(testsRoot, f))); 22 | 23 | try { 24 | // Run the mocha test 25 | mocha.run(failures => { 26 | if (failures > 0) { 27 | e(new Error(`${failures} tests failed.`)); 28 | } else { 29 | c(); 30 | } 31 | }); 32 | } catch (err) { 33 | e(err); 34 | } 35 | }); 36 | }); 37 | } 38 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "outDir": "out", 6 | "lib": [ 7 | "es6" 8 | ], 9 | "sourceMap": true, 10 | "rootDir": "src", 11 | "strict": true /* enable all strict type-checking options */ 12 | /* Additional Checks */ 13 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 14 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 15 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 16 | }, 17 | "exclude": [ 18 | "node_modules", 19 | ".vscode-test" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-string-throw": true, 4 | "no-unused-expression": true, 5 | "no-duplicate-variable": true, 6 | "curly": true, 7 | "class-name": true, 8 | "semicolon": [ 9 | true, 10 | "always" 11 | ], 12 | "triple-equals": true 13 | }, 14 | "defaultSeverity": "warning" 15 | } 16 | --------------------------------------------------------------------------------