├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── bin ├── obsohtml.js └── obsohtml.test.js ├── package-lock.json └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: meiert -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you’ll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "npm" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "monthly" -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: "Tests" 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | test: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: "Check out repository" 13 | uses: actions/checkout@v4 14 | - name: "Set up Node.js" 15 | uses: actions/setup-node@v4 16 | with: 17 | node-version: lts/* 18 | - name: "Install dependencies" 19 | run: npm ci 20 | - name: "Run Jest tests" 21 | run: npm test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .nvmrc 3 | node_modules/ -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @j9t:registry=https://registry.npmjs.org -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | 429 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ObsoHTML, the Obsolete HTML Checker 2 | 3 | ObsoHTML is a Node.js script designed to scan HTML, PHP, Nunjucks, Twig, JavaScript, and TypeScript files for obsolete or proprietary HTML attributes and elements (in scripts, it would catch JSX syntax). It helps you identify and update deprecated HTML code to be more sure to use web standards. 4 | 5 | ObsoHTML has inherent limitations and may not find all obsolete attributes and elements. If you run into a problem, please [file an issue](https://github.com/j9t/obsohtml/issues). 6 | 7 | ## Usage 8 | 9 | ### 1. As a Node Module 10 | 11 | #### Installation 12 | 13 | ```console 14 | npm i @j9t/obsohtml 15 | ``` 16 | 17 | (To install ObsoHTML globally, use the `-g` flag, as in `npm i -g @j9t/obsohtml`.) 18 | 19 | #### Execution 20 | 21 | The script accepts a folder path as a command line option, which can be specified in both short form (`-f`) and long form (`--folder`). The folder path can be either absolute or relative. 22 | 23 | The script can be run in “verbose” mode by appending `-v` or `--verbose` to the command. This will show information about files and directories that were skipped. 24 | 25 | ##### Example Commands 26 | 27 | Use the default directory (user home directory): 28 | 29 | ```console 30 | npx obsohtml 31 | ``` 32 | 33 | Specify a folder using an absolute path (easiest and most common use case): 34 | 35 | ```console 36 | npx obsohtml -f /path/to/folder 37 | ``` 38 | 39 | Specify a folder using a relative path: 40 | 41 | ```console 42 | npx obsohtml -f ../path/to/folder 43 | ``` 44 | 45 | ### 2. As a Standalone Script 46 | 47 | #### Installation 48 | 49 | Download or fork [the source repository](https://github.com/j9t/obsohtml). 50 | 51 | #### Execution 52 | 53 | As mentioned above, the script accepts a folder (`-f`, `--folder`) and can be run in “verbose” mode (`-v`, `--verbose`). 54 | 55 | ##### Example Commands 56 | 57 | (All commands as run from the root directory of the downloaded repository.) 58 | 59 | Use the default directory (user home directory): 60 | 61 | ```console 62 | node bin/obsohtml.js 63 | ``` 64 | 65 | Specify a folder using an absolute path (easiest and most common use case): 66 | 67 | ```console 68 | node bin/obsohtml.js -f /path/to/folder 69 | ``` 70 | 71 | Specify a folder using a relative path: 72 | 73 | ```console 74 | node bin/obsohtml.js -f ../path/to/folder 75 | ``` 76 | 77 | ## Output 78 | 79 | The script will output messages to the console indicating any obsolete attributes or elements found in the scanned files, along with the file paths where they were detected. 80 | 81 | ## Background 82 | 83 | This started as an experiment, in which I used AI to produce this little HTML quality helper, its tests, and its documentation. While it’s pretty straightforward, I’m sure to have missed something. Please [file an issue](https://github.com/j9t/obsohtml/issues) or contact me directly if you spot a problem or have a suggestion. 84 | 85 | ## Acknowledgments 86 | 87 | Thanks to [@mattbrundage](https://github.com/mattbrundage), [@FabianBeiner](https://github.com/FabianBeiner), and [@AndrewMac](https://github.com/AndrewMac) for helping to make ObsoHTML better! -------------------------------------------------------------------------------- /bin/obsohtml.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | const { Command } = require('commander'); 4 | const fs = require('fs'); 5 | const os = require('os'); 6 | const path = require('path'); 7 | const program = new Command(); 8 | const { styleText } = require('node:util'); 9 | 10 | // List of obsolete or proprietary HTML elements 11 | const obsoleteElements = [ 12 | 'acronym', 'applet', 'basefont', 'bgsound', 'big', 'blink', 'center', 'command', 'content', 'dir', 'element', 'font', 'frame', 'frameset', 'image', 'isindex', 'keygen', 'listing', 'marquee', 'menuitem', 'multicol', 'nextid', 'nobr', 'noembed', 'noframes', 'param', 'plaintext', 'rb', 'rtc', 'shadow', 'spacer', 'strike', 'tt', 'xmp' 13 | ]; 14 | 15 | // List of obsolete or proprietary HTML attributes 16 | const obsoleteAttributes = [ 17 | 'align', 'background', 'bgcolor', 'border', 'frameborder', 'hspace', 'marginheight', 'marginwidth', 'noshade', 'nowrap', 'scrolling', 'valign', 'vspace' 18 | ]; 19 | 20 | // Default project directory (user’s home directory) 21 | const defaultProjectDirectory = os.homedir(); 22 | 23 | // Function to find obsolete elements and attributes in a file 24 | async function findObsolete(filePath) { 25 | const content = fs.readFileSync(filePath, 'utf8'); 26 | 27 | // Check for obsolete elements 28 | obsoleteElements.forEach(element => { 29 | const elementRegex = new RegExp(`<\\s*${element}\\b`, 'i'); 30 | if (elementRegex.test(content)) { 31 | const message = styleText('blue', `Found obsolete element ${styleText('bold', `'${element}'`)} in ${filePath}`); 32 | console.log(message); 33 | } 34 | }); 35 | 36 | // Check for obsolete attributes 37 | obsoleteAttributes.forEach(attribute => { 38 | const attributeRegex = new RegExp(`<[^>]*\\s${attribute}\\b(\\s*=\\s*(?:"[^"]*"|'[^']*'|[^"'\\s>]+))?\\s*(?=/?>)`, 'i'); 39 | if (attributeRegex.test(content)) { 40 | const message = styleText('green', `Found obsolete attribute ${styleText('bold', `'${attribute}'`)} in ${filePath}`); 41 | console.log(message); 42 | } 43 | }); 44 | } 45 | 46 | // Function to walk through the project directory, excluding node_modules directories 47 | function walkDirectory(directory, verbose) { 48 | const MAX_PATH_LENGTH = 255; // Adjust this value based on your OS limits 49 | let files; 50 | 51 | try { 52 | files = fs.readdirSync(directory); 53 | } catch (err) { 54 | if (err.code === 'EPERM' || err.code === 'EACCES') { 55 | if (verbose) console.warn(`Skipping directory due to permissions: ${directory}`); 56 | return; 57 | } else if (err.code === 'ENOENT') { 58 | if (verbose) console.warn(`Skipping non-existent directory: ${directory}`); 59 | return; 60 | } else { 61 | throw err; 62 | } 63 | } 64 | 65 | files.forEach(file => { 66 | const fullPath = path.join(directory, file); 67 | 68 | if (fullPath.length > MAX_PATH_LENGTH) { 69 | if (verbose) console.warn(`Skipping file or directory with path too long: ${fullPath}`); 70 | return; 71 | } 72 | 73 | try { 74 | const stats = fs.lstatSync(fullPath); 75 | if (stats.isSymbolicLink()) { 76 | if (verbose) console.warn(`Skipping symbolic link: ${fullPath}`); 77 | return; 78 | } 79 | if (fs.statSync(fullPath).isDirectory()) { 80 | if (file !== 'node_modules') { 81 | walkDirectory(fullPath, verbose); 82 | } 83 | } else if (fullPath.endsWith('.html') || fullPath.endsWith('.htm') || fullPath.endsWith('.php') || fullPath.endsWith('.njk') || fullPath.endsWith('.twig') || fullPath.endsWith('.js') || fullPath.endsWith('.ts')) { 84 | findObsolete(fullPath); 85 | } 86 | } catch (err) { 87 | if (err.code === 'ENOENT') { 88 | if (verbose) console.warn(`Skipping non-existent file or directory: ${fullPath}`); 89 | } else { 90 | throw err; 91 | } 92 | } 93 | }); 94 | } 95 | 96 | // Main function to execute the script 97 | async function main(projectDirectory = defaultProjectDirectory, verbose = false) { 98 | await walkDirectory(projectDirectory, verbose); 99 | } 100 | 101 | // Define command line options 102 | program 103 | .option('-f, --folder ', 'specify the project directory', defaultProjectDirectory) 104 | .option('-v, --verbose', 'enable verbose output') 105 | .parse(process.argv); 106 | 107 | // Get the project directory and verbose flag from command line arguments or use the default 108 | const options = program.opts(); 109 | const projectDirectory = options.folder; 110 | const verbose = options.verbose; 111 | main(projectDirectory, verbose); -------------------------------------------------------------------------------- /bin/obsohtml.test.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const { spawnSync } = require('child_process'); 4 | 5 | describe('ObsoHTML', () => { 6 | const tempDir = path.join(__dirname, 'temp_test_dir'); 7 | const tempFile = path.join(tempDir, 'test.html'); 8 | const tempFileWithAttributes = path.join(tempDir, 'test_with_attributes.html'); 9 | const tempFileWithMinimizedAttributes = path.join(tempDir, 'test_with_minimized_attributes.html'); 10 | const tempTwigFile = path.join(tempDir, 'test.twig'); 11 | 12 | beforeAll(() => { 13 | // Create a temporary directory and files 14 | if (!fs.existsSync(tempDir)) { 15 | fs.mkdirSync(tempDir); 16 | } 17 | fs.writeFileSync(tempFile, 'Test
Test
'); 18 | fs.writeFileSync(tempFileWithAttributes, 'TestTest'); 19 | fs.writeFileSync(tempFileWithMinimizedAttributes, 'Test
'); 20 | fs.writeFileSync(tempTwigFile, 'Test'); 21 | }); 22 | 23 | afterAll(() => { 24 | // Clean up the temporary directory and files 25 | fs.unlinkSync(tempFile); 26 | fs.unlinkSync(tempFileWithAttributes); 27 | fs.unlinkSync(tempFileWithMinimizedAttributes); 28 | fs.unlinkSync(tempTwigFile); 29 | fs.rmdirSync(tempDir); 30 | }); 31 | 32 | test('Detect obsolete elements', () => { 33 | const result = spawnSync('node', ['bin/obsohtml.js', '-f', tempDir], { encoding: 'utf-8' }); 34 | expect(result.stdout).toContain("Found obsolete element 'center'"); 35 | }); 36 | 37 | test('Detect obsolete attributes', () => { 38 | const result = spawnSync('node', ['bin/obsohtml.js', '-f', tempDir], { encoding: 'utf-8' }); 39 | expect(result.stdout).toContain("Found obsolete attribute 'align'"); 40 | }); 41 | 42 | test('Detect obsolete elements and attributes using absolute path', () => { 43 | const absolutePath = path.resolve(tempDir); 44 | const result = spawnSync('node', ['bin/obsohtml.js', '-f', absolutePath], { encoding: 'utf-8' }); 45 | expect(result.stdout).toContain("Found obsolete element 'center'"); 46 | expect(result.stdout).toContain("Found obsolete attribute 'align'"); 47 | }); 48 | 49 | test('Detect obsolete elements and attributes using relative path', () => { 50 | const relativePath = path.relative(process.cwd(), tempDir); 51 | const result = spawnSync('node', ['bin/obsohtml.js', '--folder', relativePath], { encoding: 'utf-8' }); 52 | expect(result.stdout).toContain("Found obsolete element 'center'"); 53 | expect(result.stdout).toContain("Found obsolete attribute 'align'"); 54 | }); 55 | 56 | test('Detect obsolete minimized attributes', () => { 57 | const result = spawnSync('node', ['bin/obsohtml.js', '-f', tempDir], { encoding: 'utf-8' }); 58 | expect(result.stdout).toContain("Found obsolete attribute 'noshade'"); 59 | expect(result.stdout).not.toContain("Found obsolete attribute 'nowrap'"); 60 | }); 61 | 62 | test('Detect obsolete elements in Twig file', () => { 63 | const result = spawnSync('node', ['bin/obsohtml.js', '-f', tempDir], { encoding: 'utf-8' }); 64 | expect(result.stdout).toContain("Found obsolete element 'isindex'"); 65 | }); 66 | }); -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@j9t/obsohtml", 3 | "version": "1.8.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "@j9t/obsohtml", 9 | "version": "1.8.0", 10 | "license": "CC-BY-SA-4.0", 11 | "dependencies": { 12 | "commander": "^14.0.0" 13 | }, 14 | "bin": { 15 | "obsohtml": "bin/obsohtml.js" 16 | }, 17 | "devDependencies": { 18 | "jest": "^29.7.0" 19 | } 20 | }, 21 | "node_modules/@ampproject/remapping": { 22 | "version": "2.3.0", 23 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 24 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 25 | "dev": true, 26 | "license": "Apache-2.0", 27 | "dependencies": { 28 | "@jridgewell/gen-mapping": "^0.3.5", 29 | "@jridgewell/trace-mapping": "^0.3.24" 30 | }, 31 | "engines": { 32 | "node": ">=6.0.0" 33 | } 34 | }, 35 | "node_modules/@babel/code-frame": { 36 | "version": "7.24.7", 37 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", 38 | "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", 39 | "dev": true, 40 | "license": "MIT", 41 | "dependencies": { 42 | "@babel/highlight": "^7.24.7", 43 | "picocolors": "^1.0.0" 44 | }, 45 | "engines": { 46 | "node": ">=6.9.0" 47 | } 48 | }, 49 | "node_modules/@babel/compat-data": { 50 | "version": "7.25.2", 51 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", 52 | "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", 53 | "dev": true, 54 | "license": "MIT", 55 | "engines": { 56 | "node": ">=6.9.0" 57 | } 58 | }, 59 | "node_modules/@babel/core": { 60 | "version": "7.25.2", 61 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", 62 | "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", 63 | "dev": true, 64 | "license": "MIT", 65 | "dependencies": { 66 | "@ampproject/remapping": "^2.2.0", 67 | "@babel/code-frame": "^7.24.7", 68 | "@babel/generator": "^7.25.0", 69 | "@babel/helper-compilation-targets": "^7.25.2", 70 | "@babel/helper-module-transforms": "^7.25.2", 71 | "@babel/helpers": "^7.25.0", 72 | "@babel/parser": "^7.25.0", 73 | "@babel/template": "^7.25.0", 74 | "@babel/traverse": "^7.25.2", 75 | "@babel/types": "^7.25.2", 76 | "convert-source-map": "^2.0.0", 77 | "debug": "^4.1.0", 78 | "gensync": "^1.0.0-beta.2", 79 | "json5": "^2.2.3", 80 | "semver": "^6.3.1" 81 | }, 82 | "engines": { 83 | "node": ">=6.9.0" 84 | }, 85 | "funding": { 86 | "type": "opencollective", 87 | "url": "https://opencollective.com/babel" 88 | } 89 | }, 90 | "node_modules/@babel/generator": { 91 | "version": "7.25.0", 92 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", 93 | "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", 94 | "dev": true, 95 | "license": "MIT", 96 | "dependencies": { 97 | "@babel/types": "^7.25.0", 98 | "@jridgewell/gen-mapping": "^0.3.5", 99 | "@jridgewell/trace-mapping": "^0.3.25", 100 | "jsesc": "^2.5.1" 101 | }, 102 | "engines": { 103 | "node": ">=6.9.0" 104 | } 105 | }, 106 | "node_modules/@babel/helper-compilation-targets": { 107 | "version": "7.25.2", 108 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", 109 | "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", 110 | "dev": true, 111 | "license": "MIT", 112 | "dependencies": { 113 | "@babel/compat-data": "^7.25.2", 114 | "@babel/helper-validator-option": "^7.24.8", 115 | "browserslist": "^4.23.1", 116 | "lru-cache": "^5.1.1", 117 | "semver": "^6.3.1" 118 | }, 119 | "engines": { 120 | "node": ">=6.9.0" 121 | } 122 | }, 123 | "node_modules/@babel/helper-module-imports": { 124 | "version": "7.24.7", 125 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", 126 | "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", 127 | "dev": true, 128 | "license": "MIT", 129 | "dependencies": { 130 | "@babel/traverse": "^7.24.7", 131 | "@babel/types": "^7.24.7" 132 | }, 133 | "engines": { 134 | "node": ">=6.9.0" 135 | } 136 | }, 137 | "node_modules/@babel/helper-module-transforms": { 138 | "version": "7.25.2", 139 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", 140 | "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", 141 | "dev": true, 142 | "license": "MIT", 143 | "dependencies": { 144 | "@babel/helper-module-imports": "^7.24.7", 145 | "@babel/helper-simple-access": "^7.24.7", 146 | "@babel/helper-validator-identifier": "^7.24.7", 147 | "@babel/traverse": "^7.25.2" 148 | }, 149 | "engines": { 150 | "node": ">=6.9.0" 151 | }, 152 | "peerDependencies": { 153 | "@babel/core": "^7.0.0" 154 | } 155 | }, 156 | "node_modules/@babel/helper-plugin-utils": { 157 | "version": "7.24.8", 158 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", 159 | "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", 160 | "dev": true, 161 | "license": "MIT", 162 | "engines": { 163 | "node": ">=6.9.0" 164 | } 165 | }, 166 | "node_modules/@babel/helper-simple-access": { 167 | "version": "7.24.7", 168 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", 169 | "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", 170 | "dev": true, 171 | "license": "MIT", 172 | "dependencies": { 173 | "@babel/traverse": "^7.24.7", 174 | "@babel/types": "^7.24.7" 175 | }, 176 | "engines": { 177 | "node": ">=6.9.0" 178 | } 179 | }, 180 | "node_modules/@babel/helper-string-parser": { 181 | "version": "7.24.8", 182 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", 183 | "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", 184 | "dev": true, 185 | "license": "MIT", 186 | "engines": { 187 | "node": ">=6.9.0" 188 | } 189 | }, 190 | "node_modules/@babel/helper-validator-identifier": { 191 | "version": "7.24.7", 192 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", 193 | "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", 194 | "dev": true, 195 | "license": "MIT", 196 | "engines": { 197 | "node": ">=6.9.0" 198 | } 199 | }, 200 | "node_modules/@babel/helper-validator-option": { 201 | "version": "7.24.8", 202 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", 203 | "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", 204 | "dev": true, 205 | "license": "MIT", 206 | "engines": { 207 | "node": ">=6.9.0" 208 | } 209 | }, 210 | "node_modules/@babel/helpers": { 211 | "version": "7.25.0", 212 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", 213 | "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", 214 | "dev": true, 215 | "license": "MIT", 216 | "dependencies": { 217 | "@babel/template": "^7.25.0", 218 | "@babel/types": "^7.25.0" 219 | }, 220 | "engines": { 221 | "node": ">=6.9.0" 222 | } 223 | }, 224 | "node_modules/@babel/highlight": { 225 | "version": "7.24.7", 226 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", 227 | "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", 228 | "dev": true, 229 | "license": "MIT", 230 | "dependencies": { 231 | "@babel/helper-validator-identifier": "^7.24.7", 232 | "chalk": "^2.4.2", 233 | "js-tokens": "^4.0.0", 234 | "picocolors": "^1.0.0" 235 | }, 236 | "engines": { 237 | "node": ">=6.9.0" 238 | } 239 | }, 240 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 241 | "version": "3.2.1", 242 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 243 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 244 | "dev": true, 245 | "license": "MIT", 246 | "dependencies": { 247 | "color-convert": "^1.9.0" 248 | }, 249 | "engines": { 250 | "node": ">=4" 251 | } 252 | }, 253 | "node_modules/@babel/highlight/node_modules/chalk": { 254 | "version": "2.4.2", 255 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 256 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 257 | "dev": true, 258 | "license": "MIT", 259 | "dependencies": { 260 | "ansi-styles": "^3.2.1", 261 | "escape-string-regexp": "^1.0.5", 262 | "supports-color": "^5.3.0" 263 | }, 264 | "engines": { 265 | "node": ">=4" 266 | } 267 | }, 268 | "node_modules/@babel/highlight/node_modules/color-convert": { 269 | "version": "1.9.3", 270 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 271 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 272 | "dev": true, 273 | "license": "MIT", 274 | "dependencies": { 275 | "color-name": "1.1.3" 276 | } 277 | }, 278 | "node_modules/@babel/highlight/node_modules/color-name": { 279 | "version": "1.1.3", 280 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 281 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 282 | "dev": true, 283 | "license": "MIT" 284 | }, 285 | "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 286 | "version": "1.0.5", 287 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 288 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 289 | "dev": true, 290 | "license": "MIT", 291 | "engines": { 292 | "node": ">=0.8.0" 293 | } 294 | }, 295 | "node_modules/@babel/highlight/node_modules/has-flag": { 296 | "version": "3.0.0", 297 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 298 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 299 | "dev": true, 300 | "license": "MIT", 301 | "engines": { 302 | "node": ">=4" 303 | } 304 | }, 305 | "node_modules/@babel/highlight/node_modules/supports-color": { 306 | "version": "5.5.0", 307 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 308 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 309 | "dev": true, 310 | "license": "MIT", 311 | "dependencies": { 312 | "has-flag": "^3.0.0" 313 | }, 314 | "engines": { 315 | "node": ">=4" 316 | } 317 | }, 318 | "node_modules/@babel/parser": { 319 | "version": "7.25.3", 320 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", 321 | "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", 322 | "dev": true, 323 | "license": "MIT", 324 | "dependencies": { 325 | "@babel/types": "^7.25.2" 326 | }, 327 | "bin": { 328 | "parser": "bin/babel-parser.js" 329 | }, 330 | "engines": { 331 | "node": ">=6.0.0" 332 | } 333 | }, 334 | "node_modules/@babel/plugin-syntax-async-generators": { 335 | "version": "7.8.4", 336 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 337 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 338 | "dev": true, 339 | "license": "MIT", 340 | "dependencies": { 341 | "@babel/helper-plugin-utils": "^7.8.0" 342 | }, 343 | "peerDependencies": { 344 | "@babel/core": "^7.0.0-0" 345 | } 346 | }, 347 | "node_modules/@babel/plugin-syntax-bigint": { 348 | "version": "7.8.3", 349 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 350 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 351 | "dev": true, 352 | "license": "MIT", 353 | "dependencies": { 354 | "@babel/helper-plugin-utils": "^7.8.0" 355 | }, 356 | "peerDependencies": { 357 | "@babel/core": "^7.0.0-0" 358 | } 359 | }, 360 | "node_modules/@babel/plugin-syntax-class-properties": { 361 | "version": "7.12.13", 362 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 363 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 364 | "dev": true, 365 | "license": "MIT", 366 | "dependencies": { 367 | "@babel/helper-plugin-utils": "^7.12.13" 368 | }, 369 | "peerDependencies": { 370 | "@babel/core": "^7.0.0-0" 371 | } 372 | }, 373 | "node_modules/@babel/plugin-syntax-import-meta": { 374 | "version": "7.10.4", 375 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 376 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 377 | "dev": true, 378 | "license": "MIT", 379 | "dependencies": { 380 | "@babel/helper-plugin-utils": "^7.10.4" 381 | }, 382 | "peerDependencies": { 383 | "@babel/core": "^7.0.0-0" 384 | } 385 | }, 386 | "node_modules/@babel/plugin-syntax-json-strings": { 387 | "version": "7.8.3", 388 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 389 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 390 | "dev": true, 391 | "license": "MIT", 392 | "dependencies": { 393 | "@babel/helper-plugin-utils": "^7.8.0" 394 | }, 395 | "peerDependencies": { 396 | "@babel/core": "^7.0.0-0" 397 | } 398 | }, 399 | "node_modules/@babel/plugin-syntax-jsx": { 400 | "version": "7.24.7", 401 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", 402 | "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", 403 | "dev": true, 404 | "license": "MIT", 405 | "dependencies": { 406 | "@babel/helper-plugin-utils": "^7.24.7" 407 | }, 408 | "engines": { 409 | "node": ">=6.9.0" 410 | }, 411 | "peerDependencies": { 412 | "@babel/core": "^7.0.0-0" 413 | } 414 | }, 415 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 416 | "version": "7.10.4", 417 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 418 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 419 | "dev": true, 420 | "license": "MIT", 421 | "dependencies": { 422 | "@babel/helper-plugin-utils": "^7.10.4" 423 | }, 424 | "peerDependencies": { 425 | "@babel/core": "^7.0.0-0" 426 | } 427 | }, 428 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 429 | "version": "7.8.3", 430 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 431 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 432 | "dev": true, 433 | "license": "MIT", 434 | "dependencies": { 435 | "@babel/helper-plugin-utils": "^7.8.0" 436 | }, 437 | "peerDependencies": { 438 | "@babel/core": "^7.0.0-0" 439 | } 440 | }, 441 | "node_modules/@babel/plugin-syntax-numeric-separator": { 442 | "version": "7.10.4", 443 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 444 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 445 | "dev": true, 446 | "license": "MIT", 447 | "dependencies": { 448 | "@babel/helper-plugin-utils": "^7.10.4" 449 | }, 450 | "peerDependencies": { 451 | "@babel/core": "^7.0.0-0" 452 | } 453 | }, 454 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 455 | "version": "7.8.3", 456 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 457 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 458 | "dev": true, 459 | "license": "MIT", 460 | "dependencies": { 461 | "@babel/helper-plugin-utils": "^7.8.0" 462 | }, 463 | "peerDependencies": { 464 | "@babel/core": "^7.0.0-0" 465 | } 466 | }, 467 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 468 | "version": "7.8.3", 469 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 470 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 471 | "dev": true, 472 | "license": "MIT", 473 | "dependencies": { 474 | "@babel/helper-plugin-utils": "^7.8.0" 475 | }, 476 | "peerDependencies": { 477 | "@babel/core": "^7.0.0-0" 478 | } 479 | }, 480 | "node_modules/@babel/plugin-syntax-optional-chaining": { 481 | "version": "7.8.3", 482 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 483 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 484 | "dev": true, 485 | "license": "MIT", 486 | "dependencies": { 487 | "@babel/helper-plugin-utils": "^7.8.0" 488 | }, 489 | "peerDependencies": { 490 | "@babel/core": "^7.0.0-0" 491 | } 492 | }, 493 | "node_modules/@babel/plugin-syntax-top-level-await": { 494 | "version": "7.14.5", 495 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 496 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 497 | "dev": true, 498 | "license": "MIT", 499 | "dependencies": { 500 | "@babel/helper-plugin-utils": "^7.14.5" 501 | }, 502 | "engines": { 503 | "node": ">=6.9.0" 504 | }, 505 | "peerDependencies": { 506 | "@babel/core": "^7.0.0-0" 507 | } 508 | }, 509 | "node_modules/@babel/plugin-syntax-typescript": { 510 | "version": "7.24.7", 511 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", 512 | "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", 513 | "dev": true, 514 | "license": "MIT", 515 | "dependencies": { 516 | "@babel/helper-plugin-utils": "^7.24.7" 517 | }, 518 | "engines": { 519 | "node": ">=6.9.0" 520 | }, 521 | "peerDependencies": { 522 | "@babel/core": "^7.0.0-0" 523 | } 524 | }, 525 | "node_modules/@babel/template": { 526 | "version": "7.25.0", 527 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", 528 | "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", 529 | "dev": true, 530 | "license": "MIT", 531 | "dependencies": { 532 | "@babel/code-frame": "^7.24.7", 533 | "@babel/parser": "^7.25.0", 534 | "@babel/types": "^7.25.0" 535 | }, 536 | "engines": { 537 | "node": ">=6.9.0" 538 | } 539 | }, 540 | "node_modules/@babel/traverse": { 541 | "version": "7.25.3", 542 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", 543 | "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", 544 | "dev": true, 545 | "license": "MIT", 546 | "dependencies": { 547 | "@babel/code-frame": "^7.24.7", 548 | "@babel/generator": "^7.25.0", 549 | "@babel/parser": "^7.25.3", 550 | "@babel/template": "^7.25.0", 551 | "@babel/types": "^7.25.2", 552 | "debug": "^4.3.1", 553 | "globals": "^11.1.0" 554 | }, 555 | "engines": { 556 | "node": ">=6.9.0" 557 | } 558 | }, 559 | "node_modules/@babel/types": { 560 | "version": "7.25.2", 561 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", 562 | "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", 563 | "dev": true, 564 | "license": "MIT", 565 | "dependencies": { 566 | "@babel/helper-string-parser": "^7.24.8", 567 | "@babel/helper-validator-identifier": "^7.24.7", 568 | "to-fast-properties": "^2.0.0" 569 | }, 570 | "engines": { 571 | "node": ">=6.9.0" 572 | } 573 | }, 574 | "node_modules/@bcoe/v8-coverage": { 575 | "version": "0.2.3", 576 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 577 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 578 | "dev": true, 579 | "license": "MIT" 580 | }, 581 | "node_modules/@istanbuljs/load-nyc-config": { 582 | "version": "1.1.0", 583 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 584 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 585 | "dev": true, 586 | "license": "ISC", 587 | "dependencies": { 588 | "camelcase": "^5.3.1", 589 | "find-up": "^4.1.0", 590 | "get-package-type": "^0.1.0", 591 | "js-yaml": "^3.13.1", 592 | "resolve-from": "^5.0.0" 593 | }, 594 | "engines": { 595 | "node": ">=8" 596 | } 597 | }, 598 | "node_modules/@istanbuljs/schema": { 599 | "version": "0.1.3", 600 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 601 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 602 | "dev": true, 603 | "license": "MIT", 604 | "engines": { 605 | "node": ">=8" 606 | } 607 | }, 608 | "node_modules/@jest/console": { 609 | "version": "29.7.0", 610 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 611 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 612 | "dev": true, 613 | "license": "MIT", 614 | "dependencies": { 615 | "@jest/types": "^29.6.3", 616 | "@types/node": "*", 617 | "chalk": "^4.0.0", 618 | "jest-message-util": "^29.7.0", 619 | "jest-util": "^29.7.0", 620 | "slash": "^3.0.0" 621 | }, 622 | "engines": { 623 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 624 | } 625 | }, 626 | "node_modules/@jest/console/node_modules/chalk": { 627 | "version": "4.1.2", 628 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 629 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 630 | "dev": true, 631 | "license": "MIT", 632 | "dependencies": { 633 | "ansi-styles": "^4.1.0", 634 | "supports-color": "^7.1.0" 635 | }, 636 | "engines": { 637 | "node": ">=10" 638 | }, 639 | "funding": { 640 | "url": "https://github.com/chalk/chalk?sponsor=1" 641 | } 642 | }, 643 | "node_modules/@jest/core": { 644 | "version": "29.7.0", 645 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 646 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 647 | "dev": true, 648 | "license": "MIT", 649 | "dependencies": { 650 | "@jest/console": "^29.7.0", 651 | "@jest/reporters": "^29.7.0", 652 | "@jest/test-result": "^29.7.0", 653 | "@jest/transform": "^29.7.0", 654 | "@jest/types": "^29.6.3", 655 | "@types/node": "*", 656 | "ansi-escapes": "^4.2.1", 657 | "chalk": "^4.0.0", 658 | "ci-info": "^3.2.0", 659 | "exit": "^0.1.2", 660 | "graceful-fs": "^4.2.9", 661 | "jest-changed-files": "^29.7.0", 662 | "jest-config": "^29.7.0", 663 | "jest-haste-map": "^29.7.0", 664 | "jest-message-util": "^29.7.0", 665 | "jest-regex-util": "^29.6.3", 666 | "jest-resolve": "^29.7.0", 667 | "jest-resolve-dependencies": "^29.7.0", 668 | "jest-runner": "^29.7.0", 669 | "jest-runtime": "^29.7.0", 670 | "jest-snapshot": "^29.7.0", 671 | "jest-util": "^29.7.0", 672 | "jest-validate": "^29.7.0", 673 | "jest-watcher": "^29.7.0", 674 | "micromatch": "^4.0.4", 675 | "pretty-format": "^29.7.0", 676 | "slash": "^3.0.0", 677 | "strip-ansi": "^6.0.0" 678 | }, 679 | "engines": { 680 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 681 | }, 682 | "peerDependencies": { 683 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 684 | }, 685 | "peerDependenciesMeta": { 686 | "node-notifier": { 687 | "optional": true 688 | } 689 | } 690 | }, 691 | "node_modules/@jest/core/node_modules/chalk": { 692 | "version": "4.1.2", 693 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 694 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 695 | "dev": true, 696 | "license": "MIT", 697 | "dependencies": { 698 | "ansi-styles": "^4.1.0", 699 | "supports-color": "^7.1.0" 700 | }, 701 | "engines": { 702 | "node": ">=10" 703 | }, 704 | "funding": { 705 | "url": "https://github.com/chalk/chalk?sponsor=1" 706 | } 707 | }, 708 | "node_modules/@jest/environment": { 709 | "version": "29.7.0", 710 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 711 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 712 | "dev": true, 713 | "license": "MIT", 714 | "dependencies": { 715 | "@jest/fake-timers": "^29.7.0", 716 | "@jest/types": "^29.6.3", 717 | "@types/node": "*", 718 | "jest-mock": "^29.7.0" 719 | }, 720 | "engines": { 721 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 722 | } 723 | }, 724 | "node_modules/@jest/expect": { 725 | "version": "29.7.0", 726 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 727 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 728 | "dev": true, 729 | "license": "MIT", 730 | "dependencies": { 731 | "expect": "^29.7.0", 732 | "jest-snapshot": "^29.7.0" 733 | }, 734 | "engines": { 735 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 736 | } 737 | }, 738 | "node_modules/@jest/expect-utils": { 739 | "version": "29.7.0", 740 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 741 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 742 | "dev": true, 743 | "license": "MIT", 744 | "dependencies": { 745 | "jest-get-type": "^29.6.3" 746 | }, 747 | "engines": { 748 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 749 | } 750 | }, 751 | "node_modules/@jest/fake-timers": { 752 | "version": "29.7.0", 753 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 754 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 755 | "dev": true, 756 | "license": "MIT", 757 | "dependencies": { 758 | "@jest/types": "^29.6.3", 759 | "@sinonjs/fake-timers": "^10.0.2", 760 | "@types/node": "*", 761 | "jest-message-util": "^29.7.0", 762 | "jest-mock": "^29.7.0", 763 | "jest-util": "^29.7.0" 764 | }, 765 | "engines": { 766 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 767 | } 768 | }, 769 | "node_modules/@jest/globals": { 770 | "version": "29.7.0", 771 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 772 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 773 | "dev": true, 774 | "license": "MIT", 775 | "dependencies": { 776 | "@jest/environment": "^29.7.0", 777 | "@jest/expect": "^29.7.0", 778 | "@jest/types": "^29.6.3", 779 | "jest-mock": "^29.7.0" 780 | }, 781 | "engines": { 782 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 783 | } 784 | }, 785 | "node_modules/@jest/reporters": { 786 | "version": "29.7.0", 787 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 788 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 789 | "dev": true, 790 | "license": "MIT", 791 | "dependencies": { 792 | "@bcoe/v8-coverage": "^0.2.3", 793 | "@jest/console": "^29.7.0", 794 | "@jest/test-result": "^29.7.0", 795 | "@jest/transform": "^29.7.0", 796 | "@jest/types": "^29.6.3", 797 | "@jridgewell/trace-mapping": "^0.3.18", 798 | "@types/node": "*", 799 | "chalk": "^4.0.0", 800 | "collect-v8-coverage": "^1.0.0", 801 | "exit": "^0.1.2", 802 | "glob": "^7.1.3", 803 | "graceful-fs": "^4.2.9", 804 | "istanbul-lib-coverage": "^3.0.0", 805 | "istanbul-lib-instrument": "^6.0.0", 806 | "istanbul-lib-report": "^3.0.0", 807 | "istanbul-lib-source-maps": "^4.0.0", 808 | "istanbul-reports": "^3.1.3", 809 | "jest-message-util": "^29.7.0", 810 | "jest-util": "^29.7.0", 811 | "jest-worker": "^29.7.0", 812 | "slash": "^3.0.0", 813 | "string-length": "^4.0.1", 814 | "strip-ansi": "^6.0.0", 815 | "v8-to-istanbul": "^9.0.1" 816 | }, 817 | "engines": { 818 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 819 | }, 820 | "peerDependencies": { 821 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 822 | }, 823 | "peerDependenciesMeta": { 824 | "node-notifier": { 825 | "optional": true 826 | } 827 | } 828 | }, 829 | "node_modules/@jest/reporters/node_modules/chalk": { 830 | "version": "4.1.2", 831 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 832 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 833 | "dev": true, 834 | "license": "MIT", 835 | "dependencies": { 836 | "ansi-styles": "^4.1.0", 837 | "supports-color": "^7.1.0" 838 | }, 839 | "engines": { 840 | "node": ">=10" 841 | }, 842 | "funding": { 843 | "url": "https://github.com/chalk/chalk?sponsor=1" 844 | } 845 | }, 846 | "node_modules/@jest/schemas": { 847 | "version": "29.6.3", 848 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 849 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 850 | "dev": true, 851 | "license": "MIT", 852 | "dependencies": { 853 | "@sinclair/typebox": "^0.27.8" 854 | }, 855 | "engines": { 856 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 857 | } 858 | }, 859 | "node_modules/@jest/source-map": { 860 | "version": "29.6.3", 861 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 862 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 863 | "dev": true, 864 | "license": "MIT", 865 | "dependencies": { 866 | "@jridgewell/trace-mapping": "^0.3.18", 867 | "callsites": "^3.0.0", 868 | "graceful-fs": "^4.2.9" 869 | }, 870 | "engines": { 871 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 872 | } 873 | }, 874 | "node_modules/@jest/test-result": { 875 | "version": "29.7.0", 876 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 877 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 878 | "dev": true, 879 | "license": "MIT", 880 | "dependencies": { 881 | "@jest/console": "^29.7.0", 882 | "@jest/types": "^29.6.3", 883 | "@types/istanbul-lib-coverage": "^2.0.0", 884 | "collect-v8-coverage": "^1.0.0" 885 | }, 886 | "engines": { 887 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 888 | } 889 | }, 890 | "node_modules/@jest/test-sequencer": { 891 | "version": "29.7.0", 892 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 893 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 894 | "dev": true, 895 | "license": "MIT", 896 | "dependencies": { 897 | "@jest/test-result": "^29.7.0", 898 | "graceful-fs": "^4.2.9", 899 | "jest-haste-map": "^29.7.0", 900 | "slash": "^3.0.0" 901 | }, 902 | "engines": { 903 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 904 | } 905 | }, 906 | "node_modules/@jest/transform": { 907 | "version": "29.7.0", 908 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 909 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 910 | "dev": true, 911 | "license": "MIT", 912 | "dependencies": { 913 | "@babel/core": "^7.11.6", 914 | "@jest/types": "^29.6.3", 915 | "@jridgewell/trace-mapping": "^0.3.18", 916 | "babel-plugin-istanbul": "^6.1.1", 917 | "chalk": "^4.0.0", 918 | "convert-source-map": "^2.0.0", 919 | "fast-json-stable-stringify": "^2.1.0", 920 | "graceful-fs": "^4.2.9", 921 | "jest-haste-map": "^29.7.0", 922 | "jest-regex-util": "^29.6.3", 923 | "jest-util": "^29.7.0", 924 | "micromatch": "^4.0.4", 925 | "pirates": "^4.0.4", 926 | "slash": "^3.0.0", 927 | "write-file-atomic": "^4.0.2" 928 | }, 929 | "engines": { 930 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 931 | } 932 | }, 933 | "node_modules/@jest/transform/node_modules/chalk": { 934 | "version": "4.1.2", 935 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 936 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 937 | "dev": true, 938 | "license": "MIT", 939 | "dependencies": { 940 | "ansi-styles": "^4.1.0", 941 | "supports-color": "^7.1.0" 942 | }, 943 | "engines": { 944 | "node": ">=10" 945 | }, 946 | "funding": { 947 | "url": "https://github.com/chalk/chalk?sponsor=1" 948 | } 949 | }, 950 | "node_modules/@jest/types": { 951 | "version": "29.6.3", 952 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 953 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 954 | "dev": true, 955 | "license": "MIT", 956 | "dependencies": { 957 | "@jest/schemas": "^29.6.3", 958 | "@types/istanbul-lib-coverage": "^2.0.0", 959 | "@types/istanbul-reports": "^3.0.0", 960 | "@types/node": "*", 961 | "@types/yargs": "^17.0.8", 962 | "chalk": "^4.0.0" 963 | }, 964 | "engines": { 965 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 966 | } 967 | }, 968 | "node_modules/@jest/types/node_modules/chalk": { 969 | "version": "4.1.2", 970 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 971 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 972 | "dev": true, 973 | "license": "MIT", 974 | "dependencies": { 975 | "ansi-styles": "^4.1.0", 976 | "supports-color": "^7.1.0" 977 | }, 978 | "engines": { 979 | "node": ">=10" 980 | }, 981 | "funding": { 982 | "url": "https://github.com/chalk/chalk?sponsor=1" 983 | } 984 | }, 985 | "node_modules/@jridgewell/gen-mapping": { 986 | "version": "0.3.5", 987 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 988 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 989 | "dev": true, 990 | "license": "MIT", 991 | "dependencies": { 992 | "@jridgewell/set-array": "^1.2.1", 993 | "@jridgewell/sourcemap-codec": "^1.4.10", 994 | "@jridgewell/trace-mapping": "^0.3.24" 995 | }, 996 | "engines": { 997 | "node": ">=6.0.0" 998 | } 999 | }, 1000 | "node_modules/@jridgewell/resolve-uri": { 1001 | "version": "3.1.2", 1002 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1003 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1004 | "dev": true, 1005 | "license": "MIT", 1006 | "engines": { 1007 | "node": ">=6.0.0" 1008 | } 1009 | }, 1010 | "node_modules/@jridgewell/set-array": { 1011 | "version": "1.2.1", 1012 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1013 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1014 | "dev": true, 1015 | "license": "MIT", 1016 | "engines": { 1017 | "node": ">=6.0.0" 1018 | } 1019 | }, 1020 | "node_modules/@jridgewell/sourcemap-codec": { 1021 | "version": "1.5.0", 1022 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1023 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1024 | "dev": true, 1025 | "license": "MIT" 1026 | }, 1027 | "node_modules/@jridgewell/trace-mapping": { 1028 | "version": "0.3.25", 1029 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1030 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1031 | "dev": true, 1032 | "license": "MIT", 1033 | "dependencies": { 1034 | "@jridgewell/resolve-uri": "^3.1.0", 1035 | "@jridgewell/sourcemap-codec": "^1.4.14" 1036 | } 1037 | }, 1038 | "node_modules/@sinclair/typebox": { 1039 | "version": "0.27.8", 1040 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 1041 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 1042 | "dev": true, 1043 | "license": "MIT" 1044 | }, 1045 | "node_modules/@sinonjs/commons": { 1046 | "version": "3.0.1", 1047 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 1048 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 1049 | "dev": true, 1050 | "license": "BSD-3-Clause", 1051 | "dependencies": { 1052 | "type-detect": "4.0.8" 1053 | } 1054 | }, 1055 | "node_modules/@sinonjs/fake-timers": { 1056 | "version": "10.3.0", 1057 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 1058 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 1059 | "dev": true, 1060 | "license": "BSD-3-Clause", 1061 | "dependencies": { 1062 | "@sinonjs/commons": "^3.0.0" 1063 | } 1064 | }, 1065 | "node_modules/@types/babel__core": { 1066 | "version": "7.20.5", 1067 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1068 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1069 | "dev": true, 1070 | "license": "MIT", 1071 | "dependencies": { 1072 | "@babel/parser": "^7.20.7", 1073 | "@babel/types": "^7.20.7", 1074 | "@types/babel__generator": "*", 1075 | "@types/babel__template": "*", 1076 | "@types/babel__traverse": "*" 1077 | } 1078 | }, 1079 | "node_modules/@types/babel__generator": { 1080 | "version": "7.6.8", 1081 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1082 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1083 | "dev": true, 1084 | "license": "MIT", 1085 | "dependencies": { 1086 | "@babel/types": "^7.0.0" 1087 | } 1088 | }, 1089 | "node_modules/@types/babel__template": { 1090 | "version": "7.4.4", 1091 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1092 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1093 | "dev": true, 1094 | "license": "MIT", 1095 | "dependencies": { 1096 | "@babel/parser": "^7.1.0", 1097 | "@babel/types": "^7.0.0" 1098 | } 1099 | }, 1100 | "node_modules/@types/babel__traverse": { 1101 | "version": "7.20.6", 1102 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 1103 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 1104 | "dev": true, 1105 | "license": "MIT", 1106 | "dependencies": { 1107 | "@babel/types": "^7.20.7" 1108 | } 1109 | }, 1110 | "node_modules/@types/graceful-fs": { 1111 | "version": "4.1.9", 1112 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 1113 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 1114 | "dev": true, 1115 | "license": "MIT", 1116 | "dependencies": { 1117 | "@types/node": "*" 1118 | } 1119 | }, 1120 | "node_modules/@types/istanbul-lib-coverage": { 1121 | "version": "2.0.6", 1122 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 1123 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 1124 | "dev": true, 1125 | "license": "MIT" 1126 | }, 1127 | "node_modules/@types/istanbul-lib-report": { 1128 | "version": "3.0.3", 1129 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 1130 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 1131 | "dev": true, 1132 | "license": "MIT", 1133 | "dependencies": { 1134 | "@types/istanbul-lib-coverage": "*" 1135 | } 1136 | }, 1137 | "node_modules/@types/istanbul-reports": { 1138 | "version": "3.0.4", 1139 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 1140 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 1141 | "dev": true, 1142 | "license": "MIT", 1143 | "dependencies": { 1144 | "@types/istanbul-lib-report": "*" 1145 | } 1146 | }, 1147 | "node_modules/@types/node": { 1148 | "version": "22.2.0", 1149 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.2.0.tgz", 1150 | "integrity": "sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==", 1151 | "dev": true, 1152 | "license": "MIT", 1153 | "dependencies": { 1154 | "undici-types": "~6.13.0" 1155 | } 1156 | }, 1157 | "node_modules/@types/stack-utils": { 1158 | "version": "2.0.3", 1159 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1160 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1161 | "dev": true, 1162 | "license": "MIT" 1163 | }, 1164 | "node_modules/@types/yargs": { 1165 | "version": "17.0.33", 1166 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1167 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1168 | "dev": true, 1169 | "license": "MIT", 1170 | "dependencies": { 1171 | "@types/yargs-parser": "*" 1172 | } 1173 | }, 1174 | "node_modules/@types/yargs-parser": { 1175 | "version": "21.0.3", 1176 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1177 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1178 | "dev": true, 1179 | "license": "MIT" 1180 | }, 1181 | "node_modules/ansi-escapes": { 1182 | "version": "4.3.2", 1183 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1184 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1185 | "dev": true, 1186 | "license": "MIT", 1187 | "dependencies": { 1188 | "type-fest": "^0.21.3" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | }, 1193 | "funding": { 1194 | "url": "https://github.com/sponsors/sindresorhus" 1195 | } 1196 | }, 1197 | "node_modules/ansi-regex": { 1198 | "version": "5.0.1", 1199 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1200 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1201 | "dev": true, 1202 | "license": "MIT", 1203 | "engines": { 1204 | "node": ">=8" 1205 | } 1206 | }, 1207 | "node_modules/ansi-styles": { 1208 | "version": "4.3.0", 1209 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1210 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1211 | "dev": true, 1212 | "license": "MIT", 1213 | "dependencies": { 1214 | "color-convert": "^2.0.1" 1215 | }, 1216 | "engines": { 1217 | "node": ">=8" 1218 | }, 1219 | "funding": { 1220 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1221 | } 1222 | }, 1223 | "node_modules/anymatch": { 1224 | "version": "3.1.3", 1225 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1226 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1227 | "dev": true, 1228 | "license": "ISC", 1229 | "dependencies": { 1230 | "normalize-path": "^3.0.0", 1231 | "picomatch": "^2.0.4" 1232 | }, 1233 | "engines": { 1234 | "node": ">= 8" 1235 | } 1236 | }, 1237 | "node_modules/argparse": { 1238 | "version": "1.0.10", 1239 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1240 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1241 | "dev": true, 1242 | "license": "MIT", 1243 | "dependencies": { 1244 | "sprintf-js": "~1.0.2" 1245 | } 1246 | }, 1247 | "node_modules/babel-jest": { 1248 | "version": "29.7.0", 1249 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1250 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1251 | "dev": true, 1252 | "license": "MIT", 1253 | "dependencies": { 1254 | "@jest/transform": "^29.7.0", 1255 | "@types/babel__core": "^7.1.14", 1256 | "babel-plugin-istanbul": "^6.1.1", 1257 | "babel-preset-jest": "^29.6.3", 1258 | "chalk": "^4.0.0", 1259 | "graceful-fs": "^4.2.9", 1260 | "slash": "^3.0.0" 1261 | }, 1262 | "engines": { 1263 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1264 | }, 1265 | "peerDependencies": { 1266 | "@babel/core": "^7.8.0" 1267 | } 1268 | }, 1269 | "node_modules/babel-jest/node_modules/chalk": { 1270 | "version": "4.1.2", 1271 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1272 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1273 | "dev": true, 1274 | "license": "MIT", 1275 | "dependencies": { 1276 | "ansi-styles": "^4.1.0", 1277 | "supports-color": "^7.1.0" 1278 | }, 1279 | "engines": { 1280 | "node": ">=10" 1281 | }, 1282 | "funding": { 1283 | "url": "https://github.com/chalk/chalk?sponsor=1" 1284 | } 1285 | }, 1286 | "node_modules/babel-plugin-istanbul": { 1287 | "version": "6.1.1", 1288 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1289 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1290 | "dev": true, 1291 | "license": "BSD-3-Clause", 1292 | "dependencies": { 1293 | "@babel/helper-plugin-utils": "^7.0.0", 1294 | "@istanbuljs/load-nyc-config": "^1.0.0", 1295 | "@istanbuljs/schema": "^0.1.2", 1296 | "istanbul-lib-instrument": "^5.0.4", 1297 | "test-exclude": "^6.0.0" 1298 | }, 1299 | "engines": { 1300 | "node": ">=8" 1301 | } 1302 | }, 1303 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1304 | "version": "5.2.1", 1305 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1306 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1307 | "dev": true, 1308 | "license": "BSD-3-Clause", 1309 | "dependencies": { 1310 | "@babel/core": "^7.12.3", 1311 | "@babel/parser": "^7.14.7", 1312 | "@istanbuljs/schema": "^0.1.2", 1313 | "istanbul-lib-coverage": "^3.2.0", 1314 | "semver": "^6.3.0" 1315 | }, 1316 | "engines": { 1317 | "node": ">=8" 1318 | } 1319 | }, 1320 | "node_modules/babel-plugin-jest-hoist": { 1321 | "version": "29.6.3", 1322 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1323 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1324 | "dev": true, 1325 | "license": "MIT", 1326 | "dependencies": { 1327 | "@babel/template": "^7.3.3", 1328 | "@babel/types": "^7.3.3", 1329 | "@types/babel__core": "^7.1.14", 1330 | "@types/babel__traverse": "^7.0.6" 1331 | }, 1332 | "engines": { 1333 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1334 | } 1335 | }, 1336 | "node_modules/babel-preset-current-node-syntax": { 1337 | "version": "1.0.1", 1338 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", 1339 | "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", 1340 | "dev": true, 1341 | "license": "MIT", 1342 | "dependencies": { 1343 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1344 | "@babel/plugin-syntax-bigint": "^7.8.3", 1345 | "@babel/plugin-syntax-class-properties": "^7.8.3", 1346 | "@babel/plugin-syntax-import-meta": "^7.8.3", 1347 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1348 | "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", 1349 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1350 | "@babel/plugin-syntax-numeric-separator": "^7.8.3", 1351 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1352 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1353 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1354 | "@babel/plugin-syntax-top-level-await": "^7.8.3" 1355 | }, 1356 | "peerDependencies": { 1357 | "@babel/core": "^7.0.0" 1358 | } 1359 | }, 1360 | "node_modules/babel-preset-jest": { 1361 | "version": "29.6.3", 1362 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1363 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1364 | "dev": true, 1365 | "license": "MIT", 1366 | "dependencies": { 1367 | "babel-plugin-jest-hoist": "^29.6.3", 1368 | "babel-preset-current-node-syntax": "^1.0.0" 1369 | }, 1370 | "engines": { 1371 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1372 | }, 1373 | "peerDependencies": { 1374 | "@babel/core": "^7.0.0" 1375 | } 1376 | }, 1377 | "node_modules/balanced-match": { 1378 | "version": "1.0.2", 1379 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1380 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1381 | "dev": true, 1382 | "license": "MIT" 1383 | }, 1384 | "node_modules/brace-expansion": { 1385 | "version": "1.1.11", 1386 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1387 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1388 | "dev": true, 1389 | "license": "MIT", 1390 | "dependencies": { 1391 | "balanced-match": "^1.0.0", 1392 | "concat-map": "0.0.1" 1393 | } 1394 | }, 1395 | "node_modules/braces": { 1396 | "version": "3.0.3", 1397 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1398 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1399 | "dev": true, 1400 | "license": "MIT", 1401 | "dependencies": { 1402 | "fill-range": "^7.1.1" 1403 | }, 1404 | "engines": { 1405 | "node": ">=8" 1406 | } 1407 | }, 1408 | "node_modules/browserslist": { 1409 | "version": "4.23.3", 1410 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", 1411 | "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", 1412 | "dev": true, 1413 | "funding": [ 1414 | { 1415 | "type": "opencollective", 1416 | "url": "https://opencollective.com/browserslist" 1417 | }, 1418 | { 1419 | "type": "tidelift", 1420 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1421 | }, 1422 | { 1423 | "type": "github", 1424 | "url": "https://github.com/sponsors/ai" 1425 | } 1426 | ], 1427 | "license": "MIT", 1428 | "dependencies": { 1429 | "caniuse-lite": "^1.0.30001646", 1430 | "electron-to-chromium": "^1.5.4", 1431 | "node-releases": "^2.0.18", 1432 | "update-browserslist-db": "^1.1.0" 1433 | }, 1434 | "bin": { 1435 | "browserslist": "cli.js" 1436 | }, 1437 | "engines": { 1438 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1439 | } 1440 | }, 1441 | "node_modules/bser": { 1442 | "version": "2.1.1", 1443 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1444 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1445 | "dev": true, 1446 | "license": "Apache-2.0", 1447 | "dependencies": { 1448 | "node-int64": "^0.4.0" 1449 | } 1450 | }, 1451 | "node_modules/buffer-from": { 1452 | "version": "1.1.2", 1453 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1454 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1455 | "dev": true, 1456 | "license": "MIT" 1457 | }, 1458 | "node_modules/callsites": { 1459 | "version": "3.1.0", 1460 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1461 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1462 | "dev": true, 1463 | "license": "MIT", 1464 | "engines": { 1465 | "node": ">=6" 1466 | } 1467 | }, 1468 | "node_modules/camelcase": { 1469 | "version": "5.3.1", 1470 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1471 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1472 | "dev": true, 1473 | "license": "MIT", 1474 | "engines": { 1475 | "node": ">=6" 1476 | } 1477 | }, 1478 | "node_modules/caniuse-lite": { 1479 | "version": "1.0.30001700", 1480 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz", 1481 | "integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==", 1482 | "dev": true, 1483 | "funding": [ 1484 | { 1485 | "type": "opencollective", 1486 | "url": "https://opencollective.com/browserslist" 1487 | }, 1488 | { 1489 | "type": "tidelift", 1490 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1491 | }, 1492 | { 1493 | "type": "github", 1494 | "url": "https://github.com/sponsors/ai" 1495 | } 1496 | ], 1497 | "license": "CC-BY-4.0" 1498 | }, 1499 | "node_modules/char-regex": { 1500 | "version": "1.0.2", 1501 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1502 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1503 | "dev": true, 1504 | "license": "MIT", 1505 | "engines": { 1506 | "node": ">=10" 1507 | } 1508 | }, 1509 | "node_modules/ci-info": { 1510 | "version": "3.9.0", 1511 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1512 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1513 | "dev": true, 1514 | "funding": [ 1515 | { 1516 | "type": "github", 1517 | "url": "https://github.com/sponsors/sibiraj-s" 1518 | } 1519 | ], 1520 | "license": "MIT", 1521 | "engines": { 1522 | "node": ">=8" 1523 | } 1524 | }, 1525 | "node_modules/cjs-module-lexer": { 1526 | "version": "1.3.1", 1527 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", 1528 | "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", 1529 | "dev": true, 1530 | "license": "MIT" 1531 | }, 1532 | "node_modules/cliui": { 1533 | "version": "8.0.1", 1534 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1535 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1536 | "dev": true, 1537 | "license": "ISC", 1538 | "dependencies": { 1539 | "string-width": "^4.2.0", 1540 | "strip-ansi": "^6.0.1", 1541 | "wrap-ansi": "^7.0.0" 1542 | }, 1543 | "engines": { 1544 | "node": ">=12" 1545 | } 1546 | }, 1547 | "node_modules/co": { 1548 | "version": "4.6.0", 1549 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1550 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1551 | "dev": true, 1552 | "license": "MIT", 1553 | "engines": { 1554 | "iojs": ">= 1.0.0", 1555 | "node": ">= 0.12.0" 1556 | } 1557 | }, 1558 | "node_modules/collect-v8-coverage": { 1559 | "version": "1.0.2", 1560 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1561 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1562 | "dev": true, 1563 | "license": "MIT" 1564 | }, 1565 | "node_modules/color-convert": { 1566 | "version": "2.0.1", 1567 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1568 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1569 | "dev": true, 1570 | "license": "MIT", 1571 | "dependencies": { 1572 | "color-name": "~1.1.4" 1573 | }, 1574 | "engines": { 1575 | "node": ">=7.0.0" 1576 | } 1577 | }, 1578 | "node_modules/color-name": { 1579 | "version": "1.1.4", 1580 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1581 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1582 | "dev": true, 1583 | "license": "MIT" 1584 | }, 1585 | "node_modules/commander": { 1586 | "version": "14.0.0", 1587 | "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.0.tgz", 1588 | "integrity": "sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==", 1589 | "engines": { 1590 | "node": ">=20" 1591 | } 1592 | }, 1593 | "node_modules/concat-map": { 1594 | "version": "0.0.1", 1595 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1596 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1597 | "dev": true, 1598 | "license": "MIT" 1599 | }, 1600 | "node_modules/convert-source-map": { 1601 | "version": "2.0.0", 1602 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1603 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1604 | "dev": true, 1605 | "license": "MIT" 1606 | }, 1607 | "node_modules/create-jest": { 1608 | "version": "29.7.0", 1609 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1610 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1611 | "dev": true, 1612 | "license": "MIT", 1613 | "dependencies": { 1614 | "@jest/types": "^29.6.3", 1615 | "chalk": "^4.0.0", 1616 | "exit": "^0.1.2", 1617 | "graceful-fs": "^4.2.9", 1618 | "jest-config": "^29.7.0", 1619 | "jest-util": "^29.7.0", 1620 | "prompts": "^2.0.1" 1621 | }, 1622 | "bin": { 1623 | "create-jest": "bin/create-jest.js" 1624 | }, 1625 | "engines": { 1626 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1627 | } 1628 | }, 1629 | "node_modules/create-jest/node_modules/chalk": { 1630 | "version": "4.1.2", 1631 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1632 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1633 | "dev": true, 1634 | "license": "MIT", 1635 | "dependencies": { 1636 | "ansi-styles": "^4.1.0", 1637 | "supports-color": "^7.1.0" 1638 | }, 1639 | "engines": { 1640 | "node": ">=10" 1641 | }, 1642 | "funding": { 1643 | "url": "https://github.com/chalk/chalk?sponsor=1" 1644 | } 1645 | }, 1646 | "node_modules/cross-spawn": { 1647 | "version": "7.0.3", 1648 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1649 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1650 | "dev": true, 1651 | "license": "MIT", 1652 | "dependencies": { 1653 | "path-key": "^3.1.0", 1654 | "shebang-command": "^2.0.0", 1655 | "which": "^2.0.1" 1656 | }, 1657 | "engines": { 1658 | "node": ">= 8" 1659 | } 1660 | }, 1661 | "node_modules/debug": { 1662 | "version": "4.3.6", 1663 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", 1664 | "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", 1665 | "dev": true, 1666 | "license": "MIT", 1667 | "dependencies": { 1668 | "ms": "2.1.2" 1669 | }, 1670 | "engines": { 1671 | "node": ">=6.0" 1672 | }, 1673 | "peerDependenciesMeta": { 1674 | "supports-color": { 1675 | "optional": true 1676 | } 1677 | } 1678 | }, 1679 | "node_modules/dedent": { 1680 | "version": "1.5.3", 1681 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", 1682 | "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", 1683 | "dev": true, 1684 | "license": "MIT", 1685 | "peerDependencies": { 1686 | "babel-plugin-macros": "^3.1.0" 1687 | }, 1688 | "peerDependenciesMeta": { 1689 | "babel-plugin-macros": { 1690 | "optional": true 1691 | } 1692 | } 1693 | }, 1694 | "node_modules/deepmerge": { 1695 | "version": "4.3.1", 1696 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1697 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1698 | "dev": true, 1699 | "license": "MIT", 1700 | "engines": { 1701 | "node": ">=0.10.0" 1702 | } 1703 | }, 1704 | "node_modules/detect-newline": { 1705 | "version": "3.1.0", 1706 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1707 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1708 | "dev": true, 1709 | "license": "MIT", 1710 | "engines": { 1711 | "node": ">=8" 1712 | } 1713 | }, 1714 | "node_modules/diff-sequences": { 1715 | "version": "29.6.3", 1716 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1717 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1718 | "dev": true, 1719 | "license": "MIT", 1720 | "engines": { 1721 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1722 | } 1723 | }, 1724 | "node_modules/electron-to-chromium": { 1725 | "version": "1.5.6", 1726 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.6.tgz", 1727 | "integrity": "sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==", 1728 | "dev": true, 1729 | "license": "ISC" 1730 | }, 1731 | "node_modules/emittery": { 1732 | "version": "0.13.1", 1733 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1734 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1735 | "dev": true, 1736 | "license": "MIT", 1737 | "engines": { 1738 | "node": ">=12" 1739 | }, 1740 | "funding": { 1741 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1742 | } 1743 | }, 1744 | "node_modules/emoji-regex": { 1745 | "version": "8.0.0", 1746 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1747 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1748 | "dev": true, 1749 | "license": "MIT" 1750 | }, 1751 | "node_modules/error-ex": { 1752 | "version": "1.3.2", 1753 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1754 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1755 | "dev": true, 1756 | "license": "MIT", 1757 | "dependencies": { 1758 | "is-arrayish": "^0.2.1" 1759 | } 1760 | }, 1761 | "node_modules/escalade": { 1762 | "version": "3.1.2", 1763 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 1764 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 1765 | "dev": true, 1766 | "license": "MIT", 1767 | "engines": { 1768 | "node": ">=6" 1769 | } 1770 | }, 1771 | "node_modules/escape-string-regexp": { 1772 | "version": "2.0.0", 1773 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1774 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1775 | "dev": true, 1776 | "license": "MIT", 1777 | "engines": { 1778 | "node": ">=8" 1779 | } 1780 | }, 1781 | "node_modules/esprima": { 1782 | "version": "4.0.1", 1783 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1784 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1785 | "dev": true, 1786 | "license": "BSD-2-Clause", 1787 | "bin": { 1788 | "esparse": "bin/esparse.js", 1789 | "esvalidate": "bin/esvalidate.js" 1790 | }, 1791 | "engines": { 1792 | "node": ">=4" 1793 | } 1794 | }, 1795 | "node_modules/execa": { 1796 | "version": "5.1.1", 1797 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1798 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1799 | "dev": true, 1800 | "license": "MIT", 1801 | "dependencies": { 1802 | "cross-spawn": "^7.0.3", 1803 | "get-stream": "^6.0.0", 1804 | "human-signals": "^2.1.0", 1805 | "is-stream": "^2.0.0", 1806 | "merge-stream": "^2.0.0", 1807 | "npm-run-path": "^4.0.1", 1808 | "onetime": "^5.1.2", 1809 | "signal-exit": "^3.0.3", 1810 | "strip-final-newline": "^2.0.0" 1811 | }, 1812 | "engines": { 1813 | "node": ">=10" 1814 | }, 1815 | "funding": { 1816 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1817 | } 1818 | }, 1819 | "node_modules/exit": { 1820 | "version": "0.1.2", 1821 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1822 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1823 | "dev": true, 1824 | "engines": { 1825 | "node": ">= 0.8.0" 1826 | } 1827 | }, 1828 | "node_modules/expect": { 1829 | "version": "29.7.0", 1830 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1831 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1832 | "dev": true, 1833 | "license": "MIT", 1834 | "dependencies": { 1835 | "@jest/expect-utils": "^29.7.0", 1836 | "jest-get-type": "^29.6.3", 1837 | "jest-matcher-utils": "^29.7.0", 1838 | "jest-message-util": "^29.7.0", 1839 | "jest-util": "^29.7.0" 1840 | }, 1841 | "engines": { 1842 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1843 | } 1844 | }, 1845 | "node_modules/fast-json-stable-stringify": { 1846 | "version": "2.1.0", 1847 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1848 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1849 | "dev": true, 1850 | "license": "MIT" 1851 | }, 1852 | "node_modules/fb-watchman": { 1853 | "version": "2.0.2", 1854 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1855 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1856 | "dev": true, 1857 | "license": "Apache-2.0", 1858 | "dependencies": { 1859 | "bser": "2.1.1" 1860 | } 1861 | }, 1862 | "node_modules/fill-range": { 1863 | "version": "7.1.1", 1864 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1865 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1866 | "dev": true, 1867 | "license": "MIT", 1868 | "dependencies": { 1869 | "to-regex-range": "^5.0.1" 1870 | }, 1871 | "engines": { 1872 | "node": ">=8" 1873 | } 1874 | }, 1875 | "node_modules/find-up": { 1876 | "version": "4.1.0", 1877 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1878 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1879 | "dev": true, 1880 | "license": "MIT", 1881 | "dependencies": { 1882 | "locate-path": "^5.0.0", 1883 | "path-exists": "^4.0.0" 1884 | }, 1885 | "engines": { 1886 | "node": ">=8" 1887 | } 1888 | }, 1889 | "node_modules/fs.realpath": { 1890 | "version": "1.0.0", 1891 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1892 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1893 | "dev": true, 1894 | "license": "ISC" 1895 | }, 1896 | "node_modules/fsevents": { 1897 | "version": "2.3.3", 1898 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1899 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1900 | "dev": true, 1901 | "hasInstallScript": true, 1902 | "license": "MIT", 1903 | "optional": true, 1904 | "os": [ 1905 | "darwin" 1906 | ], 1907 | "engines": { 1908 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1909 | } 1910 | }, 1911 | "node_modules/function-bind": { 1912 | "version": "1.1.2", 1913 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1914 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1915 | "dev": true, 1916 | "license": "MIT", 1917 | "funding": { 1918 | "url": "https://github.com/sponsors/ljharb" 1919 | } 1920 | }, 1921 | "node_modules/gensync": { 1922 | "version": "1.0.0-beta.2", 1923 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1924 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1925 | "dev": true, 1926 | "license": "MIT", 1927 | "engines": { 1928 | "node": ">=6.9.0" 1929 | } 1930 | }, 1931 | "node_modules/get-caller-file": { 1932 | "version": "2.0.5", 1933 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1934 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1935 | "dev": true, 1936 | "license": "ISC", 1937 | "engines": { 1938 | "node": "6.* || 8.* || >= 10.*" 1939 | } 1940 | }, 1941 | "node_modules/get-package-type": { 1942 | "version": "0.1.0", 1943 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1944 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1945 | "dev": true, 1946 | "license": "MIT", 1947 | "engines": { 1948 | "node": ">=8.0.0" 1949 | } 1950 | }, 1951 | "node_modules/get-stream": { 1952 | "version": "6.0.1", 1953 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1954 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1955 | "dev": true, 1956 | "license": "MIT", 1957 | "engines": { 1958 | "node": ">=10" 1959 | }, 1960 | "funding": { 1961 | "url": "https://github.com/sponsors/sindresorhus" 1962 | } 1963 | }, 1964 | "node_modules/glob": { 1965 | "version": "7.2.3", 1966 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1967 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1968 | "deprecated": "Glob versions prior to v9 are no longer supported", 1969 | "dev": true, 1970 | "license": "ISC", 1971 | "dependencies": { 1972 | "fs.realpath": "^1.0.0", 1973 | "inflight": "^1.0.4", 1974 | "inherits": "2", 1975 | "minimatch": "^3.1.1", 1976 | "once": "^1.3.0", 1977 | "path-is-absolute": "^1.0.0" 1978 | }, 1979 | "engines": { 1980 | "node": "*" 1981 | }, 1982 | "funding": { 1983 | "url": "https://github.com/sponsors/isaacs" 1984 | } 1985 | }, 1986 | "node_modules/globals": { 1987 | "version": "11.12.0", 1988 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1989 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1990 | "dev": true, 1991 | "license": "MIT", 1992 | "engines": { 1993 | "node": ">=4" 1994 | } 1995 | }, 1996 | "node_modules/graceful-fs": { 1997 | "version": "4.2.11", 1998 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1999 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2000 | "dev": true, 2001 | "license": "ISC" 2002 | }, 2003 | "node_modules/has-flag": { 2004 | "version": "4.0.0", 2005 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2006 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2007 | "dev": true, 2008 | "license": "MIT", 2009 | "engines": { 2010 | "node": ">=8" 2011 | } 2012 | }, 2013 | "node_modules/hasown": { 2014 | "version": "2.0.2", 2015 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2016 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2017 | "dev": true, 2018 | "license": "MIT", 2019 | "dependencies": { 2020 | "function-bind": "^1.1.2" 2021 | }, 2022 | "engines": { 2023 | "node": ">= 0.4" 2024 | } 2025 | }, 2026 | "node_modules/html-escaper": { 2027 | "version": "2.0.2", 2028 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2029 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2030 | "dev": true, 2031 | "license": "MIT" 2032 | }, 2033 | "node_modules/human-signals": { 2034 | "version": "2.1.0", 2035 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2036 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2037 | "dev": true, 2038 | "license": "Apache-2.0", 2039 | "engines": { 2040 | "node": ">=10.17.0" 2041 | } 2042 | }, 2043 | "node_modules/import-local": { 2044 | "version": "3.2.0", 2045 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 2046 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 2047 | "dev": true, 2048 | "license": "MIT", 2049 | "dependencies": { 2050 | "pkg-dir": "^4.2.0", 2051 | "resolve-cwd": "^3.0.0" 2052 | }, 2053 | "bin": { 2054 | "import-local-fixture": "fixtures/cli.js" 2055 | }, 2056 | "engines": { 2057 | "node": ">=8" 2058 | }, 2059 | "funding": { 2060 | "url": "https://github.com/sponsors/sindresorhus" 2061 | } 2062 | }, 2063 | "node_modules/imurmurhash": { 2064 | "version": "0.1.4", 2065 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2066 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2067 | "dev": true, 2068 | "license": "MIT", 2069 | "engines": { 2070 | "node": ">=0.8.19" 2071 | } 2072 | }, 2073 | "node_modules/inflight": { 2074 | "version": "1.0.6", 2075 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2076 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2077 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2078 | "dev": true, 2079 | "license": "ISC", 2080 | "dependencies": { 2081 | "once": "^1.3.0", 2082 | "wrappy": "1" 2083 | } 2084 | }, 2085 | "node_modules/inherits": { 2086 | "version": "2.0.4", 2087 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2088 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2089 | "dev": true, 2090 | "license": "ISC" 2091 | }, 2092 | "node_modules/is-arrayish": { 2093 | "version": "0.2.1", 2094 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2095 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2096 | "dev": true, 2097 | "license": "MIT" 2098 | }, 2099 | "node_modules/is-core-module": { 2100 | "version": "2.15.0", 2101 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", 2102 | "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", 2103 | "dev": true, 2104 | "license": "MIT", 2105 | "dependencies": { 2106 | "hasown": "^2.0.2" 2107 | }, 2108 | "engines": { 2109 | "node": ">= 0.4" 2110 | }, 2111 | "funding": { 2112 | "url": "https://github.com/sponsors/ljharb" 2113 | } 2114 | }, 2115 | "node_modules/is-fullwidth-code-point": { 2116 | "version": "3.0.0", 2117 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2118 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2119 | "dev": true, 2120 | "license": "MIT", 2121 | "engines": { 2122 | "node": ">=8" 2123 | } 2124 | }, 2125 | "node_modules/is-generator-fn": { 2126 | "version": "2.1.0", 2127 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 2128 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 2129 | "dev": true, 2130 | "license": "MIT", 2131 | "engines": { 2132 | "node": ">=6" 2133 | } 2134 | }, 2135 | "node_modules/is-number": { 2136 | "version": "7.0.0", 2137 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2138 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2139 | "dev": true, 2140 | "license": "MIT", 2141 | "engines": { 2142 | "node": ">=0.12.0" 2143 | } 2144 | }, 2145 | "node_modules/is-stream": { 2146 | "version": "2.0.1", 2147 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2148 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2149 | "dev": true, 2150 | "license": "MIT", 2151 | "engines": { 2152 | "node": ">=8" 2153 | }, 2154 | "funding": { 2155 | "url": "https://github.com/sponsors/sindresorhus" 2156 | } 2157 | }, 2158 | "node_modules/isexe": { 2159 | "version": "2.0.0", 2160 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2161 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2162 | "dev": true, 2163 | "license": "ISC" 2164 | }, 2165 | "node_modules/istanbul-lib-coverage": { 2166 | "version": "3.2.2", 2167 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2168 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2169 | "dev": true, 2170 | "license": "BSD-3-Clause", 2171 | "engines": { 2172 | "node": ">=8" 2173 | } 2174 | }, 2175 | "node_modules/istanbul-lib-instrument": { 2176 | "version": "6.0.3", 2177 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2178 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2179 | "dev": true, 2180 | "license": "BSD-3-Clause", 2181 | "dependencies": { 2182 | "@babel/core": "^7.23.9", 2183 | "@babel/parser": "^7.23.9", 2184 | "@istanbuljs/schema": "^0.1.3", 2185 | "istanbul-lib-coverage": "^3.2.0", 2186 | "semver": "^7.5.4" 2187 | }, 2188 | "engines": { 2189 | "node": ">=10" 2190 | } 2191 | }, 2192 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2193 | "version": "7.6.3", 2194 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2195 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2196 | "dev": true, 2197 | "license": "ISC", 2198 | "bin": { 2199 | "semver": "bin/semver.js" 2200 | }, 2201 | "engines": { 2202 | "node": ">=10" 2203 | } 2204 | }, 2205 | "node_modules/istanbul-lib-report": { 2206 | "version": "3.0.1", 2207 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2208 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2209 | "dev": true, 2210 | "license": "BSD-3-Clause", 2211 | "dependencies": { 2212 | "istanbul-lib-coverage": "^3.0.0", 2213 | "make-dir": "^4.0.0", 2214 | "supports-color": "^7.1.0" 2215 | }, 2216 | "engines": { 2217 | "node": ">=10" 2218 | } 2219 | }, 2220 | "node_modules/istanbul-lib-source-maps": { 2221 | "version": "4.0.1", 2222 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2223 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2224 | "dev": true, 2225 | "license": "BSD-3-Clause", 2226 | "dependencies": { 2227 | "debug": "^4.1.1", 2228 | "istanbul-lib-coverage": "^3.0.0", 2229 | "source-map": "^0.6.1" 2230 | }, 2231 | "engines": { 2232 | "node": ">=10" 2233 | } 2234 | }, 2235 | "node_modules/istanbul-reports": { 2236 | "version": "3.1.7", 2237 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2238 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2239 | "dev": true, 2240 | "license": "BSD-3-Clause", 2241 | "dependencies": { 2242 | "html-escaper": "^2.0.0", 2243 | "istanbul-lib-report": "^3.0.0" 2244 | }, 2245 | "engines": { 2246 | "node": ">=8" 2247 | } 2248 | }, 2249 | "node_modules/jest": { 2250 | "version": "29.7.0", 2251 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2252 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2253 | "dev": true, 2254 | "license": "MIT", 2255 | "dependencies": { 2256 | "@jest/core": "^29.7.0", 2257 | "@jest/types": "^29.6.3", 2258 | "import-local": "^3.0.2", 2259 | "jest-cli": "^29.7.0" 2260 | }, 2261 | "bin": { 2262 | "jest": "bin/jest.js" 2263 | }, 2264 | "engines": { 2265 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2266 | }, 2267 | "peerDependencies": { 2268 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2269 | }, 2270 | "peerDependenciesMeta": { 2271 | "node-notifier": { 2272 | "optional": true 2273 | } 2274 | } 2275 | }, 2276 | "node_modules/jest-changed-files": { 2277 | "version": "29.7.0", 2278 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2279 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2280 | "dev": true, 2281 | "license": "MIT", 2282 | "dependencies": { 2283 | "execa": "^5.0.0", 2284 | "jest-util": "^29.7.0", 2285 | "p-limit": "^3.1.0" 2286 | }, 2287 | "engines": { 2288 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2289 | } 2290 | }, 2291 | "node_modules/jest-circus": { 2292 | "version": "29.7.0", 2293 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2294 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2295 | "dev": true, 2296 | "license": "MIT", 2297 | "dependencies": { 2298 | "@jest/environment": "^29.7.0", 2299 | "@jest/expect": "^29.7.0", 2300 | "@jest/test-result": "^29.7.0", 2301 | "@jest/types": "^29.6.3", 2302 | "@types/node": "*", 2303 | "chalk": "^4.0.0", 2304 | "co": "^4.6.0", 2305 | "dedent": "^1.0.0", 2306 | "is-generator-fn": "^2.0.0", 2307 | "jest-each": "^29.7.0", 2308 | "jest-matcher-utils": "^29.7.0", 2309 | "jest-message-util": "^29.7.0", 2310 | "jest-runtime": "^29.7.0", 2311 | "jest-snapshot": "^29.7.0", 2312 | "jest-util": "^29.7.0", 2313 | "p-limit": "^3.1.0", 2314 | "pretty-format": "^29.7.0", 2315 | "pure-rand": "^6.0.0", 2316 | "slash": "^3.0.0", 2317 | "stack-utils": "^2.0.3" 2318 | }, 2319 | "engines": { 2320 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2321 | } 2322 | }, 2323 | "node_modules/jest-circus/node_modules/chalk": { 2324 | "version": "4.1.2", 2325 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2326 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2327 | "dev": true, 2328 | "license": "MIT", 2329 | "dependencies": { 2330 | "ansi-styles": "^4.1.0", 2331 | "supports-color": "^7.1.0" 2332 | }, 2333 | "engines": { 2334 | "node": ">=10" 2335 | }, 2336 | "funding": { 2337 | "url": "https://github.com/chalk/chalk?sponsor=1" 2338 | } 2339 | }, 2340 | "node_modules/jest-cli": { 2341 | "version": "29.7.0", 2342 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2343 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2344 | "dev": true, 2345 | "license": "MIT", 2346 | "dependencies": { 2347 | "@jest/core": "^29.7.0", 2348 | "@jest/test-result": "^29.7.0", 2349 | "@jest/types": "^29.6.3", 2350 | "chalk": "^4.0.0", 2351 | "create-jest": "^29.7.0", 2352 | "exit": "^0.1.2", 2353 | "import-local": "^3.0.2", 2354 | "jest-config": "^29.7.0", 2355 | "jest-util": "^29.7.0", 2356 | "jest-validate": "^29.7.0", 2357 | "yargs": "^17.3.1" 2358 | }, 2359 | "bin": { 2360 | "jest": "bin/jest.js" 2361 | }, 2362 | "engines": { 2363 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2364 | }, 2365 | "peerDependencies": { 2366 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2367 | }, 2368 | "peerDependenciesMeta": { 2369 | "node-notifier": { 2370 | "optional": true 2371 | } 2372 | } 2373 | }, 2374 | "node_modules/jest-cli/node_modules/chalk": { 2375 | "version": "4.1.2", 2376 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2377 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2378 | "dev": true, 2379 | "license": "MIT", 2380 | "dependencies": { 2381 | "ansi-styles": "^4.1.0", 2382 | "supports-color": "^7.1.0" 2383 | }, 2384 | "engines": { 2385 | "node": ">=10" 2386 | }, 2387 | "funding": { 2388 | "url": "https://github.com/chalk/chalk?sponsor=1" 2389 | } 2390 | }, 2391 | "node_modules/jest-config": { 2392 | "version": "29.7.0", 2393 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2394 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2395 | "dev": true, 2396 | "license": "MIT", 2397 | "dependencies": { 2398 | "@babel/core": "^7.11.6", 2399 | "@jest/test-sequencer": "^29.7.0", 2400 | "@jest/types": "^29.6.3", 2401 | "babel-jest": "^29.7.0", 2402 | "chalk": "^4.0.0", 2403 | "ci-info": "^3.2.0", 2404 | "deepmerge": "^4.2.2", 2405 | "glob": "^7.1.3", 2406 | "graceful-fs": "^4.2.9", 2407 | "jest-circus": "^29.7.0", 2408 | "jest-environment-node": "^29.7.0", 2409 | "jest-get-type": "^29.6.3", 2410 | "jest-regex-util": "^29.6.3", 2411 | "jest-resolve": "^29.7.0", 2412 | "jest-runner": "^29.7.0", 2413 | "jest-util": "^29.7.0", 2414 | "jest-validate": "^29.7.0", 2415 | "micromatch": "^4.0.4", 2416 | "parse-json": "^5.2.0", 2417 | "pretty-format": "^29.7.0", 2418 | "slash": "^3.0.0", 2419 | "strip-json-comments": "^3.1.1" 2420 | }, 2421 | "engines": { 2422 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2423 | }, 2424 | "peerDependencies": { 2425 | "@types/node": "*", 2426 | "ts-node": ">=9.0.0" 2427 | }, 2428 | "peerDependenciesMeta": { 2429 | "@types/node": { 2430 | "optional": true 2431 | }, 2432 | "ts-node": { 2433 | "optional": true 2434 | } 2435 | } 2436 | }, 2437 | "node_modules/jest-config/node_modules/chalk": { 2438 | "version": "4.1.2", 2439 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2440 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2441 | "dev": true, 2442 | "license": "MIT", 2443 | "dependencies": { 2444 | "ansi-styles": "^4.1.0", 2445 | "supports-color": "^7.1.0" 2446 | }, 2447 | "engines": { 2448 | "node": ">=10" 2449 | }, 2450 | "funding": { 2451 | "url": "https://github.com/chalk/chalk?sponsor=1" 2452 | } 2453 | }, 2454 | "node_modules/jest-diff": { 2455 | "version": "29.7.0", 2456 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2457 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2458 | "dev": true, 2459 | "license": "MIT", 2460 | "dependencies": { 2461 | "chalk": "^4.0.0", 2462 | "diff-sequences": "^29.6.3", 2463 | "jest-get-type": "^29.6.3", 2464 | "pretty-format": "^29.7.0" 2465 | }, 2466 | "engines": { 2467 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2468 | } 2469 | }, 2470 | "node_modules/jest-diff/node_modules/chalk": { 2471 | "version": "4.1.2", 2472 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2473 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2474 | "dev": true, 2475 | "license": "MIT", 2476 | "dependencies": { 2477 | "ansi-styles": "^4.1.0", 2478 | "supports-color": "^7.1.0" 2479 | }, 2480 | "engines": { 2481 | "node": ">=10" 2482 | }, 2483 | "funding": { 2484 | "url": "https://github.com/chalk/chalk?sponsor=1" 2485 | } 2486 | }, 2487 | "node_modules/jest-docblock": { 2488 | "version": "29.7.0", 2489 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2490 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2491 | "dev": true, 2492 | "license": "MIT", 2493 | "dependencies": { 2494 | "detect-newline": "^3.0.0" 2495 | }, 2496 | "engines": { 2497 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2498 | } 2499 | }, 2500 | "node_modules/jest-each": { 2501 | "version": "29.7.0", 2502 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2503 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2504 | "dev": true, 2505 | "license": "MIT", 2506 | "dependencies": { 2507 | "@jest/types": "^29.6.3", 2508 | "chalk": "^4.0.0", 2509 | "jest-get-type": "^29.6.3", 2510 | "jest-util": "^29.7.0", 2511 | "pretty-format": "^29.7.0" 2512 | }, 2513 | "engines": { 2514 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2515 | } 2516 | }, 2517 | "node_modules/jest-each/node_modules/chalk": { 2518 | "version": "4.1.2", 2519 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2520 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2521 | "dev": true, 2522 | "license": "MIT", 2523 | "dependencies": { 2524 | "ansi-styles": "^4.1.0", 2525 | "supports-color": "^7.1.0" 2526 | }, 2527 | "engines": { 2528 | "node": ">=10" 2529 | }, 2530 | "funding": { 2531 | "url": "https://github.com/chalk/chalk?sponsor=1" 2532 | } 2533 | }, 2534 | "node_modules/jest-environment-node": { 2535 | "version": "29.7.0", 2536 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2537 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2538 | "dev": true, 2539 | "license": "MIT", 2540 | "dependencies": { 2541 | "@jest/environment": "^29.7.0", 2542 | "@jest/fake-timers": "^29.7.0", 2543 | "@jest/types": "^29.6.3", 2544 | "@types/node": "*", 2545 | "jest-mock": "^29.7.0", 2546 | "jest-util": "^29.7.0" 2547 | }, 2548 | "engines": { 2549 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2550 | } 2551 | }, 2552 | "node_modules/jest-get-type": { 2553 | "version": "29.6.3", 2554 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2555 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2556 | "dev": true, 2557 | "license": "MIT", 2558 | "engines": { 2559 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2560 | } 2561 | }, 2562 | "node_modules/jest-haste-map": { 2563 | "version": "29.7.0", 2564 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2565 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2566 | "dev": true, 2567 | "license": "MIT", 2568 | "dependencies": { 2569 | "@jest/types": "^29.6.3", 2570 | "@types/graceful-fs": "^4.1.3", 2571 | "@types/node": "*", 2572 | "anymatch": "^3.0.3", 2573 | "fb-watchman": "^2.0.0", 2574 | "graceful-fs": "^4.2.9", 2575 | "jest-regex-util": "^29.6.3", 2576 | "jest-util": "^29.7.0", 2577 | "jest-worker": "^29.7.0", 2578 | "micromatch": "^4.0.4", 2579 | "walker": "^1.0.8" 2580 | }, 2581 | "engines": { 2582 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2583 | }, 2584 | "optionalDependencies": { 2585 | "fsevents": "^2.3.2" 2586 | } 2587 | }, 2588 | "node_modules/jest-leak-detector": { 2589 | "version": "29.7.0", 2590 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2591 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "dependencies": { 2595 | "jest-get-type": "^29.6.3", 2596 | "pretty-format": "^29.7.0" 2597 | }, 2598 | "engines": { 2599 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2600 | } 2601 | }, 2602 | "node_modules/jest-matcher-utils": { 2603 | "version": "29.7.0", 2604 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2605 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2606 | "dev": true, 2607 | "license": "MIT", 2608 | "dependencies": { 2609 | "chalk": "^4.0.0", 2610 | "jest-diff": "^29.7.0", 2611 | "jest-get-type": "^29.6.3", 2612 | "pretty-format": "^29.7.0" 2613 | }, 2614 | "engines": { 2615 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2616 | } 2617 | }, 2618 | "node_modules/jest-matcher-utils/node_modules/chalk": { 2619 | "version": "4.1.2", 2620 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2621 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2622 | "dev": true, 2623 | "license": "MIT", 2624 | "dependencies": { 2625 | "ansi-styles": "^4.1.0", 2626 | "supports-color": "^7.1.0" 2627 | }, 2628 | "engines": { 2629 | "node": ">=10" 2630 | }, 2631 | "funding": { 2632 | "url": "https://github.com/chalk/chalk?sponsor=1" 2633 | } 2634 | }, 2635 | "node_modules/jest-message-util": { 2636 | "version": "29.7.0", 2637 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2638 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2639 | "dev": true, 2640 | "license": "MIT", 2641 | "dependencies": { 2642 | "@babel/code-frame": "^7.12.13", 2643 | "@jest/types": "^29.6.3", 2644 | "@types/stack-utils": "^2.0.0", 2645 | "chalk": "^4.0.0", 2646 | "graceful-fs": "^4.2.9", 2647 | "micromatch": "^4.0.4", 2648 | "pretty-format": "^29.7.0", 2649 | "slash": "^3.0.0", 2650 | "stack-utils": "^2.0.3" 2651 | }, 2652 | "engines": { 2653 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2654 | } 2655 | }, 2656 | "node_modules/jest-message-util/node_modules/chalk": { 2657 | "version": "4.1.2", 2658 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2659 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2660 | "dev": true, 2661 | "license": "MIT", 2662 | "dependencies": { 2663 | "ansi-styles": "^4.1.0", 2664 | "supports-color": "^7.1.0" 2665 | }, 2666 | "engines": { 2667 | "node": ">=10" 2668 | }, 2669 | "funding": { 2670 | "url": "https://github.com/chalk/chalk?sponsor=1" 2671 | } 2672 | }, 2673 | "node_modules/jest-mock": { 2674 | "version": "29.7.0", 2675 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2676 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2677 | "dev": true, 2678 | "license": "MIT", 2679 | "dependencies": { 2680 | "@jest/types": "^29.6.3", 2681 | "@types/node": "*", 2682 | "jest-util": "^29.7.0" 2683 | }, 2684 | "engines": { 2685 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2686 | } 2687 | }, 2688 | "node_modules/jest-pnp-resolver": { 2689 | "version": "1.2.3", 2690 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2691 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2692 | "dev": true, 2693 | "license": "MIT", 2694 | "engines": { 2695 | "node": ">=6" 2696 | }, 2697 | "peerDependencies": { 2698 | "jest-resolve": "*" 2699 | }, 2700 | "peerDependenciesMeta": { 2701 | "jest-resolve": { 2702 | "optional": true 2703 | } 2704 | } 2705 | }, 2706 | "node_modules/jest-regex-util": { 2707 | "version": "29.6.3", 2708 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2709 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2710 | "dev": true, 2711 | "license": "MIT", 2712 | "engines": { 2713 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2714 | } 2715 | }, 2716 | "node_modules/jest-resolve": { 2717 | "version": "29.7.0", 2718 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2719 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2720 | "dev": true, 2721 | "license": "MIT", 2722 | "dependencies": { 2723 | "chalk": "^4.0.0", 2724 | "graceful-fs": "^4.2.9", 2725 | "jest-haste-map": "^29.7.0", 2726 | "jest-pnp-resolver": "^1.2.2", 2727 | "jest-util": "^29.7.0", 2728 | "jest-validate": "^29.7.0", 2729 | "resolve": "^1.20.0", 2730 | "resolve.exports": "^2.0.0", 2731 | "slash": "^3.0.0" 2732 | }, 2733 | "engines": { 2734 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2735 | } 2736 | }, 2737 | "node_modules/jest-resolve-dependencies": { 2738 | "version": "29.7.0", 2739 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2740 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2741 | "dev": true, 2742 | "license": "MIT", 2743 | "dependencies": { 2744 | "jest-regex-util": "^29.6.3", 2745 | "jest-snapshot": "^29.7.0" 2746 | }, 2747 | "engines": { 2748 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2749 | } 2750 | }, 2751 | "node_modules/jest-resolve/node_modules/chalk": { 2752 | "version": "4.1.2", 2753 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2754 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2755 | "dev": true, 2756 | "license": "MIT", 2757 | "dependencies": { 2758 | "ansi-styles": "^4.1.0", 2759 | "supports-color": "^7.1.0" 2760 | }, 2761 | "engines": { 2762 | "node": ">=10" 2763 | }, 2764 | "funding": { 2765 | "url": "https://github.com/chalk/chalk?sponsor=1" 2766 | } 2767 | }, 2768 | "node_modules/jest-runner": { 2769 | "version": "29.7.0", 2770 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2771 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2772 | "dev": true, 2773 | "license": "MIT", 2774 | "dependencies": { 2775 | "@jest/console": "^29.7.0", 2776 | "@jest/environment": "^29.7.0", 2777 | "@jest/test-result": "^29.7.0", 2778 | "@jest/transform": "^29.7.0", 2779 | "@jest/types": "^29.6.3", 2780 | "@types/node": "*", 2781 | "chalk": "^4.0.0", 2782 | "emittery": "^0.13.1", 2783 | "graceful-fs": "^4.2.9", 2784 | "jest-docblock": "^29.7.0", 2785 | "jest-environment-node": "^29.7.0", 2786 | "jest-haste-map": "^29.7.0", 2787 | "jest-leak-detector": "^29.7.0", 2788 | "jest-message-util": "^29.7.0", 2789 | "jest-resolve": "^29.7.0", 2790 | "jest-runtime": "^29.7.0", 2791 | "jest-util": "^29.7.0", 2792 | "jest-watcher": "^29.7.0", 2793 | "jest-worker": "^29.7.0", 2794 | "p-limit": "^3.1.0", 2795 | "source-map-support": "0.5.13" 2796 | }, 2797 | "engines": { 2798 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2799 | } 2800 | }, 2801 | "node_modules/jest-runner/node_modules/chalk": { 2802 | "version": "4.1.2", 2803 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2804 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2805 | "dev": true, 2806 | "license": "MIT", 2807 | "dependencies": { 2808 | "ansi-styles": "^4.1.0", 2809 | "supports-color": "^7.1.0" 2810 | }, 2811 | "engines": { 2812 | "node": ">=10" 2813 | }, 2814 | "funding": { 2815 | "url": "https://github.com/chalk/chalk?sponsor=1" 2816 | } 2817 | }, 2818 | "node_modules/jest-runtime": { 2819 | "version": "29.7.0", 2820 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2821 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2822 | "dev": true, 2823 | "license": "MIT", 2824 | "dependencies": { 2825 | "@jest/environment": "^29.7.0", 2826 | "@jest/fake-timers": "^29.7.0", 2827 | "@jest/globals": "^29.7.0", 2828 | "@jest/source-map": "^29.6.3", 2829 | "@jest/test-result": "^29.7.0", 2830 | "@jest/transform": "^29.7.0", 2831 | "@jest/types": "^29.6.3", 2832 | "@types/node": "*", 2833 | "chalk": "^4.0.0", 2834 | "cjs-module-lexer": "^1.0.0", 2835 | "collect-v8-coverage": "^1.0.0", 2836 | "glob": "^7.1.3", 2837 | "graceful-fs": "^4.2.9", 2838 | "jest-haste-map": "^29.7.0", 2839 | "jest-message-util": "^29.7.0", 2840 | "jest-mock": "^29.7.0", 2841 | "jest-regex-util": "^29.6.3", 2842 | "jest-resolve": "^29.7.0", 2843 | "jest-snapshot": "^29.7.0", 2844 | "jest-util": "^29.7.0", 2845 | "slash": "^3.0.0", 2846 | "strip-bom": "^4.0.0" 2847 | }, 2848 | "engines": { 2849 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2850 | } 2851 | }, 2852 | "node_modules/jest-runtime/node_modules/chalk": { 2853 | "version": "4.1.2", 2854 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2855 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2856 | "dev": true, 2857 | "license": "MIT", 2858 | "dependencies": { 2859 | "ansi-styles": "^4.1.0", 2860 | "supports-color": "^7.1.0" 2861 | }, 2862 | "engines": { 2863 | "node": ">=10" 2864 | }, 2865 | "funding": { 2866 | "url": "https://github.com/chalk/chalk?sponsor=1" 2867 | } 2868 | }, 2869 | "node_modules/jest-snapshot": { 2870 | "version": "29.7.0", 2871 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2872 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2873 | "dev": true, 2874 | "license": "MIT", 2875 | "dependencies": { 2876 | "@babel/core": "^7.11.6", 2877 | "@babel/generator": "^7.7.2", 2878 | "@babel/plugin-syntax-jsx": "^7.7.2", 2879 | "@babel/plugin-syntax-typescript": "^7.7.2", 2880 | "@babel/types": "^7.3.3", 2881 | "@jest/expect-utils": "^29.7.0", 2882 | "@jest/transform": "^29.7.0", 2883 | "@jest/types": "^29.6.3", 2884 | "babel-preset-current-node-syntax": "^1.0.0", 2885 | "chalk": "^4.0.0", 2886 | "expect": "^29.7.0", 2887 | "graceful-fs": "^4.2.9", 2888 | "jest-diff": "^29.7.0", 2889 | "jest-get-type": "^29.6.3", 2890 | "jest-matcher-utils": "^29.7.0", 2891 | "jest-message-util": "^29.7.0", 2892 | "jest-util": "^29.7.0", 2893 | "natural-compare": "^1.4.0", 2894 | "pretty-format": "^29.7.0", 2895 | "semver": "^7.5.3" 2896 | }, 2897 | "engines": { 2898 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2899 | } 2900 | }, 2901 | "node_modules/jest-snapshot/node_modules/chalk": { 2902 | "version": "4.1.2", 2903 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2904 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2905 | "dev": true, 2906 | "license": "MIT", 2907 | "dependencies": { 2908 | "ansi-styles": "^4.1.0", 2909 | "supports-color": "^7.1.0" 2910 | }, 2911 | "engines": { 2912 | "node": ">=10" 2913 | }, 2914 | "funding": { 2915 | "url": "https://github.com/chalk/chalk?sponsor=1" 2916 | } 2917 | }, 2918 | "node_modules/jest-snapshot/node_modules/semver": { 2919 | "version": "7.6.3", 2920 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2921 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2922 | "dev": true, 2923 | "license": "ISC", 2924 | "bin": { 2925 | "semver": "bin/semver.js" 2926 | }, 2927 | "engines": { 2928 | "node": ">=10" 2929 | } 2930 | }, 2931 | "node_modules/jest-util": { 2932 | "version": "29.7.0", 2933 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2934 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2935 | "dev": true, 2936 | "license": "MIT", 2937 | "dependencies": { 2938 | "@jest/types": "^29.6.3", 2939 | "@types/node": "*", 2940 | "chalk": "^4.0.0", 2941 | "ci-info": "^3.2.0", 2942 | "graceful-fs": "^4.2.9", 2943 | "picomatch": "^2.2.3" 2944 | }, 2945 | "engines": { 2946 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2947 | } 2948 | }, 2949 | "node_modules/jest-util/node_modules/chalk": { 2950 | "version": "4.1.2", 2951 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2952 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2953 | "dev": true, 2954 | "license": "MIT", 2955 | "dependencies": { 2956 | "ansi-styles": "^4.1.0", 2957 | "supports-color": "^7.1.0" 2958 | }, 2959 | "engines": { 2960 | "node": ">=10" 2961 | }, 2962 | "funding": { 2963 | "url": "https://github.com/chalk/chalk?sponsor=1" 2964 | } 2965 | }, 2966 | "node_modules/jest-validate": { 2967 | "version": "29.7.0", 2968 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2969 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2970 | "dev": true, 2971 | "license": "MIT", 2972 | "dependencies": { 2973 | "@jest/types": "^29.6.3", 2974 | "camelcase": "^6.2.0", 2975 | "chalk": "^4.0.0", 2976 | "jest-get-type": "^29.6.3", 2977 | "leven": "^3.1.0", 2978 | "pretty-format": "^29.7.0" 2979 | }, 2980 | "engines": { 2981 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2982 | } 2983 | }, 2984 | "node_modules/jest-validate/node_modules/camelcase": { 2985 | "version": "6.3.0", 2986 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2987 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2988 | "dev": true, 2989 | "license": "MIT", 2990 | "engines": { 2991 | "node": ">=10" 2992 | }, 2993 | "funding": { 2994 | "url": "https://github.com/sponsors/sindresorhus" 2995 | } 2996 | }, 2997 | "node_modules/jest-validate/node_modules/chalk": { 2998 | "version": "4.1.2", 2999 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 3000 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 3001 | "dev": true, 3002 | "license": "MIT", 3003 | "dependencies": { 3004 | "ansi-styles": "^4.1.0", 3005 | "supports-color": "^7.1.0" 3006 | }, 3007 | "engines": { 3008 | "node": ">=10" 3009 | }, 3010 | "funding": { 3011 | "url": "https://github.com/chalk/chalk?sponsor=1" 3012 | } 3013 | }, 3014 | "node_modules/jest-watcher": { 3015 | "version": "29.7.0", 3016 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 3017 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 3018 | "dev": true, 3019 | "license": "MIT", 3020 | "dependencies": { 3021 | "@jest/test-result": "^29.7.0", 3022 | "@jest/types": "^29.6.3", 3023 | "@types/node": "*", 3024 | "ansi-escapes": "^4.2.1", 3025 | "chalk": "^4.0.0", 3026 | "emittery": "^0.13.1", 3027 | "jest-util": "^29.7.0", 3028 | "string-length": "^4.0.1" 3029 | }, 3030 | "engines": { 3031 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3032 | } 3033 | }, 3034 | "node_modules/jest-watcher/node_modules/chalk": { 3035 | "version": "4.1.2", 3036 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 3037 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 3038 | "dev": true, 3039 | "license": "MIT", 3040 | "dependencies": { 3041 | "ansi-styles": "^4.1.0", 3042 | "supports-color": "^7.1.0" 3043 | }, 3044 | "engines": { 3045 | "node": ">=10" 3046 | }, 3047 | "funding": { 3048 | "url": "https://github.com/chalk/chalk?sponsor=1" 3049 | } 3050 | }, 3051 | "node_modules/jest-worker": { 3052 | "version": "29.7.0", 3053 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 3054 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 3055 | "dev": true, 3056 | "license": "MIT", 3057 | "dependencies": { 3058 | "@types/node": "*", 3059 | "jest-util": "^29.7.0", 3060 | "merge-stream": "^2.0.0", 3061 | "supports-color": "^8.0.0" 3062 | }, 3063 | "engines": { 3064 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3065 | } 3066 | }, 3067 | "node_modules/jest-worker/node_modules/supports-color": { 3068 | "version": "8.1.1", 3069 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 3070 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 3071 | "dev": true, 3072 | "license": "MIT", 3073 | "dependencies": { 3074 | "has-flag": "^4.0.0" 3075 | }, 3076 | "engines": { 3077 | "node": ">=10" 3078 | }, 3079 | "funding": { 3080 | "url": "https://github.com/chalk/supports-color?sponsor=1" 3081 | } 3082 | }, 3083 | "node_modules/js-tokens": { 3084 | "version": "4.0.0", 3085 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 3086 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 3087 | "dev": true, 3088 | "license": "MIT" 3089 | }, 3090 | "node_modules/js-yaml": { 3091 | "version": "3.14.1", 3092 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 3093 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 3094 | "dev": true, 3095 | "license": "MIT", 3096 | "dependencies": { 3097 | "argparse": "^1.0.7", 3098 | "esprima": "^4.0.0" 3099 | }, 3100 | "bin": { 3101 | "js-yaml": "bin/js-yaml.js" 3102 | } 3103 | }, 3104 | "node_modules/jsesc": { 3105 | "version": "2.5.2", 3106 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 3107 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 3108 | "dev": true, 3109 | "license": "MIT", 3110 | "bin": { 3111 | "jsesc": "bin/jsesc" 3112 | }, 3113 | "engines": { 3114 | "node": ">=4" 3115 | } 3116 | }, 3117 | "node_modules/json-parse-even-better-errors": { 3118 | "version": "2.3.1", 3119 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 3120 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 3121 | "dev": true, 3122 | "license": "MIT" 3123 | }, 3124 | "node_modules/json5": { 3125 | "version": "2.2.3", 3126 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3127 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3128 | "dev": true, 3129 | "license": "MIT", 3130 | "bin": { 3131 | "json5": "lib/cli.js" 3132 | }, 3133 | "engines": { 3134 | "node": ">=6" 3135 | } 3136 | }, 3137 | "node_modules/kleur": { 3138 | "version": "3.0.3", 3139 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 3140 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 3141 | "dev": true, 3142 | "license": "MIT", 3143 | "engines": { 3144 | "node": ">=6" 3145 | } 3146 | }, 3147 | "node_modules/leven": { 3148 | "version": "3.1.0", 3149 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 3150 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 3151 | "dev": true, 3152 | "license": "MIT", 3153 | "engines": { 3154 | "node": ">=6" 3155 | } 3156 | }, 3157 | "node_modules/lines-and-columns": { 3158 | "version": "1.2.4", 3159 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 3160 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 3161 | "dev": true, 3162 | "license": "MIT" 3163 | }, 3164 | "node_modules/locate-path": { 3165 | "version": "5.0.0", 3166 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 3167 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 3168 | "dev": true, 3169 | "license": "MIT", 3170 | "dependencies": { 3171 | "p-locate": "^4.1.0" 3172 | }, 3173 | "engines": { 3174 | "node": ">=8" 3175 | } 3176 | }, 3177 | "node_modules/lru-cache": { 3178 | "version": "5.1.1", 3179 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3180 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3181 | "dev": true, 3182 | "license": "ISC", 3183 | "dependencies": { 3184 | "yallist": "^3.0.2" 3185 | } 3186 | }, 3187 | "node_modules/make-dir": { 3188 | "version": "4.0.0", 3189 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 3190 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 3191 | "dev": true, 3192 | "license": "MIT", 3193 | "dependencies": { 3194 | "semver": "^7.5.3" 3195 | }, 3196 | "engines": { 3197 | "node": ">=10" 3198 | }, 3199 | "funding": { 3200 | "url": "https://github.com/sponsors/sindresorhus" 3201 | } 3202 | }, 3203 | "node_modules/make-dir/node_modules/semver": { 3204 | "version": "7.6.3", 3205 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3206 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3207 | "dev": true, 3208 | "license": "ISC", 3209 | "bin": { 3210 | "semver": "bin/semver.js" 3211 | }, 3212 | "engines": { 3213 | "node": ">=10" 3214 | } 3215 | }, 3216 | "node_modules/makeerror": { 3217 | "version": "1.0.12", 3218 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 3219 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 3220 | "dev": true, 3221 | "license": "BSD-3-Clause", 3222 | "dependencies": { 3223 | "tmpl": "1.0.5" 3224 | } 3225 | }, 3226 | "node_modules/merge-stream": { 3227 | "version": "2.0.0", 3228 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3229 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3230 | "dev": true, 3231 | "license": "MIT" 3232 | }, 3233 | "node_modules/micromatch": { 3234 | "version": "4.0.7", 3235 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 3236 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 3237 | "dev": true, 3238 | "license": "MIT", 3239 | "dependencies": { 3240 | "braces": "^3.0.3", 3241 | "picomatch": "^2.3.1" 3242 | }, 3243 | "engines": { 3244 | "node": ">=8.6" 3245 | } 3246 | }, 3247 | "node_modules/mimic-fn": { 3248 | "version": "2.1.0", 3249 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3250 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3251 | "dev": true, 3252 | "license": "MIT", 3253 | "engines": { 3254 | "node": ">=6" 3255 | } 3256 | }, 3257 | "node_modules/minimatch": { 3258 | "version": "3.1.2", 3259 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3260 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3261 | "dev": true, 3262 | "license": "ISC", 3263 | "dependencies": { 3264 | "brace-expansion": "^1.1.7" 3265 | }, 3266 | "engines": { 3267 | "node": "*" 3268 | } 3269 | }, 3270 | "node_modules/ms": { 3271 | "version": "2.1.2", 3272 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3273 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3274 | "dev": true, 3275 | "license": "MIT" 3276 | }, 3277 | "node_modules/natural-compare": { 3278 | "version": "1.4.0", 3279 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3280 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3281 | "dev": true, 3282 | "license": "MIT" 3283 | }, 3284 | "node_modules/node-int64": { 3285 | "version": "0.4.0", 3286 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 3287 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 3288 | "dev": true, 3289 | "license": "MIT" 3290 | }, 3291 | "node_modules/node-releases": { 3292 | "version": "2.0.18", 3293 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 3294 | "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 3295 | "dev": true, 3296 | "license": "MIT" 3297 | }, 3298 | "node_modules/normalize-path": { 3299 | "version": "3.0.0", 3300 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3301 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3302 | "dev": true, 3303 | "license": "MIT", 3304 | "engines": { 3305 | "node": ">=0.10.0" 3306 | } 3307 | }, 3308 | "node_modules/npm-run-path": { 3309 | "version": "4.0.1", 3310 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3311 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3312 | "dev": true, 3313 | "license": "MIT", 3314 | "dependencies": { 3315 | "path-key": "^3.0.0" 3316 | }, 3317 | "engines": { 3318 | "node": ">=8" 3319 | } 3320 | }, 3321 | "node_modules/once": { 3322 | "version": "1.4.0", 3323 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3324 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3325 | "dev": true, 3326 | "license": "ISC", 3327 | "dependencies": { 3328 | "wrappy": "1" 3329 | } 3330 | }, 3331 | "node_modules/onetime": { 3332 | "version": "5.1.2", 3333 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3334 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3335 | "dev": true, 3336 | "license": "MIT", 3337 | "dependencies": { 3338 | "mimic-fn": "^2.1.0" 3339 | }, 3340 | "engines": { 3341 | "node": ">=6" 3342 | }, 3343 | "funding": { 3344 | "url": "https://github.com/sponsors/sindresorhus" 3345 | } 3346 | }, 3347 | "node_modules/p-limit": { 3348 | "version": "3.1.0", 3349 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3350 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3351 | "dev": true, 3352 | "license": "MIT", 3353 | "dependencies": { 3354 | "yocto-queue": "^0.1.0" 3355 | }, 3356 | "engines": { 3357 | "node": ">=10" 3358 | }, 3359 | "funding": { 3360 | "url": "https://github.com/sponsors/sindresorhus" 3361 | } 3362 | }, 3363 | "node_modules/p-locate": { 3364 | "version": "4.1.0", 3365 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 3366 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 3367 | "dev": true, 3368 | "license": "MIT", 3369 | "dependencies": { 3370 | "p-limit": "^2.2.0" 3371 | }, 3372 | "engines": { 3373 | "node": ">=8" 3374 | } 3375 | }, 3376 | "node_modules/p-locate/node_modules/p-limit": { 3377 | "version": "2.3.0", 3378 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3379 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3380 | "dev": true, 3381 | "license": "MIT", 3382 | "dependencies": { 3383 | "p-try": "^2.0.0" 3384 | }, 3385 | "engines": { 3386 | "node": ">=6" 3387 | }, 3388 | "funding": { 3389 | "url": "https://github.com/sponsors/sindresorhus" 3390 | } 3391 | }, 3392 | "node_modules/p-try": { 3393 | "version": "2.2.0", 3394 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3395 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3396 | "dev": true, 3397 | "license": "MIT", 3398 | "engines": { 3399 | "node": ">=6" 3400 | } 3401 | }, 3402 | "node_modules/parse-json": { 3403 | "version": "5.2.0", 3404 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3405 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3406 | "dev": true, 3407 | "license": "MIT", 3408 | "dependencies": { 3409 | "@babel/code-frame": "^7.0.0", 3410 | "error-ex": "^1.3.1", 3411 | "json-parse-even-better-errors": "^2.3.0", 3412 | "lines-and-columns": "^1.1.6" 3413 | }, 3414 | "engines": { 3415 | "node": ">=8" 3416 | }, 3417 | "funding": { 3418 | "url": "https://github.com/sponsors/sindresorhus" 3419 | } 3420 | }, 3421 | "node_modules/path-exists": { 3422 | "version": "4.0.0", 3423 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3424 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3425 | "dev": true, 3426 | "license": "MIT", 3427 | "engines": { 3428 | "node": ">=8" 3429 | } 3430 | }, 3431 | "node_modules/path-is-absolute": { 3432 | "version": "1.0.1", 3433 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3434 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3435 | "dev": true, 3436 | "license": "MIT", 3437 | "engines": { 3438 | "node": ">=0.10.0" 3439 | } 3440 | }, 3441 | "node_modules/path-key": { 3442 | "version": "3.1.1", 3443 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3444 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3445 | "dev": true, 3446 | "license": "MIT", 3447 | "engines": { 3448 | "node": ">=8" 3449 | } 3450 | }, 3451 | "node_modules/path-parse": { 3452 | "version": "1.0.7", 3453 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3454 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3455 | "dev": true, 3456 | "license": "MIT" 3457 | }, 3458 | "node_modules/picocolors": { 3459 | "version": "1.0.1", 3460 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 3461 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 3462 | "dev": true, 3463 | "license": "ISC" 3464 | }, 3465 | "node_modules/picomatch": { 3466 | "version": "2.3.1", 3467 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3468 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3469 | "dev": true, 3470 | "license": "MIT", 3471 | "engines": { 3472 | "node": ">=8.6" 3473 | }, 3474 | "funding": { 3475 | "url": "https://github.com/sponsors/jonschlinkert" 3476 | } 3477 | }, 3478 | "node_modules/pirates": { 3479 | "version": "4.0.6", 3480 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3481 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3482 | "dev": true, 3483 | "license": "MIT", 3484 | "engines": { 3485 | "node": ">= 6" 3486 | } 3487 | }, 3488 | "node_modules/pkg-dir": { 3489 | "version": "4.2.0", 3490 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3491 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3492 | "dev": true, 3493 | "license": "MIT", 3494 | "dependencies": { 3495 | "find-up": "^4.0.0" 3496 | }, 3497 | "engines": { 3498 | "node": ">=8" 3499 | } 3500 | }, 3501 | "node_modules/pretty-format": { 3502 | "version": "29.7.0", 3503 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3504 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3505 | "dev": true, 3506 | "license": "MIT", 3507 | "dependencies": { 3508 | "@jest/schemas": "^29.6.3", 3509 | "ansi-styles": "^5.0.0", 3510 | "react-is": "^18.0.0" 3511 | }, 3512 | "engines": { 3513 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3514 | } 3515 | }, 3516 | "node_modules/pretty-format/node_modules/ansi-styles": { 3517 | "version": "5.2.0", 3518 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3519 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3520 | "dev": true, 3521 | "license": "MIT", 3522 | "engines": { 3523 | "node": ">=10" 3524 | }, 3525 | "funding": { 3526 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3527 | } 3528 | }, 3529 | "node_modules/prompts": { 3530 | "version": "2.4.2", 3531 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3532 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3533 | "dev": true, 3534 | "license": "MIT", 3535 | "dependencies": { 3536 | "kleur": "^3.0.3", 3537 | "sisteransi": "^1.0.5" 3538 | }, 3539 | "engines": { 3540 | "node": ">= 6" 3541 | } 3542 | }, 3543 | "node_modules/pure-rand": { 3544 | "version": "6.1.0", 3545 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 3546 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 3547 | "dev": true, 3548 | "funding": [ 3549 | { 3550 | "type": "individual", 3551 | "url": "https://github.com/sponsors/dubzzz" 3552 | }, 3553 | { 3554 | "type": "opencollective", 3555 | "url": "https://opencollective.com/fast-check" 3556 | } 3557 | ], 3558 | "license": "MIT" 3559 | }, 3560 | "node_modules/react-is": { 3561 | "version": "18.3.1", 3562 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 3563 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 3564 | "dev": true, 3565 | "license": "MIT" 3566 | }, 3567 | "node_modules/require-directory": { 3568 | "version": "2.1.1", 3569 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3570 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3571 | "dev": true, 3572 | "license": "MIT", 3573 | "engines": { 3574 | "node": ">=0.10.0" 3575 | } 3576 | }, 3577 | "node_modules/resolve": { 3578 | "version": "1.22.8", 3579 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3580 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3581 | "dev": true, 3582 | "license": "MIT", 3583 | "dependencies": { 3584 | "is-core-module": "^2.13.0", 3585 | "path-parse": "^1.0.7", 3586 | "supports-preserve-symlinks-flag": "^1.0.0" 3587 | }, 3588 | "bin": { 3589 | "resolve": "bin/resolve" 3590 | }, 3591 | "funding": { 3592 | "url": "https://github.com/sponsors/ljharb" 3593 | } 3594 | }, 3595 | "node_modules/resolve-cwd": { 3596 | "version": "3.0.0", 3597 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3598 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3599 | "dev": true, 3600 | "license": "MIT", 3601 | "dependencies": { 3602 | "resolve-from": "^5.0.0" 3603 | }, 3604 | "engines": { 3605 | "node": ">=8" 3606 | } 3607 | }, 3608 | "node_modules/resolve-from": { 3609 | "version": "5.0.0", 3610 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3611 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3612 | "dev": true, 3613 | "license": "MIT", 3614 | "engines": { 3615 | "node": ">=8" 3616 | } 3617 | }, 3618 | "node_modules/resolve.exports": { 3619 | "version": "2.0.2", 3620 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", 3621 | "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", 3622 | "dev": true, 3623 | "license": "MIT", 3624 | "engines": { 3625 | "node": ">=10" 3626 | } 3627 | }, 3628 | "node_modules/semver": { 3629 | "version": "6.3.1", 3630 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3631 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3632 | "dev": true, 3633 | "license": "ISC", 3634 | "bin": { 3635 | "semver": "bin/semver.js" 3636 | } 3637 | }, 3638 | "node_modules/shebang-command": { 3639 | "version": "2.0.0", 3640 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3641 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3642 | "dev": true, 3643 | "license": "MIT", 3644 | "dependencies": { 3645 | "shebang-regex": "^3.0.0" 3646 | }, 3647 | "engines": { 3648 | "node": ">=8" 3649 | } 3650 | }, 3651 | "node_modules/shebang-regex": { 3652 | "version": "3.0.0", 3653 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3654 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3655 | "dev": true, 3656 | "license": "MIT", 3657 | "engines": { 3658 | "node": ">=8" 3659 | } 3660 | }, 3661 | "node_modules/signal-exit": { 3662 | "version": "3.0.7", 3663 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3664 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3665 | "dev": true, 3666 | "license": "ISC" 3667 | }, 3668 | "node_modules/sisteransi": { 3669 | "version": "1.0.5", 3670 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3671 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3672 | "dev": true, 3673 | "license": "MIT" 3674 | }, 3675 | "node_modules/slash": { 3676 | "version": "3.0.0", 3677 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3678 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3679 | "dev": true, 3680 | "license": "MIT", 3681 | "engines": { 3682 | "node": ">=8" 3683 | } 3684 | }, 3685 | "node_modules/source-map": { 3686 | "version": "0.6.1", 3687 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3688 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3689 | "dev": true, 3690 | "license": "BSD-3-Clause", 3691 | "engines": { 3692 | "node": ">=0.10.0" 3693 | } 3694 | }, 3695 | "node_modules/source-map-support": { 3696 | "version": "0.5.13", 3697 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3698 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3699 | "dev": true, 3700 | "license": "MIT", 3701 | "dependencies": { 3702 | "buffer-from": "^1.0.0", 3703 | "source-map": "^0.6.0" 3704 | } 3705 | }, 3706 | "node_modules/sprintf-js": { 3707 | "version": "1.0.3", 3708 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3709 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3710 | "dev": true, 3711 | "license": "BSD-3-Clause" 3712 | }, 3713 | "node_modules/stack-utils": { 3714 | "version": "2.0.6", 3715 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3716 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3717 | "dev": true, 3718 | "license": "MIT", 3719 | "dependencies": { 3720 | "escape-string-regexp": "^2.0.0" 3721 | }, 3722 | "engines": { 3723 | "node": ">=10" 3724 | } 3725 | }, 3726 | "node_modules/string-length": { 3727 | "version": "4.0.2", 3728 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3729 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3730 | "dev": true, 3731 | "license": "MIT", 3732 | "dependencies": { 3733 | "char-regex": "^1.0.2", 3734 | "strip-ansi": "^6.0.0" 3735 | }, 3736 | "engines": { 3737 | "node": ">=10" 3738 | } 3739 | }, 3740 | "node_modules/string-width": { 3741 | "version": "4.2.3", 3742 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3743 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3744 | "dev": true, 3745 | "license": "MIT", 3746 | "dependencies": { 3747 | "emoji-regex": "^8.0.0", 3748 | "is-fullwidth-code-point": "^3.0.0", 3749 | "strip-ansi": "^6.0.1" 3750 | }, 3751 | "engines": { 3752 | "node": ">=8" 3753 | } 3754 | }, 3755 | "node_modules/strip-ansi": { 3756 | "version": "6.0.1", 3757 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3758 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3759 | "dev": true, 3760 | "license": "MIT", 3761 | "dependencies": { 3762 | "ansi-regex": "^5.0.1" 3763 | }, 3764 | "engines": { 3765 | "node": ">=8" 3766 | } 3767 | }, 3768 | "node_modules/strip-bom": { 3769 | "version": "4.0.0", 3770 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3771 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3772 | "dev": true, 3773 | "license": "MIT", 3774 | "engines": { 3775 | "node": ">=8" 3776 | } 3777 | }, 3778 | "node_modules/strip-final-newline": { 3779 | "version": "2.0.0", 3780 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3781 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3782 | "dev": true, 3783 | "license": "MIT", 3784 | "engines": { 3785 | "node": ">=6" 3786 | } 3787 | }, 3788 | "node_modules/strip-json-comments": { 3789 | "version": "3.1.1", 3790 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3791 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3792 | "dev": true, 3793 | "license": "MIT", 3794 | "engines": { 3795 | "node": ">=8" 3796 | }, 3797 | "funding": { 3798 | "url": "https://github.com/sponsors/sindresorhus" 3799 | } 3800 | }, 3801 | "node_modules/supports-color": { 3802 | "version": "7.2.0", 3803 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3804 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3805 | "dev": true, 3806 | "license": "MIT", 3807 | "dependencies": { 3808 | "has-flag": "^4.0.0" 3809 | }, 3810 | "engines": { 3811 | "node": ">=8" 3812 | } 3813 | }, 3814 | "node_modules/supports-preserve-symlinks-flag": { 3815 | "version": "1.0.0", 3816 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3817 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3818 | "dev": true, 3819 | "license": "MIT", 3820 | "engines": { 3821 | "node": ">= 0.4" 3822 | }, 3823 | "funding": { 3824 | "url": "https://github.com/sponsors/ljharb" 3825 | } 3826 | }, 3827 | "node_modules/test-exclude": { 3828 | "version": "6.0.0", 3829 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3830 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3831 | "dev": true, 3832 | "license": "ISC", 3833 | "dependencies": { 3834 | "@istanbuljs/schema": "^0.1.2", 3835 | "glob": "^7.1.4", 3836 | "minimatch": "^3.0.4" 3837 | }, 3838 | "engines": { 3839 | "node": ">=8" 3840 | } 3841 | }, 3842 | "node_modules/tmpl": { 3843 | "version": "1.0.5", 3844 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3845 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3846 | "dev": true, 3847 | "license": "BSD-3-Clause" 3848 | }, 3849 | "node_modules/to-fast-properties": { 3850 | "version": "2.0.0", 3851 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3852 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3853 | "dev": true, 3854 | "license": "MIT", 3855 | "engines": { 3856 | "node": ">=4" 3857 | } 3858 | }, 3859 | "node_modules/to-regex-range": { 3860 | "version": "5.0.1", 3861 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3862 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3863 | "dev": true, 3864 | "license": "MIT", 3865 | "dependencies": { 3866 | "is-number": "^7.0.0" 3867 | }, 3868 | "engines": { 3869 | "node": ">=8.0" 3870 | } 3871 | }, 3872 | "node_modules/type-detect": { 3873 | "version": "4.0.8", 3874 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3875 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3876 | "dev": true, 3877 | "license": "MIT", 3878 | "engines": { 3879 | "node": ">=4" 3880 | } 3881 | }, 3882 | "node_modules/type-fest": { 3883 | "version": "0.21.3", 3884 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3885 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3886 | "dev": true, 3887 | "license": "(MIT OR CC0-1.0)", 3888 | "engines": { 3889 | "node": ">=10" 3890 | }, 3891 | "funding": { 3892 | "url": "https://github.com/sponsors/sindresorhus" 3893 | } 3894 | }, 3895 | "node_modules/undici-types": { 3896 | "version": "6.13.0", 3897 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz", 3898 | "integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==", 3899 | "dev": true, 3900 | "license": "MIT" 3901 | }, 3902 | "node_modules/update-browserslist-db": { 3903 | "version": "1.1.0", 3904 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", 3905 | "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", 3906 | "dev": true, 3907 | "funding": [ 3908 | { 3909 | "type": "opencollective", 3910 | "url": "https://opencollective.com/browserslist" 3911 | }, 3912 | { 3913 | "type": "tidelift", 3914 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3915 | }, 3916 | { 3917 | "type": "github", 3918 | "url": "https://github.com/sponsors/ai" 3919 | } 3920 | ], 3921 | "license": "MIT", 3922 | "dependencies": { 3923 | "escalade": "^3.1.2", 3924 | "picocolors": "^1.0.1" 3925 | }, 3926 | "bin": { 3927 | "update-browserslist-db": "cli.js" 3928 | }, 3929 | "peerDependencies": { 3930 | "browserslist": ">= 4.21.0" 3931 | } 3932 | }, 3933 | "node_modules/v8-to-istanbul": { 3934 | "version": "9.3.0", 3935 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 3936 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 3937 | "dev": true, 3938 | "license": "ISC", 3939 | "dependencies": { 3940 | "@jridgewell/trace-mapping": "^0.3.12", 3941 | "@types/istanbul-lib-coverage": "^2.0.1", 3942 | "convert-source-map": "^2.0.0" 3943 | }, 3944 | "engines": { 3945 | "node": ">=10.12.0" 3946 | } 3947 | }, 3948 | "node_modules/walker": { 3949 | "version": "1.0.8", 3950 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3951 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3952 | "dev": true, 3953 | "license": "Apache-2.0", 3954 | "dependencies": { 3955 | "makeerror": "1.0.12" 3956 | } 3957 | }, 3958 | "node_modules/which": { 3959 | "version": "2.0.2", 3960 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3961 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3962 | "dev": true, 3963 | "license": "ISC", 3964 | "dependencies": { 3965 | "isexe": "^2.0.0" 3966 | }, 3967 | "bin": { 3968 | "node-which": "bin/node-which" 3969 | }, 3970 | "engines": { 3971 | "node": ">= 8" 3972 | } 3973 | }, 3974 | "node_modules/wrap-ansi": { 3975 | "version": "7.0.0", 3976 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3977 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3978 | "dev": true, 3979 | "license": "MIT", 3980 | "dependencies": { 3981 | "ansi-styles": "^4.0.0", 3982 | "string-width": "^4.1.0", 3983 | "strip-ansi": "^6.0.0" 3984 | }, 3985 | "engines": { 3986 | "node": ">=10" 3987 | }, 3988 | "funding": { 3989 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3990 | } 3991 | }, 3992 | "node_modules/wrappy": { 3993 | "version": "1.0.2", 3994 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3995 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3996 | "dev": true, 3997 | "license": "ISC" 3998 | }, 3999 | "node_modules/write-file-atomic": { 4000 | "version": "4.0.2", 4001 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 4002 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 4003 | "dev": true, 4004 | "license": "ISC", 4005 | "dependencies": { 4006 | "imurmurhash": "^0.1.4", 4007 | "signal-exit": "^3.0.7" 4008 | }, 4009 | "engines": { 4010 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 4011 | } 4012 | }, 4013 | "node_modules/y18n": { 4014 | "version": "5.0.8", 4015 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 4016 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 4017 | "dev": true, 4018 | "license": "ISC", 4019 | "engines": { 4020 | "node": ">=10" 4021 | } 4022 | }, 4023 | "node_modules/yallist": { 4024 | "version": "3.1.1", 4025 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4026 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4027 | "dev": true, 4028 | "license": "ISC" 4029 | }, 4030 | "node_modules/yargs": { 4031 | "version": "17.7.2", 4032 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 4033 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 4034 | "dev": true, 4035 | "license": "MIT", 4036 | "dependencies": { 4037 | "cliui": "^8.0.1", 4038 | "escalade": "^3.1.1", 4039 | "get-caller-file": "^2.0.5", 4040 | "require-directory": "^2.1.1", 4041 | "string-width": "^4.2.3", 4042 | "y18n": "^5.0.5", 4043 | "yargs-parser": "^21.1.1" 4044 | }, 4045 | "engines": { 4046 | "node": ">=12" 4047 | } 4048 | }, 4049 | "node_modules/yargs-parser": { 4050 | "version": "21.1.1", 4051 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4052 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4053 | "dev": true, 4054 | "license": "ISC", 4055 | "engines": { 4056 | "node": ">=12" 4057 | } 4058 | }, 4059 | "node_modules/yocto-queue": { 4060 | "version": "0.1.0", 4061 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4062 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4063 | "dev": true, 4064 | "license": "MIT", 4065 | "engines": { 4066 | "node": ">=10" 4067 | }, 4068 | "funding": { 4069 | "url": "https://github.com/sponsors/sindresorhus" 4070 | } 4071 | } 4072 | } 4073 | } 4074 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Jens Oliver Meiert", 3 | "bin": { 4 | "obsohtml": "bin/obsohtml.js" 5 | }, 6 | "dependencies": { 7 | "commander": "^14.0.0" 8 | }, 9 | "description": "Find obsolete HTML elements and attributes", 10 | "devDependencies": { 11 | "jest": "^29.7.0" 12 | }, 13 | "homepage": "https://github.com/j9t/obsohtml", 14 | "keywords": [ 15 | "html", 16 | "qa" 17 | ], 18 | "license": "CC-BY-SA-4.0", 19 | "name": "@j9t/obsohtml", 20 | "repository": { 21 | "type": "git", 22 | "url": "git+ssh://git@github.com/j9t/obsohtml.git" 23 | }, 24 | "scripts": { 25 | "start": "node ./bin/obsohtml.js", 26 | "test": "jest" 27 | }, 28 | "version": "1.8.0" 29 | } --------------------------------------------------------------------------------