├── .gitignore ├── LICENSE ├── README.md ├── week-1 └── weight-converter │ ├── package.json │ ├── tester.js │ └── weight-converter.js ├── week-2 └── cooking-app │ ├── index.js │ ├── recipes.js │ └── tester.js ├── week-3 └── distance-calculator │ ├── src │ └── distance-calculator.js │ └── test │ └── distance-calculator.spec.js ├── week-4 └── taco-stand-app │ ├── package.json │ ├── src │ ├── index.js │ └── taco-stand.js │ └── test │ └── taco-stand.spec.js ├── week-5 └── pie-baker │ ├── package.json │ ├── src │ └── pie.js │ └── test │ └── pie.spec.js ├── week-6 └── fantasy-game-character-creation │ ├── .DS_Store │ ├── jsconfig.json │ ├── package.json │ ├── src │ └── server.js │ └── test │ └── server.spec.js ├── week-7 └── fantasy-character-creation-stream │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ └── character-creator.js │ └── test │ └── character-creator.spec.js ├── week-8 └── fantasy-character-creation │ ├── .DS_Store │ ├── jsconfig.json │ ├── package.json │ ├── src │ └── character-creation.js │ └── test │ └── character-creation.spec.js └── week-9 └── fantasy-game-characters ├── jsconfig.json ├── package.json ├── src ├── failing-script.js ├── game-characters-data.js └── game-characters.js └── test └── game-characters.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE 2 | .vscode 3 | .idea 4 | 5 | # Node ddependency directories 6 | node_modules/ 7 | 8 | # Optional npm cache directory 9 | .npm 10 | 11 | # OS X Finder 12 | .DS_Store 13 | 14 | # Optional eslint cache 15 | .eslintcache 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Bellevue University 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WEB 340 Node.js 2 | ## [Bellevue University](http://bellevue.edu "Bellevue University is a private, non-profit university located in Bellevue, Nebraska, United States.") 3 | 4 | Address: 1000 Galvin Rd S, Bellevue, Nebraska 68005 - [Directions](https://www.google.com/maps/dir/''/Bellevue+University/@41.1509562,-95.9896355,12z/data=!4m8!4m7!1m0!1m5!1m1!1s0x8793886a86ca807f:0x838e857240d175eb!2m2!1d-95.9195956!2d41.1509774 "Google maps") 5 | 6 | Web Development [Degree](http://www.bellevue.edu/degrees/bachelor/web-development-bs/ "Designed by developers for developers.") 7 | 8 | ## Course Description 9 | 10 | This course introduces the process of building web-based applications in Node.js with Express. Students learn to create web forms, collect and process information obtained from them, retrieve and update information contained in a MongoDB database, and build stand-alone RESTFul API's. GitHub is used to host and share coding projects. 11 | 12 | Prerequisite: N/A 13 | 14 | ## Repository Overview 15 | 16 | Carefully read the assigned chapters, videos, and narrative I've included under each exercise and assignment. 17 | 18 | Most exercises and assignments have runnable sample code so you can visually see the concept "in action." Assignments are broken into "milestones" and each "milestone" builds on the last. 19 | 20 | Approach every week from top-to-bottom and do not move to the next assignment/exercise without fully understanding the previous. 21 | 22 | ```bash 23 | git clone https://github.com/buwebdev/web-340.git 24 | cd web-340 25 | ``` 26 | 27 | Setting up and running the examples: 28 | ```bash 29 | cd [week]/[folder] 30 | npm install 31 | npm start | npm run dev | node index.js 32 | ``` 33 | 34 | 35 | -------------------------------------------------------------------------------- /week-1/weight-converter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weight-converter", 3 | "version": "1.0.0", 4 | "description": "A simple weight converter", 5 | "main": "weight-converter.js", 6 | "scripts": { 7 | "start": "node weight-converter.js" 8 | }, 9 | "dependencies": {} 10 | } -------------------------------------------------------------------------------- /week-1/weight-converter/tester.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: Professor Krasso 3 | * Date: 12-21-2023 4 | * File: tester.js 5 | * This code was generated with the assistance of GitHub Copilot. 6 | * Description: 7 | * In order to execute this test script, it is mandatory to have Node.js installed on your machine. 8 | * You can install Node.js by visiting https://nodejs.org/en/download/. After installation, to run the script, 9 | * simply open a terminal window and enter the following command: "node tester.js". If the test is successful, 10 | * the console will display "Test passed." Otherwise, it will show "Test failed." This script is intended to be 11 | * used to test your weight-converter.js file, and should not be modified under any circumstances. 12 | * You do not need to include this file in your final assignment or GitHub repository. 13 | * Also, it is not necessary to understand how this script works. 14 | */ 15 | 16 | "use strict"; 17 | 18 | const { spawn } = require("child_process"); 19 | const path = require("path"); 20 | 21 | const testWeight = "10"; 22 | const expectedOutput = "4.54\n"; // Note: the output will have a trailing newline 23 | 24 | const testProcess = spawn("node", ["weight-converter.js", testWeight], { cwd: path.dirname(__filename) }); 25 | 26 | testProcess.stdout.on("data", (data) => { 27 | const output = data.toString(); 28 | 29 | if (output === expectedOutput) { 30 | console.log("Test passed."); 31 | } else { 32 | console.log("Test failed."); 33 | } 34 | }); 35 | 36 | testProcess.on("close", () => { 37 | process.exit(); 38 | }); -------------------------------------------------------------------------------- /week-1/weight-converter/weight-converter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | "use strict"; 9 | 10 | // TODO: Implement the weight conversion logic here -------------------------------------------------------------------------------- /week-2/cooking-app/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | // TODO: Import your module using require 9 | 10 | // TODO: Implement your CLI program here -------------------------------------------------------------------------------- /week-2/cooking-app/recipes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | // Define the createRecipe function 9 | function createRecipe(ingredients) { 10 | // TODO: Implement this function 11 | } 12 | 13 | // Define the setTimer function 14 | function setTimer(minutes) { 15 | // TODO: Implement this function 16 | } 17 | 18 | // Define the quit function 19 | function quit() { 20 | // TODO: Implement this function 21 | } 22 | 23 | // TODO: Export the functions -------------------------------------------------------------------------------- /week-2/cooking-app/tester.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: Professor Krasso 3 | * Date: 1/02/2024 4 | * File Name: tester.js 5 | * This code was generated with the assistance of GitHub Copilot. 6 | */ 7 | 8 | // Try to import the student's module 9 | let recipes; 10 | try { 11 | recipes = require("./recipes"); 12 | } catch (error) { 13 | console.error("Failed to import module. Make sure you have exported your module correctly."); 14 | process.exit(1); 15 | } 16 | 17 | // Check that the createRecipe function exists and works correctly 18 | if (typeof recipes.createRecipe !== "function") { 19 | console.error("createRecipe function is missing or not a function"); 20 | process.exit(1); 21 | } else { 22 | try { 23 | const result = recipes.createRecipe(["ingredient1", "ingredient2"]); 24 | if (result !== "Recipe created with ingredients: ingredient1, ingredient2") { 25 | console.error("createRecipe function returned incorrect value:", result); 26 | process.exit(1); 27 | } 28 | } catch (error) { 29 | console.error("createRecipe function threw an error:", error); 30 | process.exit(1); 31 | } 32 | } 33 | 34 | // Check that the setTimer function exists and works correctly 35 | if (typeof recipes.setTimer !== "function") { 36 | console.error("setTimer function is missing or not a function"); 37 | process.exit(1); 38 | } else { 39 | try { 40 | const result = recipes.setTimer(15); 41 | if (result !== "Timer set for 15 minutes") { 42 | console.error("setTimer function returned incorrect value:", result); 43 | process.exit(1); 44 | } 45 | } catch (error) { 46 | console.error("setTimer function threw an error:", error); 47 | process.exit(1); 48 | } 49 | } 50 | 51 | // Check that the quit function exists and works correctly 52 | if (typeof recipes.quit !== "function") { 53 | console.error("quit function is missing or not a function"); 54 | process.exit(1); 55 | } else { 56 | try { 57 | const result = recipes.quit(); 58 | if (result !== "Program exited") { 59 | console.error("quit function returned incorrect value:", result); 60 | process.exit(1); 61 | } 62 | } catch (error) { 63 | console.error("quit function threw an error:", error); 64 | process.exit(1); 65 | } 66 | } 67 | 68 | // Check the package.json file for the required scripts 69 | let packageJson; 70 | try { 71 | packageJson = require("./package.json"); 72 | } catch (error) { 73 | console.error("Failed to import package.json. Make sure it exists and is valid JSON."); 74 | process.exit(1); 75 | } 76 | 77 | if (!packageJson.scripts || packageJson.scripts.start !== "node index.js" || packageJson.scripts.test !== "node tester.js") { 78 | console.error("package.json is missing the required scripts or they have incorrect values. Make sure you have a 'start' script with the value 'node index.js' and a 'test' script with the value 'node tester.js'."); 79 | process.exit(1); 80 | } 81 | 82 | console.log("All tests passed!"); -------------------------------------------------------------------------------- /week-3/distance-calculator/src/distance-calculator.js: -------------------------------------------------------------------------------- 1 | function calculateDistance(planet1, planet2) { 2 | // TODO: Implement this function 3 | } 4 | 5 | module.exports = calculateDistance; -------------------------------------------------------------------------------- /week-3/distance-calculator/test/distance-calculator.spec.js: -------------------------------------------------------------------------------- 1 | const assert = require('assert'); 2 | const calculateDistance = require('../src/distance-calculator'); 3 | 4 | function testFunctionDescription() { 5 | // TODO: Implement this function 6 | } 7 | 8 | // Call your test functions here -------------------------------------------------------------------------------- /week-4/taco-stand-app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "taco-stand-app", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC" 15 | } 16 | -------------------------------------------------------------------------------- /week-4/taco-stand-app/src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | "use strict"; 9 | 10 | const readline = require("readline"); 11 | const TacoStandEmitter = require("./tacoStand"); 12 | 13 | const tacoStand = new TacoStandEmitter(); 14 | 15 | const rl = readline.createInterface({ 16 | input: process.stdin, 17 | output: process.stdout 18 | }); 19 | 20 | // TODO: Set up event listeners for the tacoStand object 21 | rl.on("line", (input) => { 22 | const [command, ...args] = input.split(" "); 23 | 24 | // TODO: Handle the commands 25 | }); 26 | 27 | console.log(`Enter a command: "serve", "prepare", or "rush", followed by a space and the argument.`); -------------------------------------------------------------------------------- /week-4/taco-stand-app/src/taco-stand.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | const EventEmitter = require("events"); 9 | 10 | // TODO: Create a TacoStandEmitter class that extends EventEmitter and implements the following methods: serveCustomer, prepareTaco, and handleRush -------------------------------------------------------------------------------- /week-4/taco-stand-app/test/taco-stand.spec.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | "use strict"; 9 | 10 | const assert = require("assert"); 11 | const TacoStandEmitter = require("../src/tacoStand"); 12 | const tacoStand = new TacoStandEmitter(); 13 | 14 | // TODO: Write tests for the TacoStandEmitter methods -------------------------------------------------------------------------------- /week-5/pie-baker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pie-baker", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC" 15 | } 16 | -------------------------------------------------------------------------------- /week-5/pie-baker/src/pie.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | "use strict"; 8 | 9 | function bakePie(pieType, ingredients) { 10 | // Your code here 11 | } 12 | 13 | module.exports = { bakePie }; -------------------------------------------------------------------------------- /week-5/pie-baker/test/pie.spec.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: 3 | * Date: 4 | * File Name: 5 | * Description: 6 | */ 7 | 8 | "use strict"; 9 | 10 | const { bakePie } = require("../src/pie"); 11 | 12 | // Your tests here -------------------------------------------------------------------------------- /week-6/fantasy-game-character-creation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-340/5e955ef645f29c2457fa27130ab418375b67d1e0/week-6/fantasy-game-character-creation/.DS_Store -------------------------------------------------------------------------------- /week-6/fantasy-game-character-creation/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": ["jest"] 4 | } 5 | } -------------------------------------------------------------------------------- /week-6/fantasy-game-character-creation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fantasy-game-character-creation", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "devDependencies": { 16 | "@types/jest": "^29.5.11", 17 | "jest": "^29.7.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /week-6/fantasy-game-character-creation/src/server.js: -------------------------------------------------------------------------------- 1 | const http = require('http'); 2 | const url = require('url'); 3 | 4 | // TODO: Implement your server here 5 | 6 | const server = http.createServer((req, res) => { 7 | // TODO: Implement your routes here 8 | }); 9 | 10 | server.listen(3000, () => { 11 | console.log('Server listening on port 3000'); 12 | }); 13 | 14 | module.exports = server; -------------------------------------------------------------------------------- /week-6/fantasy-game-character-creation/test/server.spec.js: -------------------------------------------------------------------------------- 1 | const http = require('http'); 2 | const server = require('../src/server'); 3 | 4 | // TODO: Implement your tests here -------------------------------------------------------------------------------- /week-7/fantasy-character-creation-stream/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": ["jest"] 4 | } 5 | } -------------------------------------------------------------------------------- /week-7/fantasy-character-creation-stream/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fantasy-character-creation-stream", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "fantasy-character-creation-stream", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "devDependencies": { 12 | "@types/jest": "^29.5.11", 13 | "jest": "^29.7.0" 14 | } 15 | }, 16 | "node_modules/@ampproject/remapping": { 17 | "version": "2.2.1", 18 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", 19 | "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", 20 | "dev": true, 21 | "dependencies": { 22 | "@jridgewell/gen-mapping": "^0.3.0", 23 | "@jridgewell/trace-mapping": "^0.3.9" 24 | }, 25 | "engines": { 26 | "node": ">=6.0.0" 27 | } 28 | }, 29 | "node_modules/@babel/code-frame": { 30 | "version": "7.23.5", 31 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", 32 | "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", 33 | "dev": true, 34 | "dependencies": { 35 | "@babel/highlight": "^7.23.4", 36 | "chalk": "^2.4.2" 37 | }, 38 | "engines": { 39 | "node": ">=6.9.0" 40 | } 41 | }, 42 | "node_modules/@babel/code-frame/node_modules/ansi-styles": { 43 | "version": "3.2.1", 44 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 45 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 46 | "dev": true, 47 | "dependencies": { 48 | "color-convert": "^1.9.0" 49 | }, 50 | "engines": { 51 | "node": ">=4" 52 | } 53 | }, 54 | "node_modules/@babel/code-frame/node_modules/chalk": { 55 | "version": "2.4.2", 56 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 57 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 58 | "dev": true, 59 | "dependencies": { 60 | "ansi-styles": "^3.2.1", 61 | "escape-string-regexp": "^1.0.5", 62 | "supports-color": "^5.3.0" 63 | }, 64 | "engines": { 65 | "node": ">=4" 66 | } 67 | }, 68 | "node_modules/@babel/code-frame/node_modules/color-convert": { 69 | "version": "1.9.3", 70 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 71 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 72 | "dev": true, 73 | "dependencies": { 74 | "color-name": "1.1.3" 75 | } 76 | }, 77 | "node_modules/@babel/code-frame/node_modules/color-name": { 78 | "version": "1.1.3", 79 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 80 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 81 | "dev": true 82 | }, 83 | "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { 84 | "version": "1.0.5", 85 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 86 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 87 | "dev": true, 88 | "engines": { 89 | "node": ">=0.8.0" 90 | } 91 | }, 92 | "node_modules/@babel/code-frame/node_modules/has-flag": { 93 | "version": "3.0.0", 94 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 95 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 96 | "dev": true, 97 | "engines": { 98 | "node": ">=4" 99 | } 100 | }, 101 | "node_modules/@babel/code-frame/node_modules/supports-color": { 102 | "version": "5.5.0", 103 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 104 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 105 | "dev": true, 106 | "dependencies": { 107 | "has-flag": "^3.0.0" 108 | }, 109 | "engines": { 110 | "node": ">=4" 111 | } 112 | }, 113 | "node_modules/@babel/compat-data": { 114 | "version": "7.23.5", 115 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", 116 | "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", 117 | "dev": true, 118 | "engines": { 119 | "node": ">=6.9.0" 120 | } 121 | }, 122 | "node_modules/@babel/core": { 123 | "version": "7.23.7", 124 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz", 125 | "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==", 126 | "dev": true, 127 | "dependencies": { 128 | "@ampproject/remapping": "^2.2.0", 129 | "@babel/code-frame": "^7.23.5", 130 | "@babel/generator": "^7.23.6", 131 | "@babel/helper-compilation-targets": "^7.23.6", 132 | "@babel/helper-module-transforms": "^7.23.3", 133 | "@babel/helpers": "^7.23.7", 134 | "@babel/parser": "^7.23.6", 135 | "@babel/template": "^7.22.15", 136 | "@babel/traverse": "^7.23.7", 137 | "@babel/types": "^7.23.6", 138 | "convert-source-map": "^2.0.0", 139 | "debug": "^4.1.0", 140 | "gensync": "^1.0.0-beta.2", 141 | "json5": "^2.2.3", 142 | "semver": "^6.3.1" 143 | }, 144 | "engines": { 145 | "node": ">=6.9.0" 146 | }, 147 | "funding": { 148 | "type": "opencollective", 149 | "url": "https://opencollective.com/babel" 150 | } 151 | }, 152 | "node_modules/@babel/generator": { 153 | "version": "7.23.6", 154 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", 155 | "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", 156 | "dev": true, 157 | "dependencies": { 158 | "@babel/types": "^7.23.6", 159 | "@jridgewell/gen-mapping": "^0.3.2", 160 | "@jridgewell/trace-mapping": "^0.3.17", 161 | "jsesc": "^2.5.1" 162 | }, 163 | "engines": { 164 | "node": ">=6.9.0" 165 | } 166 | }, 167 | "node_modules/@babel/helper-compilation-targets": { 168 | "version": "7.23.6", 169 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", 170 | "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", 171 | "dev": true, 172 | "dependencies": { 173 | "@babel/compat-data": "^7.23.5", 174 | "@babel/helper-validator-option": "^7.23.5", 175 | "browserslist": "^4.22.2", 176 | "lru-cache": "^5.1.1", 177 | "semver": "^6.3.1" 178 | }, 179 | "engines": { 180 | "node": ">=6.9.0" 181 | } 182 | }, 183 | "node_modules/@babel/helper-environment-visitor": { 184 | "version": "7.22.20", 185 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", 186 | "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", 187 | "dev": true, 188 | "engines": { 189 | "node": ">=6.9.0" 190 | } 191 | }, 192 | "node_modules/@babel/helper-function-name": { 193 | "version": "7.23.0", 194 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", 195 | "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", 196 | "dev": true, 197 | "dependencies": { 198 | "@babel/template": "^7.22.15", 199 | "@babel/types": "^7.23.0" 200 | }, 201 | "engines": { 202 | "node": ">=6.9.0" 203 | } 204 | }, 205 | "node_modules/@babel/helper-hoist-variables": { 206 | "version": "7.22.5", 207 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", 208 | "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", 209 | "dev": true, 210 | "dependencies": { 211 | "@babel/types": "^7.22.5" 212 | }, 213 | "engines": { 214 | "node": ">=6.9.0" 215 | } 216 | }, 217 | "node_modules/@babel/helper-module-imports": { 218 | "version": "7.22.15", 219 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", 220 | "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", 221 | "dev": true, 222 | "dependencies": { 223 | "@babel/types": "^7.22.15" 224 | }, 225 | "engines": { 226 | "node": ">=6.9.0" 227 | } 228 | }, 229 | "node_modules/@babel/helper-module-transforms": { 230 | "version": "7.23.3", 231 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", 232 | "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", 233 | "dev": true, 234 | "dependencies": { 235 | "@babel/helper-environment-visitor": "^7.22.20", 236 | "@babel/helper-module-imports": "^7.22.15", 237 | "@babel/helper-simple-access": "^7.22.5", 238 | "@babel/helper-split-export-declaration": "^7.22.6", 239 | "@babel/helper-validator-identifier": "^7.22.20" 240 | }, 241 | "engines": { 242 | "node": ">=6.9.0" 243 | }, 244 | "peerDependencies": { 245 | "@babel/core": "^7.0.0" 246 | } 247 | }, 248 | "node_modules/@babel/helper-plugin-utils": { 249 | "version": "7.22.5", 250 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", 251 | "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", 252 | "dev": true, 253 | "engines": { 254 | "node": ">=6.9.0" 255 | } 256 | }, 257 | "node_modules/@babel/helper-simple-access": { 258 | "version": "7.22.5", 259 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", 260 | "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", 261 | "dev": true, 262 | "dependencies": { 263 | "@babel/types": "^7.22.5" 264 | }, 265 | "engines": { 266 | "node": ">=6.9.0" 267 | } 268 | }, 269 | "node_modules/@babel/helper-split-export-declaration": { 270 | "version": "7.22.6", 271 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", 272 | "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", 273 | "dev": true, 274 | "dependencies": { 275 | "@babel/types": "^7.22.5" 276 | }, 277 | "engines": { 278 | "node": ">=6.9.0" 279 | } 280 | }, 281 | "node_modules/@babel/helper-string-parser": { 282 | "version": "7.23.4", 283 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", 284 | "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", 285 | "dev": true, 286 | "engines": { 287 | "node": ">=6.9.0" 288 | } 289 | }, 290 | "node_modules/@babel/helper-validator-identifier": { 291 | "version": "7.22.20", 292 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", 293 | "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", 294 | "dev": true, 295 | "engines": { 296 | "node": ">=6.9.0" 297 | } 298 | }, 299 | "node_modules/@babel/helper-validator-option": { 300 | "version": "7.23.5", 301 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", 302 | "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", 303 | "dev": true, 304 | "engines": { 305 | "node": ">=6.9.0" 306 | } 307 | }, 308 | "node_modules/@babel/helpers": { 309 | "version": "7.23.8", 310 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.8.tgz", 311 | "integrity": "sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==", 312 | "dev": true, 313 | "dependencies": { 314 | "@babel/template": "^7.22.15", 315 | "@babel/traverse": "^7.23.7", 316 | "@babel/types": "^7.23.6" 317 | }, 318 | "engines": { 319 | "node": ">=6.9.0" 320 | } 321 | }, 322 | "node_modules/@babel/highlight": { 323 | "version": "7.23.4", 324 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", 325 | "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", 326 | "dev": true, 327 | "dependencies": { 328 | "@babel/helper-validator-identifier": "^7.22.20", 329 | "chalk": "^2.4.2", 330 | "js-tokens": "^4.0.0" 331 | }, 332 | "engines": { 333 | "node": ">=6.9.0" 334 | } 335 | }, 336 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 337 | "version": "3.2.1", 338 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 339 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 340 | "dev": true, 341 | "dependencies": { 342 | "color-convert": "^1.9.0" 343 | }, 344 | "engines": { 345 | "node": ">=4" 346 | } 347 | }, 348 | "node_modules/@babel/highlight/node_modules/chalk": { 349 | "version": "2.4.2", 350 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 351 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 352 | "dev": true, 353 | "dependencies": { 354 | "ansi-styles": "^3.2.1", 355 | "escape-string-regexp": "^1.0.5", 356 | "supports-color": "^5.3.0" 357 | }, 358 | "engines": { 359 | "node": ">=4" 360 | } 361 | }, 362 | "node_modules/@babel/highlight/node_modules/color-convert": { 363 | "version": "1.9.3", 364 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 365 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 366 | "dev": true, 367 | "dependencies": { 368 | "color-name": "1.1.3" 369 | } 370 | }, 371 | "node_modules/@babel/highlight/node_modules/color-name": { 372 | "version": "1.1.3", 373 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 374 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 375 | "dev": true 376 | }, 377 | "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 378 | "version": "1.0.5", 379 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 380 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 381 | "dev": true, 382 | "engines": { 383 | "node": ">=0.8.0" 384 | } 385 | }, 386 | "node_modules/@babel/highlight/node_modules/has-flag": { 387 | "version": "3.0.0", 388 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 389 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 390 | "dev": true, 391 | "engines": { 392 | "node": ">=4" 393 | } 394 | }, 395 | "node_modules/@babel/highlight/node_modules/supports-color": { 396 | "version": "5.5.0", 397 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 398 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 399 | "dev": true, 400 | "dependencies": { 401 | "has-flag": "^3.0.0" 402 | }, 403 | "engines": { 404 | "node": ">=4" 405 | } 406 | }, 407 | "node_modules/@babel/parser": { 408 | "version": "7.23.6", 409 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", 410 | "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", 411 | "dev": true, 412 | "bin": { 413 | "parser": "bin/babel-parser.js" 414 | }, 415 | "engines": { 416 | "node": ">=6.0.0" 417 | } 418 | }, 419 | "node_modules/@babel/plugin-syntax-async-generators": { 420 | "version": "7.8.4", 421 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 422 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 423 | "dev": true, 424 | "dependencies": { 425 | "@babel/helper-plugin-utils": "^7.8.0" 426 | }, 427 | "peerDependencies": { 428 | "@babel/core": "^7.0.0-0" 429 | } 430 | }, 431 | "node_modules/@babel/plugin-syntax-bigint": { 432 | "version": "7.8.3", 433 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 434 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 435 | "dev": true, 436 | "dependencies": { 437 | "@babel/helper-plugin-utils": "^7.8.0" 438 | }, 439 | "peerDependencies": { 440 | "@babel/core": "^7.0.0-0" 441 | } 442 | }, 443 | "node_modules/@babel/plugin-syntax-class-properties": { 444 | "version": "7.12.13", 445 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 446 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 447 | "dev": true, 448 | "dependencies": { 449 | "@babel/helper-plugin-utils": "^7.12.13" 450 | }, 451 | "peerDependencies": { 452 | "@babel/core": "^7.0.0-0" 453 | } 454 | }, 455 | "node_modules/@babel/plugin-syntax-import-meta": { 456 | "version": "7.10.4", 457 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 458 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 459 | "dev": true, 460 | "dependencies": { 461 | "@babel/helper-plugin-utils": "^7.10.4" 462 | }, 463 | "peerDependencies": { 464 | "@babel/core": "^7.0.0-0" 465 | } 466 | }, 467 | "node_modules/@babel/plugin-syntax-json-strings": { 468 | "version": "7.8.3", 469 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 470 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 471 | "dev": true, 472 | "dependencies": { 473 | "@babel/helper-plugin-utils": "^7.8.0" 474 | }, 475 | "peerDependencies": { 476 | "@babel/core": "^7.0.0-0" 477 | } 478 | }, 479 | "node_modules/@babel/plugin-syntax-jsx": { 480 | "version": "7.23.3", 481 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", 482 | "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", 483 | "dev": true, 484 | "dependencies": { 485 | "@babel/helper-plugin-utils": "^7.22.5" 486 | }, 487 | "engines": { 488 | "node": ">=6.9.0" 489 | }, 490 | "peerDependencies": { 491 | "@babel/core": "^7.0.0-0" 492 | } 493 | }, 494 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 495 | "version": "7.10.4", 496 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 497 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 498 | "dev": true, 499 | "dependencies": { 500 | "@babel/helper-plugin-utils": "^7.10.4" 501 | }, 502 | "peerDependencies": { 503 | "@babel/core": "^7.0.0-0" 504 | } 505 | }, 506 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 507 | "version": "7.8.3", 508 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 509 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 510 | "dev": true, 511 | "dependencies": { 512 | "@babel/helper-plugin-utils": "^7.8.0" 513 | }, 514 | "peerDependencies": { 515 | "@babel/core": "^7.0.0-0" 516 | } 517 | }, 518 | "node_modules/@babel/plugin-syntax-numeric-separator": { 519 | "version": "7.10.4", 520 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 521 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 522 | "dev": true, 523 | "dependencies": { 524 | "@babel/helper-plugin-utils": "^7.10.4" 525 | }, 526 | "peerDependencies": { 527 | "@babel/core": "^7.0.0-0" 528 | } 529 | }, 530 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 531 | "version": "7.8.3", 532 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 533 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 534 | "dev": true, 535 | "dependencies": { 536 | "@babel/helper-plugin-utils": "^7.8.0" 537 | }, 538 | "peerDependencies": { 539 | "@babel/core": "^7.0.0-0" 540 | } 541 | }, 542 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 543 | "version": "7.8.3", 544 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 545 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 546 | "dev": true, 547 | "dependencies": { 548 | "@babel/helper-plugin-utils": "^7.8.0" 549 | }, 550 | "peerDependencies": { 551 | "@babel/core": "^7.0.0-0" 552 | } 553 | }, 554 | "node_modules/@babel/plugin-syntax-optional-chaining": { 555 | "version": "7.8.3", 556 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 557 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 558 | "dev": true, 559 | "dependencies": { 560 | "@babel/helper-plugin-utils": "^7.8.0" 561 | }, 562 | "peerDependencies": { 563 | "@babel/core": "^7.0.0-0" 564 | } 565 | }, 566 | "node_modules/@babel/plugin-syntax-top-level-await": { 567 | "version": "7.14.5", 568 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 569 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 570 | "dev": true, 571 | "dependencies": { 572 | "@babel/helper-plugin-utils": "^7.14.5" 573 | }, 574 | "engines": { 575 | "node": ">=6.9.0" 576 | }, 577 | "peerDependencies": { 578 | "@babel/core": "^7.0.0-0" 579 | } 580 | }, 581 | "node_modules/@babel/plugin-syntax-typescript": { 582 | "version": "7.23.3", 583 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", 584 | "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", 585 | "dev": true, 586 | "dependencies": { 587 | "@babel/helper-plugin-utils": "^7.22.5" 588 | }, 589 | "engines": { 590 | "node": ">=6.9.0" 591 | }, 592 | "peerDependencies": { 593 | "@babel/core": "^7.0.0-0" 594 | } 595 | }, 596 | "node_modules/@babel/template": { 597 | "version": "7.22.15", 598 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", 599 | "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", 600 | "dev": true, 601 | "dependencies": { 602 | "@babel/code-frame": "^7.22.13", 603 | "@babel/parser": "^7.22.15", 604 | "@babel/types": "^7.22.15" 605 | }, 606 | "engines": { 607 | "node": ">=6.9.0" 608 | } 609 | }, 610 | "node_modules/@babel/traverse": { 611 | "version": "7.23.7", 612 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", 613 | "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", 614 | "dev": true, 615 | "dependencies": { 616 | "@babel/code-frame": "^7.23.5", 617 | "@babel/generator": "^7.23.6", 618 | "@babel/helper-environment-visitor": "^7.22.20", 619 | "@babel/helper-function-name": "^7.23.0", 620 | "@babel/helper-hoist-variables": "^7.22.5", 621 | "@babel/helper-split-export-declaration": "^7.22.6", 622 | "@babel/parser": "^7.23.6", 623 | "@babel/types": "^7.23.6", 624 | "debug": "^4.3.1", 625 | "globals": "^11.1.0" 626 | }, 627 | "engines": { 628 | "node": ">=6.9.0" 629 | } 630 | }, 631 | "node_modules/@babel/types": { 632 | "version": "7.23.6", 633 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", 634 | "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", 635 | "dev": true, 636 | "dependencies": { 637 | "@babel/helper-string-parser": "^7.23.4", 638 | "@babel/helper-validator-identifier": "^7.22.20", 639 | "to-fast-properties": "^2.0.0" 640 | }, 641 | "engines": { 642 | "node": ">=6.9.0" 643 | } 644 | }, 645 | "node_modules/@bcoe/v8-coverage": { 646 | "version": "0.2.3", 647 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 648 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 649 | "dev": true 650 | }, 651 | "node_modules/@istanbuljs/load-nyc-config": { 652 | "version": "1.1.0", 653 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 654 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 655 | "dev": true, 656 | "dependencies": { 657 | "camelcase": "^5.3.1", 658 | "find-up": "^4.1.0", 659 | "get-package-type": "^0.1.0", 660 | "js-yaml": "^3.13.1", 661 | "resolve-from": "^5.0.0" 662 | }, 663 | "engines": { 664 | "node": ">=8" 665 | } 666 | }, 667 | "node_modules/@istanbuljs/schema": { 668 | "version": "0.1.3", 669 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 670 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 671 | "dev": true, 672 | "engines": { 673 | "node": ">=8" 674 | } 675 | }, 676 | "node_modules/@jest/console": { 677 | "version": "29.7.0", 678 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 679 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 680 | "dev": true, 681 | "dependencies": { 682 | "@jest/types": "^29.6.3", 683 | "@types/node": "*", 684 | "chalk": "^4.0.0", 685 | "jest-message-util": "^29.7.0", 686 | "jest-util": "^29.7.0", 687 | "slash": "^3.0.0" 688 | }, 689 | "engines": { 690 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 691 | } 692 | }, 693 | "node_modules/@jest/core": { 694 | "version": "29.7.0", 695 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 696 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 697 | "dev": true, 698 | "dependencies": { 699 | "@jest/console": "^29.7.0", 700 | "@jest/reporters": "^29.7.0", 701 | "@jest/test-result": "^29.7.0", 702 | "@jest/transform": "^29.7.0", 703 | "@jest/types": "^29.6.3", 704 | "@types/node": "*", 705 | "ansi-escapes": "^4.2.1", 706 | "chalk": "^4.0.0", 707 | "ci-info": "^3.2.0", 708 | "exit": "^0.1.2", 709 | "graceful-fs": "^4.2.9", 710 | "jest-changed-files": "^29.7.0", 711 | "jest-config": "^29.7.0", 712 | "jest-haste-map": "^29.7.0", 713 | "jest-message-util": "^29.7.0", 714 | "jest-regex-util": "^29.6.3", 715 | "jest-resolve": "^29.7.0", 716 | "jest-resolve-dependencies": "^29.7.0", 717 | "jest-runner": "^29.7.0", 718 | "jest-runtime": "^29.7.0", 719 | "jest-snapshot": "^29.7.0", 720 | "jest-util": "^29.7.0", 721 | "jest-validate": "^29.7.0", 722 | "jest-watcher": "^29.7.0", 723 | "micromatch": "^4.0.4", 724 | "pretty-format": "^29.7.0", 725 | "slash": "^3.0.0", 726 | "strip-ansi": "^6.0.0" 727 | }, 728 | "engines": { 729 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 730 | }, 731 | "peerDependencies": { 732 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 733 | }, 734 | "peerDependenciesMeta": { 735 | "node-notifier": { 736 | "optional": true 737 | } 738 | } 739 | }, 740 | "node_modules/@jest/environment": { 741 | "version": "29.7.0", 742 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 743 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 744 | "dev": true, 745 | "dependencies": { 746 | "@jest/fake-timers": "^29.7.0", 747 | "@jest/types": "^29.6.3", 748 | "@types/node": "*", 749 | "jest-mock": "^29.7.0" 750 | }, 751 | "engines": { 752 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 753 | } 754 | }, 755 | "node_modules/@jest/expect": { 756 | "version": "29.7.0", 757 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 758 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 759 | "dev": true, 760 | "dependencies": { 761 | "expect": "^29.7.0", 762 | "jest-snapshot": "^29.7.0" 763 | }, 764 | "engines": { 765 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 766 | } 767 | }, 768 | "node_modules/@jest/expect-utils": { 769 | "version": "29.7.0", 770 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 771 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 772 | "dev": true, 773 | "dependencies": { 774 | "jest-get-type": "^29.6.3" 775 | }, 776 | "engines": { 777 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 778 | } 779 | }, 780 | "node_modules/@jest/fake-timers": { 781 | "version": "29.7.0", 782 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 783 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 784 | "dev": true, 785 | "dependencies": { 786 | "@jest/types": "^29.6.3", 787 | "@sinonjs/fake-timers": "^10.0.2", 788 | "@types/node": "*", 789 | "jest-message-util": "^29.7.0", 790 | "jest-mock": "^29.7.0", 791 | "jest-util": "^29.7.0" 792 | }, 793 | "engines": { 794 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 795 | } 796 | }, 797 | "node_modules/@jest/globals": { 798 | "version": "29.7.0", 799 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 800 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 801 | "dev": true, 802 | "dependencies": { 803 | "@jest/environment": "^29.7.0", 804 | "@jest/expect": "^29.7.0", 805 | "@jest/types": "^29.6.3", 806 | "jest-mock": "^29.7.0" 807 | }, 808 | "engines": { 809 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 810 | } 811 | }, 812 | "node_modules/@jest/reporters": { 813 | "version": "29.7.0", 814 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 815 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 816 | "dev": true, 817 | "dependencies": { 818 | "@bcoe/v8-coverage": "^0.2.3", 819 | "@jest/console": "^29.7.0", 820 | "@jest/test-result": "^29.7.0", 821 | "@jest/transform": "^29.7.0", 822 | "@jest/types": "^29.6.3", 823 | "@jridgewell/trace-mapping": "^0.3.18", 824 | "@types/node": "*", 825 | "chalk": "^4.0.0", 826 | "collect-v8-coverage": "^1.0.0", 827 | "exit": "^0.1.2", 828 | "glob": "^7.1.3", 829 | "graceful-fs": "^4.2.9", 830 | "istanbul-lib-coverage": "^3.0.0", 831 | "istanbul-lib-instrument": "^6.0.0", 832 | "istanbul-lib-report": "^3.0.0", 833 | "istanbul-lib-source-maps": "^4.0.0", 834 | "istanbul-reports": "^3.1.3", 835 | "jest-message-util": "^29.7.0", 836 | "jest-util": "^29.7.0", 837 | "jest-worker": "^29.7.0", 838 | "slash": "^3.0.0", 839 | "string-length": "^4.0.1", 840 | "strip-ansi": "^6.0.0", 841 | "v8-to-istanbul": "^9.0.1" 842 | }, 843 | "engines": { 844 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 845 | }, 846 | "peerDependencies": { 847 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 848 | }, 849 | "peerDependenciesMeta": { 850 | "node-notifier": { 851 | "optional": true 852 | } 853 | } 854 | }, 855 | "node_modules/@jest/schemas": { 856 | "version": "29.6.3", 857 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 858 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 859 | "dev": true, 860 | "dependencies": { 861 | "@sinclair/typebox": "^0.27.8" 862 | }, 863 | "engines": { 864 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 865 | } 866 | }, 867 | "node_modules/@jest/source-map": { 868 | "version": "29.6.3", 869 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 870 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 871 | "dev": true, 872 | "dependencies": { 873 | "@jridgewell/trace-mapping": "^0.3.18", 874 | "callsites": "^3.0.0", 875 | "graceful-fs": "^4.2.9" 876 | }, 877 | "engines": { 878 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 879 | } 880 | }, 881 | "node_modules/@jest/test-result": { 882 | "version": "29.7.0", 883 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 884 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 885 | "dev": true, 886 | "dependencies": { 887 | "@jest/console": "^29.7.0", 888 | "@jest/types": "^29.6.3", 889 | "@types/istanbul-lib-coverage": "^2.0.0", 890 | "collect-v8-coverage": "^1.0.0" 891 | }, 892 | "engines": { 893 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 894 | } 895 | }, 896 | "node_modules/@jest/test-sequencer": { 897 | "version": "29.7.0", 898 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 899 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 900 | "dev": true, 901 | "dependencies": { 902 | "@jest/test-result": "^29.7.0", 903 | "graceful-fs": "^4.2.9", 904 | "jest-haste-map": "^29.7.0", 905 | "slash": "^3.0.0" 906 | }, 907 | "engines": { 908 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 909 | } 910 | }, 911 | "node_modules/@jest/transform": { 912 | "version": "29.7.0", 913 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 914 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 915 | "dev": true, 916 | "dependencies": { 917 | "@babel/core": "^7.11.6", 918 | "@jest/types": "^29.6.3", 919 | "@jridgewell/trace-mapping": "^0.3.18", 920 | "babel-plugin-istanbul": "^6.1.1", 921 | "chalk": "^4.0.0", 922 | "convert-source-map": "^2.0.0", 923 | "fast-json-stable-stringify": "^2.1.0", 924 | "graceful-fs": "^4.2.9", 925 | "jest-haste-map": "^29.7.0", 926 | "jest-regex-util": "^29.6.3", 927 | "jest-util": "^29.7.0", 928 | "micromatch": "^4.0.4", 929 | "pirates": "^4.0.4", 930 | "slash": "^3.0.0", 931 | "write-file-atomic": "^4.0.2" 932 | }, 933 | "engines": { 934 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 935 | } 936 | }, 937 | "node_modules/@jest/types": { 938 | "version": "29.6.3", 939 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 940 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 941 | "dev": true, 942 | "dependencies": { 943 | "@jest/schemas": "^29.6.3", 944 | "@types/istanbul-lib-coverage": "^2.0.0", 945 | "@types/istanbul-reports": "^3.0.0", 946 | "@types/node": "*", 947 | "@types/yargs": "^17.0.8", 948 | "chalk": "^4.0.0" 949 | }, 950 | "engines": { 951 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 952 | } 953 | }, 954 | "node_modules/@jridgewell/gen-mapping": { 955 | "version": "0.3.3", 956 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 957 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 958 | "dev": true, 959 | "dependencies": { 960 | "@jridgewell/set-array": "^1.0.1", 961 | "@jridgewell/sourcemap-codec": "^1.4.10", 962 | "@jridgewell/trace-mapping": "^0.3.9" 963 | }, 964 | "engines": { 965 | "node": ">=6.0.0" 966 | } 967 | }, 968 | "node_modules/@jridgewell/resolve-uri": { 969 | "version": "3.1.1", 970 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", 971 | "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", 972 | "dev": true, 973 | "engines": { 974 | "node": ">=6.0.0" 975 | } 976 | }, 977 | "node_modules/@jridgewell/set-array": { 978 | "version": "1.1.2", 979 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 980 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 981 | "dev": true, 982 | "engines": { 983 | "node": ">=6.0.0" 984 | } 985 | }, 986 | "node_modules/@jridgewell/sourcemap-codec": { 987 | "version": "1.4.15", 988 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 989 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 990 | "dev": true 991 | }, 992 | "node_modules/@jridgewell/trace-mapping": { 993 | "version": "0.3.21", 994 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz", 995 | "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==", 996 | "dev": true, 997 | "dependencies": { 998 | "@jridgewell/resolve-uri": "^3.1.0", 999 | "@jridgewell/sourcemap-codec": "^1.4.14" 1000 | } 1001 | }, 1002 | "node_modules/@sinclair/typebox": { 1003 | "version": "0.27.8", 1004 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 1005 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 1006 | "dev": true 1007 | }, 1008 | "node_modules/@sinonjs/commons": { 1009 | "version": "3.0.0", 1010 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", 1011 | "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", 1012 | "dev": true, 1013 | "dependencies": { 1014 | "type-detect": "4.0.8" 1015 | } 1016 | }, 1017 | "node_modules/@sinonjs/fake-timers": { 1018 | "version": "10.3.0", 1019 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 1020 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 1021 | "dev": true, 1022 | "dependencies": { 1023 | "@sinonjs/commons": "^3.0.0" 1024 | } 1025 | }, 1026 | "node_modules/@types/babel__core": { 1027 | "version": "7.20.5", 1028 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1029 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1030 | "dev": true, 1031 | "dependencies": { 1032 | "@babel/parser": "^7.20.7", 1033 | "@babel/types": "^7.20.7", 1034 | "@types/babel__generator": "*", 1035 | "@types/babel__template": "*", 1036 | "@types/babel__traverse": "*" 1037 | } 1038 | }, 1039 | "node_modules/@types/babel__generator": { 1040 | "version": "7.6.8", 1041 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1042 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1043 | "dev": true, 1044 | "dependencies": { 1045 | "@babel/types": "^7.0.0" 1046 | } 1047 | }, 1048 | "node_modules/@types/babel__template": { 1049 | "version": "7.4.4", 1050 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1051 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1052 | "dev": true, 1053 | "dependencies": { 1054 | "@babel/parser": "^7.1.0", 1055 | "@babel/types": "^7.0.0" 1056 | } 1057 | }, 1058 | "node_modules/@types/babel__traverse": { 1059 | "version": "7.20.5", 1060 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", 1061 | "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", 1062 | "dev": true, 1063 | "dependencies": { 1064 | "@babel/types": "^7.20.7" 1065 | } 1066 | }, 1067 | "node_modules/@types/graceful-fs": { 1068 | "version": "4.1.9", 1069 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 1070 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 1071 | "dev": true, 1072 | "dependencies": { 1073 | "@types/node": "*" 1074 | } 1075 | }, 1076 | "node_modules/@types/istanbul-lib-coverage": { 1077 | "version": "2.0.6", 1078 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 1079 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 1080 | "dev": true 1081 | }, 1082 | "node_modules/@types/istanbul-lib-report": { 1083 | "version": "3.0.3", 1084 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 1085 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 1086 | "dev": true, 1087 | "dependencies": { 1088 | "@types/istanbul-lib-coverage": "*" 1089 | } 1090 | }, 1091 | "node_modules/@types/istanbul-reports": { 1092 | "version": "3.0.4", 1093 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 1094 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 1095 | "dev": true, 1096 | "dependencies": { 1097 | "@types/istanbul-lib-report": "*" 1098 | } 1099 | }, 1100 | "node_modules/@types/jest": { 1101 | "version": "29.5.11", 1102 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz", 1103 | "integrity": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==", 1104 | "dev": true, 1105 | "dependencies": { 1106 | "expect": "^29.0.0", 1107 | "pretty-format": "^29.0.0" 1108 | } 1109 | }, 1110 | "node_modules/@types/node": { 1111 | "version": "20.11.5", 1112 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", 1113 | "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", 1114 | "dev": true, 1115 | "dependencies": { 1116 | "undici-types": "~5.26.4" 1117 | } 1118 | }, 1119 | "node_modules/@types/stack-utils": { 1120 | "version": "2.0.3", 1121 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1122 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1123 | "dev": true 1124 | }, 1125 | "node_modules/@types/yargs": { 1126 | "version": "17.0.32", 1127 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", 1128 | "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", 1129 | "dev": true, 1130 | "dependencies": { 1131 | "@types/yargs-parser": "*" 1132 | } 1133 | }, 1134 | "node_modules/@types/yargs-parser": { 1135 | "version": "21.0.3", 1136 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1137 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1138 | "dev": true 1139 | }, 1140 | "node_modules/ansi-escapes": { 1141 | "version": "4.3.2", 1142 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1143 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1144 | "dev": true, 1145 | "dependencies": { 1146 | "type-fest": "^0.21.3" 1147 | }, 1148 | "engines": { 1149 | "node": ">=8" 1150 | }, 1151 | "funding": { 1152 | "url": "https://github.com/sponsors/sindresorhus" 1153 | } 1154 | }, 1155 | "node_modules/ansi-regex": { 1156 | "version": "5.0.1", 1157 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1158 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1159 | "dev": true, 1160 | "engines": { 1161 | "node": ">=8" 1162 | } 1163 | }, 1164 | "node_modules/ansi-styles": { 1165 | "version": "4.3.0", 1166 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1167 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1168 | "dev": true, 1169 | "dependencies": { 1170 | "color-convert": "^2.0.1" 1171 | }, 1172 | "engines": { 1173 | "node": ">=8" 1174 | }, 1175 | "funding": { 1176 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1177 | } 1178 | }, 1179 | "node_modules/anymatch": { 1180 | "version": "3.1.3", 1181 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1182 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1183 | "dev": true, 1184 | "dependencies": { 1185 | "normalize-path": "^3.0.0", 1186 | "picomatch": "^2.0.4" 1187 | }, 1188 | "engines": { 1189 | "node": ">= 8" 1190 | } 1191 | }, 1192 | "node_modules/argparse": { 1193 | "version": "1.0.10", 1194 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1195 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1196 | "dev": true, 1197 | "dependencies": { 1198 | "sprintf-js": "~1.0.2" 1199 | } 1200 | }, 1201 | "node_modules/babel-jest": { 1202 | "version": "29.7.0", 1203 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1204 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1205 | "dev": true, 1206 | "dependencies": { 1207 | "@jest/transform": "^29.7.0", 1208 | "@types/babel__core": "^7.1.14", 1209 | "babel-plugin-istanbul": "^6.1.1", 1210 | "babel-preset-jest": "^29.6.3", 1211 | "chalk": "^4.0.0", 1212 | "graceful-fs": "^4.2.9", 1213 | "slash": "^3.0.0" 1214 | }, 1215 | "engines": { 1216 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1217 | }, 1218 | "peerDependencies": { 1219 | "@babel/core": "^7.8.0" 1220 | } 1221 | }, 1222 | "node_modules/babel-plugin-istanbul": { 1223 | "version": "6.1.1", 1224 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1225 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1226 | "dev": true, 1227 | "dependencies": { 1228 | "@babel/helper-plugin-utils": "^7.0.0", 1229 | "@istanbuljs/load-nyc-config": "^1.0.0", 1230 | "@istanbuljs/schema": "^0.1.2", 1231 | "istanbul-lib-instrument": "^5.0.4", 1232 | "test-exclude": "^6.0.0" 1233 | }, 1234 | "engines": { 1235 | "node": ">=8" 1236 | } 1237 | }, 1238 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1239 | "version": "5.2.1", 1240 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1241 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1242 | "dev": true, 1243 | "dependencies": { 1244 | "@babel/core": "^7.12.3", 1245 | "@babel/parser": "^7.14.7", 1246 | "@istanbuljs/schema": "^0.1.2", 1247 | "istanbul-lib-coverage": "^3.2.0", 1248 | "semver": "^6.3.0" 1249 | }, 1250 | "engines": { 1251 | "node": ">=8" 1252 | } 1253 | }, 1254 | "node_modules/babel-plugin-jest-hoist": { 1255 | "version": "29.6.3", 1256 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1257 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1258 | "dev": true, 1259 | "dependencies": { 1260 | "@babel/template": "^7.3.3", 1261 | "@babel/types": "^7.3.3", 1262 | "@types/babel__core": "^7.1.14", 1263 | "@types/babel__traverse": "^7.0.6" 1264 | }, 1265 | "engines": { 1266 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1267 | } 1268 | }, 1269 | "node_modules/babel-preset-current-node-syntax": { 1270 | "version": "1.0.1", 1271 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", 1272 | "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", 1273 | "dev": true, 1274 | "dependencies": { 1275 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1276 | "@babel/plugin-syntax-bigint": "^7.8.3", 1277 | "@babel/plugin-syntax-class-properties": "^7.8.3", 1278 | "@babel/plugin-syntax-import-meta": "^7.8.3", 1279 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1280 | "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", 1281 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1282 | "@babel/plugin-syntax-numeric-separator": "^7.8.3", 1283 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1284 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1285 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1286 | "@babel/plugin-syntax-top-level-await": "^7.8.3" 1287 | }, 1288 | "peerDependencies": { 1289 | "@babel/core": "^7.0.0" 1290 | } 1291 | }, 1292 | "node_modules/babel-preset-jest": { 1293 | "version": "29.6.3", 1294 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1295 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1296 | "dev": true, 1297 | "dependencies": { 1298 | "babel-plugin-jest-hoist": "^29.6.3", 1299 | "babel-preset-current-node-syntax": "^1.0.0" 1300 | }, 1301 | "engines": { 1302 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1303 | }, 1304 | "peerDependencies": { 1305 | "@babel/core": "^7.0.0" 1306 | } 1307 | }, 1308 | "node_modules/balanced-match": { 1309 | "version": "1.0.2", 1310 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1311 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1312 | "dev": true 1313 | }, 1314 | "node_modules/brace-expansion": { 1315 | "version": "1.1.11", 1316 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1317 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1318 | "dev": true, 1319 | "dependencies": { 1320 | "balanced-match": "^1.0.0", 1321 | "concat-map": "0.0.1" 1322 | } 1323 | }, 1324 | "node_modules/braces": { 1325 | "version": "3.0.2", 1326 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1327 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1328 | "dev": true, 1329 | "dependencies": { 1330 | "fill-range": "^7.0.1" 1331 | }, 1332 | "engines": { 1333 | "node": ">=8" 1334 | } 1335 | }, 1336 | "node_modules/browserslist": { 1337 | "version": "4.22.2", 1338 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", 1339 | "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", 1340 | "dev": true, 1341 | "funding": [ 1342 | { 1343 | "type": "opencollective", 1344 | "url": "https://opencollective.com/browserslist" 1345 | }, 1346 | { 1347 | "type": "tidelift", 1348 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1349 | }, 1350 | { 1351 | "type": "github", 1352 | "url": "https://github.com/sponsors/ai" 1353 | } 1354 | ], 1355 | "dependencies": { 1356 | "caniuse-lite": "^1.0.30001565", 1357 | "electron-to-chromium": "^1.4.601", 1358 | "node-releases": "^2.0.14", 1359 | "update-browserslist-db": "^1.0.13" 1360 | }, 1361 | "bin": { 1362 | "browserslist": "cli.js" 1363 | }, 1364 | "engines": { 1365 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1366 | } 1367 | }, 1368 | "node_modules/bser": { 1369 | "version": "2.1.1", 1370 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1371 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1372 | "dev": true, 1373 | "dependencies": { 1374 | "node-int64": "^0.4.0" 1375 | } 1376 | }, 1377 | "node_modules/buffer-from": { 1378 | "version": "1.1.2", 1379 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1380 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1381 | "dev": true 1382 | }, 1383 | "node_modules/callsites": { 1384 | "version": "3.1.0", 1385 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1386 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1387 | "dev": true, 1388 | "engines": { 1389 | "node": ">=6" 1390 | } 1391 | }, 1392 | "node_modules/camelcase": { 1393 | "version": "5.3.1", 1394 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1395 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1396 | "dev": true, 1397 | "engines": { 1398 | "node": ">=6" 1399 | } 1400 | }, 1401 | "node_modules/caniuse-lite": { 1402 | "version": "1.0.30001579", 1403 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001579.tgz", 1404 | "integrity": "sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==", 1405 | "dev": true, 1406 | "funding": [ 1407 | { 1408 | "type": "opencollective", 1409 | "url": "https://opencollective.com/browserslist" 1410 | }, 1411 | { 1412 | "type": "tidelift", 1413 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1414 | }, 1415 | { 1416 | "type": "github", 1417 | "url": "https://github.com/sponsors/ai" 1418 | } 1419 | ] 1420 | }, 1421 | "node_modules/chalk": { 1422 | "version": "4.1.2", 1423 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1424 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1425 | "dev": true, 1426 | "dependencies": { 1427 | "ansi-styles": "^4.1.0", 1428 | "supports-color": "^7.1.0" 1429 | }, 1430 | "engines": { 1431 | "node": ">=10" 1432 | }, 1433 | "funding": { 1434 | "url": "https://github.com/chalk/chalk?sponsor=1" 1435 | } 1436 | }, 1437 | "node_modules/char-regex": { 1438 | "version": "1.0.2", 1439 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1440 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1441 | "dev": true, 1442 | "engines": { 1443 | "node": ">=10" 1444 | } 1445 | }, 1446 | "node_modules/ci-info": { 1447 | "version": "3.9.0", 1448 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1449 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1450 | "dev": true, 1451 | "funding": [ 1452 | { 1453 | "type": "github", 1454 | "url": "https://github.com/sponsors/sibiraj-s" 1455 | } 1456 | ], 1457 | "engines": { 1458 | "node": ">=8" 1459 | } 1460 | }, 1461 | "node_modules/cjs-module-lexer": { 1462 | "version": "1.2.3", 1463 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", 1464 | "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", 1465 | "dev": true 1466 | }, 1467 | "node_modules/cliui": { 1468 | "version": "8.0.1", 1469 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1470 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1471 | "dev": true, 1472 | "dependencies": { 1473 | "string-width": "^4.2.0", 1474 | "strip-ansi": "^6.0.1", 1475 | "wrap-ansi": "^7.0.0" 1476 | }, 1477 | "engines": { 1478 | "node": ">=12" 1479 | } 1480 | }, 1481 | "node_modules/co": { 1482 | "version": "4.6.0", 1483 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1484 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1485 | "dev": true, 1486 | "engines": { 1487 | "iojs": ">= 1.0.0", 1488 | "node": ">= 0.12.0" 1489 | } 1490 | }, 1491 | "node_modules/collect-v8-coverage": { 1492 | "version": "1.0.2", 1493 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1494 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1495 | "dev": true 1496 | }, 1497 | "node_modules/color-convert": { 1498 | "version": "2.0.1", 1499 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1500 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1501 | "dev": true, 1502 | "dependencies": { 1503 | "color-name": "~1.1.4" 1504 | }, 1505 | "engines": { 1506 | "node": ">=7.0.0" 1507 | } 1508 | }, 1509 | "node_modules/color-name": { 1510 | "version": "1.1.4", 1511 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1512 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1513 | "dev": true 1514 | }, 1515 | "node_modules/concat-map": { 1516 | "version": "0.0.1", 1517 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1518 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1519 | "dev": true 1520 | }, 1521 | "node_modules/convert-source-map": { 1522 | "version": "2.0.0", 1523 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1524 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1525 | "dev": true 1526 | }, 1527 | "node_modules/create-jest": { 1528 | "version": "29.7.0", 1529 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1530 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1531 | "dev": true, 1532 | "dependencies": { 1533 | "@jest/types": "^29.6.3", 1534 | "chalk": "^4.0.0", 1535 | "exit": "^0.1.2", 1536 | "graceful-fs": "^4.2.9", 1537 | "jest-config": "^29.7.0", 1538 | "jest-util": "^29.7.0", 1539 | "prompts": "^2.0.1" 1540 | }, 1541 | "bin": { 1542 | "create-jest": "bin/create-jest.js" 1543 | }, 1544 | "engines": { 1545 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1546 | } 1547 | }, 1548 | "node_modules/cross-spawn": { 1549 | "version": "7.0.3", 1550 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1551 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1552 | "dev": true, 1553 | "dependencies": { 1554 | "path-key": "^3.1.0", 1555 | "shebang-command": "^2.0.0", 1556 | "which": "^2.0.1" 1557 | }, 1558 | "engines": { 1559 | "node": ">= 8" 1560 | } 1561 | }, 1562 | "node_modules/debug": { 1563 | "version": "4.3.4", 1564 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1565 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1566 | "dev": true, 1567 | "dependencies": { 1568 | "ms": "2.1.2" 1569 | }, 1570 | "engines": { 1571 | "node": ">=6.0" 1572 | }, 1573 | "peerDependenciesMeta": { 1574 | "supports-color": { 1575 | "optional": true 1576 | } 1577 | } 1578 | }, 1579 | "node_modules/dedent": { 1580 | "version": "1.5.1", 1581 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", 1582 | "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", 1583 | "dev": true, 1584 | "peerDependencies": { 1585 | "babel-plugin-macros": "^3.1.0" 1586 | }, 1587 | "peerDependenciesMeta": { 1588 | "babel-plugin-macros": { 1589 | "optional": true 1590 | } 1591 | } 1592 | }, 1593 | "node_modules/deepmerge": { 1594 | "version": "4.3.1", 1595 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1596 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1597 | "dev": true, 1598 | "engines": { 1599 | "node": ">=0.10.0" 1600 | } 1601 | }, 1602 | "node_modules/detect-newline": { 1603 | "version": "3.1.0", 1604 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1605 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1606 | "dev": true, 1607 | "engines": { 1608 | "node": ">=8" 1609 | } 1610 | }, 1611 | "node_modules/diff-sequences": { 1612 | "version": "29.6.3", 1613 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1614 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1615 | "dev": true, 1616 | "engines": { 1617 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1618 | } 1619 | }, 1620 | "node_modules/electron-to-chromium": { 1621 | "version": "1.4.639", 1622 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.639.tgz", 1623 | "integrity": "sha512-CkKf3ZUVZchr+zDpAlNLEEy2NJJ9T64ULWaDgy3THXXlPVPkLu3VOs9Bac44nebVtdwl2geSj6AxTtGDOxoXhg==", 1624 | "dev": true 1625 | }, 1626 | "node_modules/emittery": { 1627 | "version": "0.13.1", 1628 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1629 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1630 | "dev": true, 1631 | "engines": { 1632 | "node": ">=12" 1633 | }, 1634 | "funding": { 1635 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1636 | } 1637 | }, 1638 | "node_modules/emoji-regex": { 1639 | "version": "8.0.0", 1640 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1641 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1642 | "dev": true 1643 | }, 1644 | "node_modules/error-ex": { 1645 | "version": "1.3.2", 1646 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1647 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1648 | "dev": true, 1649 | "dependencies": { 1650 | "is-arrayish": "^0.2.1" 1651 | } 1652 | }, 1653 | "node_modules/escalade": { 1654 | "version": "3.1.1", 1655 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1656 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1657 | "dev": true, 1658 | "engines": { 1659 | "node": ">=6" 1660 | } 1661 | }, 1662 | "node_modules/escape-string-regexp": { 1663 | "version": "2.0.0", 1664 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1665 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1666 | "dev": true, 1667 | "engines": { 1668 | "node": ">=8" 1669 | } 1670 | }, 1671 | "node_modules/esprima": { 1672 | "version": "4.0.1", 1673 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1674 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1675 | "dev": true, 1676 | "bin": { 1677 | "esparse": "bin/esparse.js", 1678 | "esvalidate": "bin/esvalidate.js" 1679 | }, 1680 | "engines": { 1681 | "node": ">=4" 1682 | } 1683 | }, 1684 | "node_modules/execa": { 1685 | "version": "5.1.1", 1686 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1687 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1688 | "dev": true, 1689 | "dependencies": { 1690 | "cross-spawn": "^7.0.3", 1691 | "get-stream": "^6.0.0", 1692 | "human-signals": "^2.1.0", 1693 | "is-stream": "^2.0.0", 1694 | "merge-stream": "^2.0.0", 1695 | "npm-run-path": "^4.0.1", 1696 | "onetime": "^5.1.2", 1697 | "signal-exit": "^3.0.3", 1698 | "strip-final-newline": "^2.0.0" 1699 | }, 1700 | "engines": { 1701 | "node": ">=10" 1702 | }, 1703 | "funding": { 1704 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1705 | } 1706 | }, 1707 | "node_modules/exit": { 1708 | "version": "0.1.2", 1709 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1710 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1711 | "dev": true, 1712 | "engines": { 1713 | "node": ">= 0.8.0" 1714 | } 1715 | }, 1716 | "node_modules/expect": { 1717 | "version": "29.7.0", 1718 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1719 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1720 | "dev": true, 1721 | "dependencies": { 1722 | "@jest/expect-utils": "^29.7.0", 1723 | "jest-get-type": "^29.6.3", 1724 | "jest-matcher-utils": "^29.7.0", 1725 | "jest-message-util": "^29.7.0", 1726 | "jest-util": "^29.7.0" 1727 | }, 1728 | "engines": { 1729 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1730 | } 1731 | }, 1732 | "node_modules/fast-json-stable-stringify": { 1733 | "version": "2.1.0", 1734 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1735 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1736 | "dev": true 1737 | }, 1738 | "node_modules/fb-watchman": { 1739 | "version": "2.0.2", 1740 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1741 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1742 | "dev": true, 1743 | "dependencies": { 1744 | "bser": "2.1.1" 1745 | } 1746 | }, 1747 | "node_modules/fill-range": { 1748 | "version": "7.0.1", 1749 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1750 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1751 | "dev": true, 1752 | "dependencies": { 1753 | "to-regex-range": "^5.0.1" 1754 | }, 1755 | "engines": { 1756 | "node": ">=8" 1757 | } 1758 | }, 1759 | "node_modules/find-up": { 1760 | "version": "4.1.0", 1761 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1762 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1763 | "dev": true, 1764 | "dependencies": { 1765 | "locate-path": "^5.0.0", 1766 | "path-exists": "^4.0.0" 1767 | }, 1768 | "engines": { 1769 | "node": ">=8" 1770 | } 1771 | }, 1772 | "node_modules/fs.realpath": { 1773 | "version": "1.0.0", 1774 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1775 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1776 | "dev": true 1777 | }, 1778 | "node_modules/fsevents": { 1779 | "version": "2.3.3", 1780 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1781 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1782 | "dev": true, 1783 | "hasInstallScript": true, 1784 | "optional": true, 1785 | "os": [ 1786 | "darwin" 1787 | ], 1788 | "engines": { 1789 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1790 | } 1791 | }, 1792 | "node_modules/function-bind": { 1793 | "version": "1.1.2", 1794 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1795 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1796 | "dev": true, 1797 | "funding": { 1798 | "url": "https://github.com/sponsors/ljharb" 1799 | } 1800 | }, 1801 | "node_modules/gensync": { 1802 | "version": "1.0.0-beta.2", 1803 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1804 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1805 | "dev": true, 1806 | "engines": { 1807 | "node": ">=6.9.0" 1808 | } 1809 | }, 1810 | "node_modules/get-caller-file": { 1811 | "version": "2.0.5", 1812 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1813 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1814 | "dev": true, 1815 | "engines": { 1816 | "node": "6.* || 8.* || >= 10.*" 1817 | } 1818 | }, 1819 | "node_modules/get-package-type": { 1820 | "version": "0.1.0", 1821 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1822 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1823 | "dev": true, 1824 | "engines": { 1825 | "node": ">=8.0.0" 1826 | } 1827 | }, 1828 | "node_modules/get-stream": { 1829 | "version": "6.0.1", 1830 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1831 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1832 | "dev": true, 1833 | "engines": { 1834 | "node": ">=10" 1835 | }, 1836 | "funding": { 1837 | "url": "https://github.com/sponsors/sindresorhus" 1838 | } 1839 | }, 1840 | "node_modules/glob": { 1841 | "version": "7.2.3", 1842 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1843 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1844 | "dev": true, 1845 | "dependencies": { 1846 | "fs.realpath": "^1.0.0", 1847 | "inflight": "^1.0.4", 1848 | "inherits": "2", 1849 | "minimatch": "^3.1.1", 1850 | "once": "^1.3.0", 1851 | "path-is-absolute": "^1.0.0" 1852 | }, 1853 | "engines": { 1854 | "node": "*" 1855 | }, 1856 | "funding": { 1857 | "url": "https://github.com/sponsors/isaacs" 1858 | } 1859 | }, 1860 | "node_modules/globals": { 1861 | "version": "11.12.0", 1862 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1863 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1864 | "dev": true, 1865 | "engines": { 1866 | "node": ">=4" 1867 | } 1868 | }, 1869 | "node_modules/graceful-fs": { 1870 | "version": "4.2.11", 1871 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1872 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1873 | "dev": true 1874 | }, 1875 | "node_modules/has-flag": { 1876 | "version": "4.0.0", 1877 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1878 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1879 | "dev": true, 1880 | "engines": { 1881 | "node": ">=8" 1882 | } 1883 | }, 1884 | "node_modules/hasown": { 1885 | "version": "2.0.0", 1886 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 1887 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 1888 | "dev": true, 1889 | "dependencies": { 1890 | "function-bind": "^1.1.2" 1891 | }, 1892 | "engines": { 1893 | "node": ">= 0.4" 1894 | } 1895 | }, 1896 | "node_modules/html-escaper": { 1897 | "version": "2.0.2", 1898 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 1899 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 1900 | "dev": true 1901 | }, 1902 | "node_modules/human-signals": { 1903 | "version": "2.1.0", 1904 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 1905 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 1906 | "dev": true, 1907 | "engines": { 1908 | "node": ">=10.17.0" 1909 | } 1910 | }, 1911 | "node_modules/import-local": { 1912 | "version": "3.1.0", 1913 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", 1914 | "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", 1915 | "dev": true, 1916 | "dependencies": { 1917 | "pkg-dir": "^4.2.0", 1918 | "resolve-cwd": "^3.0.0" 1919 | }, 1920 | "bin": { 1921 | "import-local-fixture": "fixtures/cli.js" 1922 | }, 1923 | "engines": { 1924 | "node": ">=8" 1925 | }, 1926 | "funding": { 1927 | "url": "https://github.com/sponsors/sindresorhus" 1928 | } 1929 | }, 1930 | "node_modules/imurmurhash": { 1931 | "version": "0.1.4", 1932 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1933 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1934 | "dev": true, 1935 | "engines": { 1936 | "node": ">=0.8.19" 1937 | } 1938 | }, 1939 | "node_modules/inflight": { 1940 | "version": "1.0.6", 1941 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1942 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1943 | "dev": true, 1944 | "dependencies": { 1945 | "once": "^1.3.0", 1946 | "wrappy": "1" 1947 | } 1948 | }, 1949 | "node_modules/inherits": { 1950 | "version": "2.0.4", 1951 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1952 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1953 | "dev": true 1954 | }, 1955 | "node_modules/is-arrayish": { 1956 | "version": "0.2.1", 1957 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1958 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1959 | "dev": true 1960 | }, 1961 | "node_modules/is-core-module": { 1962 | "version": "2.13.1", 1963 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 1964 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 1965 | "dev": true, 1966 | "dependencies": { 1967 | "hasown": "^2.0.0" 1968 | }, 1969 | "funding": { 1970 | "url": "https://github.com/sponsors/ljharb" 1971 | } 1972 | }, 1973 | "node_modules/is-fullwidth-code-point": { 1974 | "version": "3.0.0", 1975 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1976 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1977 | "dev": true, 1978 | "engines": { 1979 | "node": ">=8" 1980 | } 1981 | }, 1982 | "node_modules/is-generator-fn": { 1983 | "version": "2.1.0", 1984 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 1985 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 1986 | "dev": true, 1987 | "engines": { 1988 | "node": ">=6" 1989 | } 1990 | }, 1991 | "node_modules/is-number": { 1992 | "version": "7.0.0", 1993 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1994 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1995 | "dev": true, 1996 | "engines": { 1997 | "node": ">=0.12.0" 1998 | } 1999 | }, 2000 | "node_modules/is-stream": { 2001 | "version": "2.0.1", 2002 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2003 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2004 | "dev": true, 2005 | "engines": { 2006 | "node": ">=8" 2007 | }, 2008 | "funding": { 2009 | "url": "https://github.com/sponsors/sindresorhus" 2010 | } 2011 | }, 2012 | "node_modules/isexe": { 2013 | "version": "2.0.0", 2014 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2015 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2016 | "dev": true 2017 | }, 2018 | "node_modules/istanbul-lib-coverage": { 2019 | "version": "3.2.2", 2020 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2021 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2022 | "dev": true, 2023 | "engines": { 2024 | "node": ">=8" 2025 | } 2026 | }, 2027 | "node_modules/istanbul-lib-instrument": { 2028 | "version": "6.0.1", 2029 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", 2030 | "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", 2031 | "dev": true, 2032 | "dependencies": { 2033 | "@babel/core": "^7.12.3", 2034 | "@babel/parser": "^7.14.7", 2035 | "@istanbuljs/schema": "^0.1.2", 2036 | "istanbul-lib-coverage": "^3.2.0", 2037 | "semver": "^7.5.4" 2038 | }, 2039 | "engines": { 2040 | "node": ">=10" 2041 | } 2042 | }, 2043 | "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { 2044 | "version": "6.0.0", 2045 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2046 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2047 | "dev": true, 2048 | "dependencies": { 2049 | "yallist": "^4.0.0" 2050 | }, 2051 | "engines": { 2052 | "node": ">=10" 2053 | } 2054 | }, 2055 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2056 | "version": "7.5.4", 2057 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2058 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2059 | "dev": true, 2060 | "dependencies": { 2061 | "lru-cache": "^6.0.0" 2062 | }, 2063 | "bin": { 2064 | "semver": "bin/semver.js" 2065 | }, 2066 | "engines": { 2067 | "node": ">=10" 2068 | } 2069 | }, 2070 | "node_modules/istanbul-lib-instrument/node_modules/yallist": { 2071 | "version": "4.0.0", 2072 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2073 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2074 | "dev": true 2075 | }, 2076 | "node_modules/istanbul-lib-report": { 2077 | "version": "3.0.1", 2078 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2079 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2080 | "dev": true, 2081 | "dependencies": { 2082 | "istanbul-lib-coverage": "^3.0.0", 2083 | "make-dir": "^4.0.0", 2084 | "supports-color": "^7.1.0" 2085 | }, 2086 | "engines": { 2087 | "node": ">=10" 2088 | } 2089 | }, 2090 | "node_modules/istanbul-lib-source-maps": { 2091 | "version": "4.0.1", 2092 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2093 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2094 | "dev": true, 2095 | "dependencies": { 2096 | "debug": "^4.1.1", 2097 | "istanbul-lib-coverage": "^3.0.0", 2098 | "source-map": "^0.6.1" 2099 | }, 2100 | "engines": { 2101 | "node": ">=10" 2102 | } 2103 | }, 2104 | "node_modules/istanbul-reports": { 2105 | "version": "3.1.6", 2106 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", 2107 | "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", 2108 | "dev": true, 2109 | "dependencies": { 2110 | "html-escaper": "^2.0.0", 2111 | "istanbul-lib-report": "^3.0.0" 2112 | }, 2113 | "engines": { 2114 | "node": ">=8" 2115 | } 2116 | }, 2117 | "node_modules/jest": { 2118 | "version": "29.7.0", 2119 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2120 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2121 | "dev": true, 2122 | "dependencies": { 2123 | "@jest/core": "^29.7.0", 2124 | "@jest/types": "^29.6.3", 2125 | "import-local": "^3.0.2", 2126 | "jest-cli": "^29.7.0" 2127 | }, 2128 | "bin": { 2129 | "jest": "bin/jest.js" 2130 | }, 2131 | "engines": { 2132 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2133 | }, 2134 | "peerDependencies": { 2135 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2136 | }, 2137 | "peerDependenciesMeta": { 2138 | "node-notifier": { 2139 | "optional": true 2140 | } 2141 | } 2142 | }, 2143 | "node_modules/jest-changed-files": { 2144 | "version": "29.7.0", 2145 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2146 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2147 | "dev": true, 2148 | "dependencies": { 2149 | "execa": "^5.0.0", 2150 | "jest-util": "^29.7.0", 2151 | "p-limit": "^3.1.0" 2152 | }, 2153 | "engines": { 2154 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2155 | } 2156 | }, 2157 | "node_modules/jest-circus": { 2158 | "version": "29.7.0", 2159 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2160 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2161 | "dev": true, 2162 | "dependencies": { 2163 | "@jest/environment": "^29.7.0", 2164 | "@jest/expect": "^29.7.0", 2165 | "@jest/test-result": "^29.7.0", 2166 | "@jest/types": "^29.6.3", 2167 | "@types/node": "*", 2168 | "chalk": "^4.0.0", 2169 | "co": "^4.6.0", 2170 | "dedent": "^1.0.0", 2171 | "is-generator-fn": "^2.0.0", 2172 | "jest-each": "^29.7.0", 2173 | "jest-matcher-utils": "^29.7.0", 2174 | "jest-message-util": "^29.7.0", 2175 | "jest-runtime": "^29.7.0", 2176 | "jest-snapshot": "^29.7.0", 2177 | "jest-util": "^29.7.0", 2178 | "p-limit": "^3.1.0", 2179 | "pretty-format": "^29.7.0", 2180 | "pure-rand": "^6.0.0", 2181 | "slash": "^3.0.0", 2182 | "stack-utils": "^2.0.3" 2183 | }, 2184 | "engines": { 2185 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2186 | } 2187 | }, 2188 | "node_modules/jest-cli": { 2189 | "version": "29.7.0", 2190 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2191 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2192 | "dev": true, 2193 | "dependencies": { 2194 | "@jest/core": "^29.7.0", 2195 | "@jest/test-result": "^29.7.0", 2196 | "@jest/types": "^29.6.3", 2197 | "chalk": "^4.0.0", 2198 | "create-jest": "^29.7.0", 2199 | "exit": "^0.1.2", 2200 | "import-local": "^3.0.2", 2201 | "jest-config": "^29.7.0", 2202 | "jest-util": "^29.7.0", 2203 | "jest-validate": "^29.7.0", 2204 | "yargs": "^17.3.1" 2205 | }, 2206 | "bin": { 2207 | "jest": "bin/jest.js" 2208 | }, 2209 | "engines": { 2210 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2211 | }, 2212 | "peerDependencies": { 2213 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2214 | }, 2215 | "peerDependenciesMeta": { 2216 | "node-notifier": { 2217 | "optional": true 2218 | } 2219 | } 2220 | }, 2221 | "node_modules/jest-config": { 2222 | "version": "29.7.0", 2223 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2224 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2225 | "dev": true, 2226 | "dependencies": { 2227 | "@babel/core": "^7.11.6", 2228 | "@jest/test-sequencer": "^29.7.0", 2229 | "@jest/types": "^29.6.3", 2230 | "babel-jest": "^29.7.0", 2231 | "chalk": "^4.0.0", 2232 | "ci-info": "^3.2.0", 2233 | "deepmerge": "^4.2.2", 2234 | "glob": "^7.1.3", 2235 | "graceful-fs": "^4.2.9", 2236 | "jest-circus": "^29.7.0", 2237 | "jest-environment-node": "^29.7.0", 2238 | "jest-get-type": "^29.6.3", 2239 | "jest-regex-util": "^29.6.3", 2240 | "jest-resolve": "^29.7.0", 2241 | "jest-runner": "^29.7.0", 2242 | "jest-util": "^29.7.0", 2243 | "jest-validate": "^29.7.0", 2244 | "micromatch": "^4.0.4", 2245 | "parse-json": "^5.2.0", 2246 | "pretty-format": "^29.7.0", 2247 | "slash": "^3.0.0", 2248 | "strip-json-comments": "^3.1.1" 2249 | }, 2250 | "engines": { 2251 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2252 | }, 2253 | "peerDependencies": { 2254 | "@types/node": "*", 2255 | "ts-node": ">=9.0.0" 2256 | }, 2257 | "peerDependenciesMeta": { 2258 | "@types/node": { 2259 | "optional": true 2260 | }, 2261 | "ts-node": { 2262 | "optional": true 2263 | } 2264 | } 2265 | }, 2266 | "node_modules/jest-diff": { 2267 | "version": "29.7.0", 2268 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2269 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2270 | "dev": true, 2271 | "dependencies": { 2272 | "chalk": "^4.0.0", 2273 | "diff-sequences": "^29.6.3", 2274 | "jest-get-type": "^29.6.3", 2275 | "pretty-format": "^29.7.0" 2276 | }, 2277 | "engines": { 2278 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2279 | } 2280 | }, 2281 | "node_modules/jest-docblock": { 2282 | "version": "29.7.0", 2283 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2284 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2285 | "dev": true, 2286 | "dependencies": { 2287 | "detect-newline": "^3.0.0" 2288 | }, 2289 | "engines": { 2290 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2291 | } 2292 | }, 2293 | "node_modules/jest-each": { 2294 | "version": "29.7.0", 2295 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2296 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2297 | "dev": true, 2298 | "dependencies": { 2299 | "@jest/types": "^29.6.3", 2300 | "chalk": "^4.0.0", 2301 | "jest-get-type": "^29.6.3", 2302 | "jest-util": "^29.7.0", 2303 | "pretty-format": "^29.7.0" 2304 | }, 2305 | "engines": { 2306 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2307 | } 2308 | }, 2309 | "node_modules/jest-environment-node": { 2310 | "version": "29.7.0", 2311 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2312 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2313 | "dev": true, 2314 | "dependencies": { 2315 | "@jest/environment": "^29.7.0", 2316 | "@jest/fake-timers": "^29.7.0", 2317 | "@jest/types": "^29.6.3", 2318 | "@types/node": "*", 2319 | "jest-mock": "^29.7.0", 2320 | "jest-util": "^29.7.0" 2321 | }, 2322 | "engines": { 2323 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2324 | } 2325 | }, 2326 | "node_modules/jest-get-type": { 2327 | "version": "29.6.3", 2328 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2329 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2330 | "dev": true, 2331 | "engines": { 2332 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2333 | } 2334 | }, 2335 | "node_modules/jest-haste-map": { 2336 | "version": "29.7.0", 2337 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2338 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2339 | "dev": true, 2340 | "dependencies": { 2341 | "@jest/types": "^29.6.3", 2342 | "@types/graceful-fs": "^4.1.3", 2343 | "@types/node": "*", 2344 | "anymatch": "^3.0.3", 2345 | "fb-watchman": "^2.0.0", 2346 | "graceful-fs": "^4.2.9", 2347 | "jest-regex-util": "^29.6.3", 2348 | "jest-util": "^29.7.0", 2349 | "jest-worker": "^29.7.0", 2350 | "micromatch": "^4.0.4", 2351 | "walker": "^1.0.8" 2352 | }, 2353 | "engines": { 2354 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2355 | }, 2356 | "optionalDependencies": { 2357 | "fsevents": "^2.3.2" 2358 | } 2359 | }, 2360 | "node_modules/jest-leak-detector": { 2361 | "version": "29.7.0", 2362 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2363 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2364 | "dev": true, 2365 | "dependencies": { 2366 | "jest-get-type": "^29.6.3", 2367 | "pretty-format": "^29.7.0" 2368 | }, 2369 | "engines": { 2370 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2371 | } 2372 | }, 2373 | "node_modules/jest-matcher-utils": { 2374 | "version": "29.7.0", 2375 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2376 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2377 | "dev": true, 2378 | "dependencies": { 2379 | "chalk": "^4.0.0", 2380 | "jest-diff": "^29.7.0", 2381 | "jest-get-type": "^29.6.3", 2382 | "pretty-format": "^29.7.0" 2383 | }, 2384 | "engines": { 2385 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2386 | } 2387 | }, 2388 | "node_modules/jest-message-util": { 2389 | "version": "29.7.0", 2390 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2391 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2392 | "dev": true, 2393 | "dependencies": { 2394 | "@babel/code-frame": "^7.12.13", 2395 | "@jest/types": "^29.6.3", 2396 | "@types/stack-utils": "^2.0.0", 2397 | "chalk": "^4.0.0", 2398 | "graceful-fs": "^4.2.9", 2399 | "micromatch": "^4.0.4", 2400 | "pretty-format": "^29.7.0", 2401 | "slash": "^3.0.0", 2402 | "stack-utils": "^2.0.3" 2403 | }, 2404 | "engines": { 2405 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2406 | } 2407 | }, 2408 | "node_modules/jest-mock": { 2409 | "version": "29.7.0", 2410 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2411 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2412 | "dev": true, 2413 | "dependencies": { 2414 | "@jest/types": "^29.6.3", 2415 | "@types/node": "*", 2416 | "jest-util": "^29.7.0" 2417 | }, 2418 | "engines": { 2419 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2420 | } 2421 | }, 2422 | "node_modules/jest-pnp-resolver": { 2423 | "version": "1.2.3", 2424 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2425 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2426 | "dev": true, 2427 | "engines": { 2428 | "node": ">=6" 2429 | }, 2430 | "peerDependencies": { 2431 | "jest-resolve": "*" 2432 | }, 2433 | "peerDependenciesMeta": { 2434 | "jest-resolve": { 2435 | "optional": true 2436 | } 2437 | } 2438 | }, 2439 | "node_modules/jest-regex-util": { 2440 | "version": "29.6.3", 2441 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2442 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2443 | "dev": true, 2444 | "engines": { 2445 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2446 | } 2447 | }, 2448 | "node_modules/jest-resolve": { 2449 | "version": "29.7.0", 2450 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2451 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2452 | "dev": true, 2453 | "dependencies": { 2454 | "chalk": "^4.0.0", 2455 | "graceful-fs": "^4.2.9", 2456 | "jest-haste-map": "^29.7.0", 2457 | "jest-pnp-resolver": "^1.2.2", 2458 | "jest-util": "^29.7.0", 2459 | "jest-validate": "^29.7.0", 2460 | "resolve": "^1.20.0", 2461 | "resolve.exports": "^2.0.0", 2462 | "slash": "^3.0.0" 2463 | }, 2464 | "engines": { 2465 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2466 | } 2467 | }, 2468 | "node_modules/jest-resolve-dependencies": { 2469 | "version": "29.7.0", 2470 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2471 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2472 | "dev": true, 2473 | "dependencies": { 2474 | "jest-regex-util": "^29.6.3", 2475 | "jest-snapshot": "^29.7.0" 2476 | }, 2477 | "engines": { 2478 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2479 | } 2480 | }, 2481 | "node_modules/jest-runner": { 2482 | "version": "29.7.0", 2483 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2484 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2485 | "dev": true, 2486 | "dependencies": { 2487 | "@jest/console": "^29.7.0", 2488 | "@jest/environment": "^29.7.0", 2489 | "@jest/test-result": "^29.7.0", 2490 | "@jest/transform": "^29.7.0", 2491 | "@jest/types": "^29.6.3", 2492 | "@types/node": "*", 2493 | "chalk": "^4.0.0", 2494 | "emittery": "^0.13.1", 2495 | "graceful-fs": "^4.2.9", 2496 | "jest-docblock": "^29.7.0", 2497 | "jest-environment-node": "^29.7.0", 2498 | "jest-haste-map": "^29.7.0", 2499 | "jest-leak-detector": "^29.7.0", 2500 | "jest-message-util": "^29.7.0", 2501 | "jest-resolve": "^29.7.0", 2502 | "jest-runtime": "^29.7.0", 2503 | "jest-util": "^29.7.0", 2504 | "jest-watcher": "^29.7.0", 2505 | "jest-worker": "^29.7.0", 2506 | "p-limit": "^3.1.0", 2507 | "source-map-support": "0.5.13" 2508 | }, 2509 | "engines": { 2510 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2511 | } 2512 | }, 2513 | "node_modules/jest-runtime": { 2514 | "version": "29.7.0", 2515 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2516 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2517 | "dev": true, 2518 | "dependencies": { 2519 | "@jest/environment": "^29.7.0", 2520 | "@jest/fake-timers": "^29.7.0", 2521 | "@jest/globals": "^29.7.0", 2522 | "@jest/source-map": "^29.6.3", 2523 | "@jest/test-result": "^29.7.0", 2524 | "@jest/transform": "^29.7.0", 2525 | "@jest/types": "^29.6.3", 2526 | "@types/node": "*", 2527 | "chalk": "^4.0.0", 2528 | "cjs-module-lexer": "^1.0.0", 2529 | "collect-v8-coverage": "^1.0.0", 2530 | "glob": "^7.1.3", 2531 | "graceful-fs": "^4.2.9", 2532 | "jest-haste-map": "^29.7.0", 2533 | "jest-message-util": "^29.7.0", 2534 | "jest-mock": "^29.7.0", 2535 | "jest-regex-util": "^29.6.3", 2536 | "jest-resolve": "^29.7.0", 2537 | "jest-snapshot": "^29.7.0", 2538 | "jest-util": "^29.7.0", 2539 | "slash": "^3.0.0", 2540 | "strip-bom": "^4.0.0" 2541 | }, 2542 | "engines": { 2543 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2544 | } 2545 | }, 2546 | "node_modules/jest-snapshot": { 2547 | "version": "29.7.0", 2548 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2549 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2550 | "dev": true, 2551 | "dependencies": { 2552 | "@babel/core": "^7.11.6", 2553 | "@babel/generator": "^7.7.2", 2554 | "@babel/plugin-syntax-jsx": "^7.7.2", 2555 | "@babel/plugin-syntax-typescript": "^7.7.2", 2556 | "@babel/types": "^7.3.3", 2557 | "@jest/expect-utils": "^29.7.0", 2558 | "@jest/transform": "^29.7.0", 2559 | "@jest/types": "^29.6.3", 2560 | "babel-preset-current-node-syntax": "^1.0.0", 2561 | "chalk": "^4.0.0", 2562 | "expect": "^29.7.0", 2563 | "graceful-fs": "^4.2.9", 2564 | "jest-diff": "^29.7.0", 2565 | "jest-get-type": "^29.6.3", 2566 | "jest-matcher-utils": "^29.7.0", 2567 | "jest-message-util": "^29.7.0", 2568 | "jest-util": "^29.7.0", 2569 | "natural-compare": "^1.4.0", 2570 | "pretty-format": "^29.7.0", 2571 | "semver": "^7.5.3" 2572 | }, 2573 | "engines": { 2574 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2575 | } 2576 | }, 2577 | "node_modules/jest-snapshot/node_modules/lru-cache": { 2578 | "version": "6.0.0", 2579 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2580 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2581 | "dev": true, 2582 | "dependencies": { 2583 | "yallist": "^4.0.0" 2584 | }, 2585 | "engines": { 2586 | "node": ">=10" 2587 | } 2588 | }, 2589 | "node_modules/jest-snapshot/node_modules/semver": { 2590 | "version": "7.5.4", 2591 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2592 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2593 | "dev": true, 2594 | "dependencies": { 2595 | "lru-cache": "^6.0.0" 2596 | }, 2597 | "bin": { 2598 | "semver": "bin/semver.js" 2599 | }, 2600 | "engines": { 2601 | "node": ">=10" 2602 | } 2603 | }, 2604 | "node_modules/jest-snapshot/node_modules/yallist": { 2605 | "version": "4.0.0", 2606 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2607 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2608 | "dev": true 2609 | }, 2610 | "node_modules/jest-util": { 2611 | "version": "29.7.0", 2612 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2613 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2614 | "dev": true, 2615 | "dependencies": { 2616 | "@jest/types": "^29.6.3", 2617 | "@types/node": "*", 2618 | "chalk": "^4.0.0", 2619 | "ci-info": "^3.2.0", 2620 | "graceful-fs": "^4.2.9", 2621 | "picomatch": "^2.2.3" 2622 | }, 2623 | "engines": { 2624 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2625 | } 2626 | }, 2627 | "node_modules/jest-validate": { 2628 | "version": "29.7.0", 2629 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2630 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2631 | "dev": true, 2632 | "dependencies": { 2633 | "@jest/types": "^29.6.3", 2634 | "camelcase": "^6.2.0", 2635 | "chalk": "^4.0.0", 2636 | "jest-get-type": "^29.6.3", 2637 | "leven": "^3.1.0", 2638 | "pretty-format": "^29.7.0" 2639 | }, 2640 | "engines": { 2641 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2642 | } 2643 | }, 2644 | "node_modules/jest-validate/node_modules/camelcase": { 2645 | "version": "6.3.0", 2646 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2647 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2648 | "dev": true, 2649 | "engines": { 2650 | "node": ">=10" 2651 | }, 2652 | "funding": { 2653 | "url": "https://github.com/sponsors/sindresorhus" 2654 | } 2655 | }, 2656 | "node_modules/jest-watcher": { 2657 | "version": "29.7.0", 2658 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 2659 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 2660 | "dev": true, 2661 | "dependencies": { 2662 | "@jest/test-result": "^29.7.0", 2663 | "@jest/types": "^29.6.3", 2664 | "@types/node": "*", 2665 | "ansi-escapes": "^4.2.1", 2666 | "chalk": "^4.0.0", 2667 | "emittery": "^0.13.1", 2668 | "jest-util": "^29.7.0", 2669 | "string-length": "^4.0.1" 2670 | }, 2671 | "engines": { 2672 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2673 | } 2674 | }, 2675 | "node_modules/jest-worker": { 2676 | "version": "29.7.0", 2677 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 2678 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 2679 | "dev": true, 2680 | "dependencies": { 2681 | "@types/node": "*", 2682 | "jest-util": "^29.7.0", 2683 | "merge-stream": "^2.0.0", 2684 | "supports-color": "^8.0.0" 2685 | }, 2686 | "engines": { 2687 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2688 | } 2689 | }, 2690 | "node_modules/jest-worker/node_modules/supports-color": { 2691 | "version": "8.1.1", 2692 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2693 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2694 | "dev": true, 2695 | "dependencies": { 2696 | "has-flag": "^4.0.0" 2697 | }, 2698 | "engines": { 2699 | "node": ">=10" 2700 | }, 2701 | "funding": { 2702 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2703 | } 2704 | }, 2705 | "node_modules/js-tokens": { 2706 | "version": "4.0.0", 2707 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2708 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2709 | "dev": true 2710 | }, 2711 | "node_modules/js-yaml": { 2712 | "version": "3.14.1", 2713 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2714 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2715 | "dev": true, 2716 | "dependencies": { 2717 | "argparse": "^1.0.7", 2718 | "esprima": "^4.0.0" 2719 | }, 2720 | "bin": { 2721 | "js-yaml": "bin/js-yaml.js" 2722 | } 2723 | }, 2724 | "node_modules/jsesc": { 2725 | "version": "2.5.2", 2726 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2727 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 2728 | "dev": true, 2729 | "bin": { 2730 | "jsesc": "bin/jsesc" 2731 | }, 2732 | "engines": { 2733 | "node": ">=4" 2734 | } 2735 | }, 2736 | "node_modules/json-parse-even-better-errors": { 2737 | "version": "2.3.1", 2738 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2739 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2740 | "dev": true 2741 | }, 2742 | "node_modules/json5": { 2743 | "version": "2.2.3", 2744 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2745 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2746 | "dev": true, 2747 | "bin": { 2748 | "json5": "lib/cli.js" 2749 | }, 2750 | "engines": { 2751 | "node": ">=6" 2752 | } 2753 | }, 2754 | "node_modules/kleur": { 2755 | "version": "3.0.3", 2756 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 2757 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 2758 | "dev": true, 2759 | "engines": { 2760 | "node": ">=6" 2761 | } 2762 | }, 2763 | "node_modules/leven": { 2764 | "version": "3.1.0", 2765 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 2766 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 2767 | "dev": true, 2768 | "engines": { 2769 | "node": ">=6" 2770 | } 2771 | }, 2772 | "node_modules/lines-and-columns": { 2773 | "version": "1.2.4", 2774 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2775 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2776 | "dev": true 2777 | }, 2778 | "node_modules/locate-path": { 2779 | "version": "5.0.0", 2780 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2781 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2782 | "dev": true, 2783 | "dependencies": { 2784 | "p-locate": "^4.1.0" 2785 | }, 2786 | "engines": { 2787 | "node": ">=8" 2788 | } 2789 | }, 2790 | "node_modules/lru-cache": { 2791 | "version": "5.1.1", 2792 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2793 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2794 | "dev": true, 2795 | "dependencies": { 2796 | "yallist": "^3.0.2" 2797 | } 2798 | }, 2799 | "node_modules/make-dir": { 2800 | "version": "4.0.0", 2801 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 2802 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 2803 | "dev": true, 2804 | "dependencies": { 2805 | "semver": "^7.5.3" 2806 | }, 2807 | "engines": { 2808 | "node": ">=10" 2809 | }, 2810 | "funding": { 2811 | "url": "https://github.com/sponsors/sindresorhus" 2812 | } 2813 | }, 2814 | "node_modules/make-dir/node_modules/lru-cache": { 2815 | "version": "6.0.0", 2816 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2817 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2818 | "dev": true, 2819 | "dependencies": { 2820 | "yallist": "^4.0.0" 2821 | }, 2822 | "engines": { 2823 | "node": ">=10" 2824 | } 2825 | }, 2826 | "node_modules/make-dir/node_modules/semver": { 2827 | "version": "7.5.4", 2828 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2829 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2830 | "dev": true, 2831 | "dependencies": { 2832 | "lru-cache": "^6.0.0" 2833 | }, 2834 | "bin": { 2835 | "semver": "bin/semver.js" 2836 | }, 2837 | "engines": { 2838 | "node": ">=10" 2839 | } 2840 | }, 2841 | "node_modules/make-dir/node_modules/yallist": { 2842 | "version": "4.0.0", 2843 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2844 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2845 | "dev": true 2846 | }, 2847 | "node_modules/makeerror": { 2848 | "version": "1.0.12", 2849 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 2850 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 2851 | "dev": true, 2852 | "dependencies": { 2853 | "tmpl": "1.0.5" 2854 | } 2855 | }, 2856 | "node_modules/merge-stream": { 2857 | "version": "2.0.0", 2858 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2859 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 2860 | "dev": true 2861 | }, 2862 | "node_modules/micromatch": { 2863 | "version": "4.0.5", 2864 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2865 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2866 | "dev": true, 2867 | "dependencies": { 2868 | "braces": "^3.0.2", 2869 | "picomatch": "^2.3.1" 2870 | }, 2871 | "engines": { 2872 | "node": ">=8.6" 2873 | } 2874 | }, 2875 | "node_modules/mimic-fn": { 2876 | "version": "2.1.0", 2877 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 2878 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 2879 | "dev": true, 2880 | "engines": { 2881 | "node": ">=6" 2882 | } 2883 | }, 2884 | "node_modules/minimatch": { 2885 | "version": "3.1.2", 2886 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2887 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2888 | "dev": true, 2889 | "dependencies": { 2890 | "brace-expansion": "^1.1.7" 2891 | }, 2892 | "engines": { 2893 | "node": "*" 2894 | } 2895 | }, 2896 | "node_modules/ms": { 2897 | "version": "2.1.2", 2898 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2899 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2900 | "dev": true 2901 | }, 2902 | "node_modules/natural-compare": { 2903 | "version": "1.4.0", 2904 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2905 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2906 | "dev": true 2907 | }, 2908 | "node_modules/node-int64": { 2909 | "version": "0.4.0", 2910 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 2911 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 2912 | "dev": true 2913 | }, 2914 | "node_modules/node-releases": { 2915 | "version": "2.0.14", 2916 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 2917 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 2918 | "dev": true 2919 | }, 2920 | "node_modules/normalize-path": { 2921 | "version": "3.0.0", 2922 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2923 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2924 | "dev": true, 2925 | "engines": { 2926 | "node": ">=0.10.0" 2927 | } 2928 | }, 2929 | "node_modules/npm-run-path": { 2930 | "version": "4.0.1", 2931 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 2932 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 2933 | "dev": true, 2934 | "dependencies": { 2935 | "path-key": "^3.0.0" 2936 | }, 2937 | "engines": { 2938 | "node": ">=8" 2939 | } 2940 | }, 2941 | "node_modules/once": { 2942 | "version": "1.4.0", 2943 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2944 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2945 | "dev": true, 2946 | "dependencies": { 2947 | "wrappy": "1" 2948 | } 2949 | }, 2950 | "node_modules/onetime": { 2951 | "version": "5.1.2", 2952 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 2953 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 2954 | "dev": true, 2955 | "dependencies": { 2956 | "mimic-fn": "^2.1.0" 2957 | }, 2958 | "engines": { 2959 | "node": ">=6" 2960 | }, 2961 | "funding": { 2962 | "url": "https://github.com/sponsors/sindresorhus" 2963 | } 2964 | }, 2965 | "node_modules/p-limit": { 2966 | "version": "3.1.0", 2967 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2968 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2969 | "dev": true, 2970 | "dependencies": { 2971 | "yocto-queue": "^0.1.0" 2972 | }, 2973 | "engines": { 2974 | "node": ">=10" 2975 | }, 2976 | "funding": { 2977 | "url": "https://github.com/sponsors/sindresorhus" 2978 | } 2979 | }, 2980 | "node_modules/p-locate": { 2981 | "version": "4.1.0", 2982 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 2983 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 2984 | "dev": true, 2985 | "dependencies": { 2986 | "p-limit": "^2.2.0" 2987 | }, 2988 | "engines": { 2989 | "node": ">=8" 2990 | } 2991 | }, 2992 | "node_modules/p-locate/node_modules/p-limit": { 2993 | "version": "2.3.0", 2994 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2995 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2996 | "dev": true, 2997 | "dependencies": { 2998 | "p-try": "^2.0.0" 2999 | }, 3000 | "engines": { 3001 | "node": ">=6" 3002 | }, 3003 | "funding": { 3004 | "url": "https://github.com/sponsors/sindresorhus" 3005 | } 3006 | }, 3007 | "node_modules/p-try": { 3008 | "version": "2.2.0", 3009 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3010 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3011 | "dev": true, 3012 | "engines": { 3013 | "node": ">=6" 3014 | } 3015 | }, 3016 | "node_modules/parse-json": { 3017 | "version": "5.2.0", 3018 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3019 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3020 | "dev": true, 3021 | "dependencies": { 3022 | "@babel/code-frame": "^7.0.0", 3023 | "error-ex": "^1.3.1", 3024 | "json-parse-even-better-errors": "^2.3.0", 3025 | "lines-and-columns": "^1.1.6" 3026 | }, 3027 | "engines": { 3028 | "node": ">=8" 3029 | }, 3030 | "funding": { 3031 | "url": "https://github.com/sponsors/sindresorhus" 3032 | } 3033 | }, 3034 | "node_modules/path-exists": { 3035 | "version": "4.0.0", 3036 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3037 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3038 | "dev": true, 3039 | "engines": { 3040 | "node": ">=8" 3041 | } 3042 | }, 3043 | "node_modules/path-is-absolute": { 3044 | "version": "1.0.1", 3045 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3046 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3047 | "dev": true, 3048 | "engines": { 3049 | "node": ">=0.10.0" 3050 | } 3051 | }, 3052 | "node_modules/path-key": { 3053 | "version": "3.1.1", 3054 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3055 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3056 | "dev": true, 3057 | "engines": { 3058 | "node": ">=8" 3059 | } 3060 | }, 3061 | "node_modules/path-parse": { 3062 | "version": "1.0.7", 3063 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3064 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3065 | "dev": true 3066 | }, 3067 | "node_modules/picocolors": { 3068 | "version": "1.0.0", 3069 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3070 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 3071 | "dev": true 3072 | }, 3073 | "node_modules/picomatch": { 3074 | "version": "2.3.1", 3075 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3076 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3077 | "dev": true, 3078 | "engines": { 3079 | "node": ">=8.6" 3080 | }, 3081 | "funding": { 3082 | "url": "https://github.com/sponsors/jonschlinkert" 3083 | } 3084 | }, 3085 | "node_modules/pirates": { 3086 | "version": "4.0.6", 3087 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3088 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3089 | "dev": true, 3090 | "engines": { 3091 | "node": ">= 6" 3092 | } 3093 | }, 3094 | "node_modules/pkg-dir": { 3095 | "version": "4.2.0", 3096 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3097 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3098 | "dev": true, 3099 | "dependencies": { 3100 | "find-up": "^4.0.0" 3101 | }, 3102 | "engines": { 3103 | "node": ">=8" 3104 | } 3105 | }, 3106 | "node_modules/pretty-format": { 3107 | "version": "29.7.0", 3108 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3109 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3110 | "dev": true, 3111 | "dependencies": { 3112 | "@jest/schemas": "^29.6.3", 3113 | "ansi-styles": "^5.0.0", 3114 | "react-is": "^18.0.0" 3115 | }, 3116 | "engines": { 3117 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3118 | } 3119 | }, 3120 | "node_modules/pretty-format/node_modules/ansi-styles": { 3121 | "version": "5.2.0", 3122 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3123 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3124 | "dev": true, 3125 | "engines": { 3126 | "node": ">=10" 3127 | }, 3128 | "funding": { 3129 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3130 | } 3131 | }, 3132 | "node_modules/prompts": { 3133 | "version": "2.4.2", 3134 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3135 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3136 | "dev": true, 3137 | "dependencies": { 3138 | "kleur": "^3.0.3", 3139 | "sisteransi": "^1.0.5" 3140 | }, 3141 | "engines": { 3142 | "node": ">= 6" 3143 | } 3144 | }, 3145 | "node_modules/pure-rand": { 3146 | "version": "6.0.4", 3147 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", 3148 | "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", 3149 | "dev": true, 3150 | "funding": [ 3151 | { 3152 | "type": "individual", 3153 | "url": "https://github.com/sponsors/dubzzz" 3154 | }, 3155 | { 3156 | "type": "opencollective", 3157 | "url": "https://opencollective.com/fast-check" 3158 | } 3159 | ] 3160 | }, 3161 | "node_modules/react-is": { 3162 | "version": "18.2.0", 3163 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", 3164 | "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", 3165 | "dev": true 3166 | }, 3167 | "node_modules/require-directory": { 3168 | "version": "2.1.1", 3169 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3170 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3171 | "dev": true, 3172 | "engines": { 3173 | "node": ">=0.10.0" 3174 | } 3175 | }, 3176 | "node_modules/resolve": { 3177 | "version": "1.22.8", 3178 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3179 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3180 | "dev": true, 3181 | "dependencies": { 3182 | "is-core-module": "^2.13.0", 3183 | "path-parse": "^1.0.7", 3184 | "supports-preserve-symlinks-flag": "^1.0.0" 3185 | }, 3186 | "bin": { 3187 | "resolve": "bin/resolve" 3188 | }, 3189 | "funding": { 3190 | "url": "https://github.com/sponsors/ljharb" 3191 | } 3192 | }, 3193 | "node_modules/resolve-cwd": { 3194 | "version": "3.0.0", 3195 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3196 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3197 | "dev": true, 3198 | "dependencies": { 3199 | "resolve-from": "^5.0.0" 3200 | }, 3201 | "engines": { 3202 | "node": ">=8" 3203 | } 3204 | }, 3205 | "node_modules/resolve-from": { 3206 | "version": "5.0.0", 3207 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3208 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3209 | "dev": true, 3210 | "engines": { 3211 | "node": ">=8" 3212 | } 3213 | }, 3214 | "node_modules/resolve.exports": { 3215 | "version": "2.0.2", 3216 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", 3217 | "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", 3218 | "dev": true, 3219 | "engines": { 3220 | "node": ">=10" 3221 | } 3222 | }, 3223 | "node_modules/semver": { 3224 | "version": "6.3.1", 3225 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3226 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3227 | "dev": true, 3228 | "bin": { 3229 | "semver": "bin/semver.js" 3230 | } 3231 | }, 3232 | "node_modules/shebang-command": { 3233 | "version": "2.0.0", 3234 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3235 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3236 | "dev": true, 3237 | "dependencies": { 3238 | "shebang-regex": "^3.0.0" 3239 | }, 3240 | "engines": { 3241 | "node": ">=8" 3242 | } 3243 | }, 3244 | "node_modules/shebang-regex": { 3245 | "version": "3.0.0", 3246 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3247 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3248 | "dev": true, 3249 | "engines": { 3250 | "node": ">=8" 3251 | } 3252 | }, 3253 | "node_modules/signal-exit": { 3254 | "version": "3.0.7", 3255 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3256 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3257 | "dev": true 3258 | }, 3259 | "node_modules/sisteransi": { 3260 | "version": "1.0.5", 3261 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3262 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3263 | "dev": true 3264 | }, 3265 | "node_modules/slash": { 3266 | "version": "3.0.0", 3267 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3268 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3269 | "dev": true, 3270 | "engines": { 3271 | "node": ">=8" 3272 | } 3273 | }, 3274 | "node_modules/source-map": { 3275 | "version": "0.6.1", 3276 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3277 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3278 | "dev": true, 3279 | "engines": { 3280 | "node": ">=0.10.0" 3281 | } 3282 | }, 3283 | "node_modules/source-map-support": { 3284 | "version": "0.5.13", 3285 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3286 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3287 | "dev": true, 3288 | "dependencies": { 3289 | "buffer-from": "^1.0.0", 3290 | "source-map": "^0.6.0" 3291 | } 3292 | }, 3293 | "node_modules/sprintf-js": { 3294 | "version": "1.0.3", 3295 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3296 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3297 | "dev": true 3298 | }, 3299 | "node_modules/stack-utils": { 3300 | "version": "2.0.6", 3301 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3302 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3303 | "dev": true, 3304 | "dependencies": { 3305 | "escape-string-regexp": "^2.0.0" 3306 | }, 3307 | "engines": { 3308 | "node": ">=10" 3309 | } 3310 | }, 3311 | "node_modules/string-length": { 3312 | "version": "4.0.2", 3313 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3314 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3315 | "dev": true, 3316 | "dependencies": { 3317 | "char-regex": "^1.0.2", 3318 | "strip-ansi": "^6.0.0" 3319 | }, 3320 | "engines": { 3321 | "node": ">=10" 3322 | } 3323 | }, 3324 | "node_modules/string-width": { 3325 | "version": "4.2.3", 3326 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3327 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3328 | "dev": true, 3329 | "dependencies": { 3330 | "emoji-regex": "^8.0.0", 3331 | "is-fullwidth-code-point": "^3.0.0", 3332 | "strip-ansi": "^6.0.1" 3333 | }, 3334 | "engines": { 3335 | "node": ">=8" 3336 | } 3337 | }, 3338 | "node_modules/strip-ansi": { 3339 | "version": "6.0.1", 3340 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3341 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3342 | "dev": true, 3343 | "dependencies": { 3344 | "ansi-regex": "^5.0.1" 3345 | }, 3346 | "engines": { 3347 | "node": ">=8" 3348 | } 3349 | }, 3350 | "node_modules/strip-bom": { 3351 | "version": "4.0.0", 3352 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3353 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3354 | "dev": true, 3355 | "engines": { 3356 | "node": ">=8" 3357 | } 3358 | }, 3359 | "node_modules/strip-final-newline": { 3360 | "version": "2.0.0", 3361 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3362 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3363 | "dev": true, 3364 | "engines": { 3365 | "node": ">=6" 3366 | } 3367 | }, 3368 | "node_modules/strip-json-comments": { 3369 | "version": "3.1.1", 3370 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3371 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3372 | "dev": true, 3373 | "engines": { 3374 | "node": ">=8" 3375 | }, 3376 | "funding": { 3377 | "url": "https://github.com/sponsors/sindresorhus" 3378 | } 3379 | }, 3380 | "node_modules/supports-color": { 3381 | "version": "7.2.0", 3382 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3383 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3384 | "dev": true, 3385 | "dependencies": { 3386 | "has-flag": "^4.0.0" 3387 | }, 3388 | "engines": { 3389 | "node": ">=8" 3390 | } 3391 | }, 3392 | "node_modules/supports-preserve-symlinks-flag": { 3393 | "version": "1.0.0", 3394 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3395 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3396 | "dev": true, 3397 | "engines": { 3398 | "node": ">= 0.4" 3399 | }, 3400 | "funding": { 3401 | "url": "https://github.com/sponsors/ljharb" 3402 | } 3403 | }, 3404 | "node_modules/test-exclude": { 3405 | "version": "6.0.0", 3406 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3407 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3408 | "dev": true, 3409 | "dependencies": { 3410 | "@istanbuljs/schema": "^0.1.2", 3411 | "glob": "^7.1.4", 3412 | "minimatch": "^3.0.4" 3413 | }, 3414 | "engines": { 3415 | "node": ">=8" 3416 | } 3417 | }, 3418 | "node_modules/tmpl": { 3419 | "version": "1.0.5", 3420 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3421 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3422 | "dev": true 3423 | }, 3424 | "node_modules/to-fast-properties": { 3425 | "version": "2.0.0", 3426 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3427 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3428 | "dev": true, 3429 | "engines": { 3430 | "node": ">=4" 3431 | } 3432 | }, 3433 | "node_modules/to-regex-range": { 3434 | "version": "5.0.1", 3435 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3436 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3437 | "dev": true, 3438 | "dependencies": { 3439 | "is-number": "^7.0.0" 3440 | }, 3441 | "engines": { 3442 | "node": ">=8.0" 3443 | } 3444 | }, 3445 | "node_modules/type-detect": { 3446 | "version": "4.0.8", 3447 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3448 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3449 | "dev": true, 3450 | "engines": { 3451 | "node": ">=4" 3452 | } 3453 | }, 3454 | "node_modules/type-fest": { 3455 | "version": "0.21.3", 3456 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3457 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3458 | "dev": true, 3459 | "engines": { 3460 | "node": ">=10" 3461 | }, 3462 | "funding": { 3463 | "url": "https://github.com/sponsors/sindresorhus" 3464 | } 3465 | }, 3466 | "node_modules/undici-types": { 3467 | "version": "5.26.5", 3468 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3469 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 3470 | "dev": true 3471 | }, 3472 | "node_modules/update-browserslist-db": { 3473 | "version": "1.0.13", 3474 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", 3475 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", 3476 | "dev": true, 3477 | "funding": [ 3478 | { 3479 | "type": "opencollective", 3480 | "url": "https://opencollective.com/browserslist" 3481 | }, 3482 | { 3483 | "type": "tidelift", 3484 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3485 | }, 3486 | { 3487 | "type": "github", 3488 | "url": "https://github.com/sponsors/ai" 3489 | } 3490 | ], 3491 | "dependencies": { 3492 | "escalade": "^3.1.1", 3493 | "picocolors": "^1.0.0" 3494 | }, 3495 | "bin": { 3496 | "update-browserslist-db": "cli.js" 3497 | }, 3498 | "peerDependencies": { 3499 | "browserslist": ">= 4.21.0" 3500 | } 3501 | }, 3502 | "node_modules/v8-to-istanbul": { 3503 | "version": "9.2.0", 3504 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", 3505 | "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", 3506 | "dev": true, 3507 | "dependencies": { 3508 | "@jridgewell/trace-mapping": "^0.3.12", 3509 | "@types/istanbul-lib-coverage": "^2.0.1", 3510 | "convert-source-map": "^2.0.0" 3511 | }, 3512 | "engines": { 3513 | "node": ">=10.12.0" 3514 | } 3515 | }, 3516 | "node_modules/walker": { 3517 | "version": "1.0.8", 3518 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3519 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3520 | "dev": true, 3521 | "dependencies": { 3522 | "makeerror": "1.0.12" 3523 | } 3524 | }, 3525 | "node_modules/which": { 3526 | "version": "2.0.2", 3527 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3528 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3529 | "dev": true, 3530 | "dependencies": { 3531 | "isexe": "^2.0.0" 3532 | }, 3533 | "bin": { 3534 | "node-which": "bin/node-which" 3535 | }, 3536 | "engines": { 3537 | "node": ">= 8" 3538 | } 3539 | }, 3540 | "node_modules/wrap-ansi": { 3541 | "version": "7.0.0", 3542 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3543 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3544 | "dev": true, 3545 | "dependencies": { 3546 | "ansi-styles": "^4.0.0", 3547 | "string-width": "^4.1.0", 3548 | "strip-ansi": "^6.0.0" 3549 | }, 3550 | "engines": { 3551 | "node": ">=10" 3552 | }, 3553 | "funding": { 3554 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3555 | } 3556 | }, 3557 | "node_modules/wrappy": { 3558 | "version": "1.0.2", 3559 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3560 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3561 | "dev": true 3562 | }, 3563 | "node_modules/write-file-atomic": { 3564 | "version": "4.0.2", 3565 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 3566 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 3567 | "dev": true, 3568 | "dependencies": { 3569 | "imurmurhash": "^0.1.4", 3570 | "signal-exit": "^3.0.7" 3571 | }, 3572 | "engines": { 3573 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 3574 | } 3575 | }, 3576 | "node_modules/y18n": { 3577 | "version": "5.0.8", 3578 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3579 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3580 | "dev": true, 3581 | "engines": { 3582 | "node": ">=10" 3583 | } 3584 | }, 3585 | "node_modules/yallist": { 3586 | "version": "3.1.1", 3587 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3588 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3589 | "dev": true 3590 | }, 3591 | "node_modules/yargs": { 3592 | "version": "17.7.2", 3593 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3594 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3595 | "dev": true, 3596 | "dependencies": { 3597 | "cliui": "^8.0.1", 3598 | "escalade": "^3.1.1", 3599 | "get-caller-file": "^2.0.5", 3600 | "require-directory": "^2.1.1", 3601 | "string-width": "^4.2.3", 3602 | "y18n": "^5.0.5", 3603 | "yargs-parser": "^21.1.1" 3604 | }, 3605 | "engines": { 3606 | "node": ">=12" 3607 | } 3608 | }, 3609 | "node_modules/yargs-parser": { 3610 | "version": "21.1.1", 3611 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3612 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3613 | "dev": true, 3614 | "engines": { 3615 | "node": ">=12" 3616 | } 3617 | }, 3618 | "node_modules/yocto-queue": { 3619 | "version": "0.1.0", 3620 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3621 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3622 | "dev": true, 3623 | "engines": { 3624 | "node": ">=10" 3625 | }, 3626 | "funding": { 3627 | "url": "https://github.com/sponsors/sindresorhus" 3628 | } 3629 | } 3630 | } 3631 | } 3632 | -------------------------------------------------------------------------------- /week-7/fantasy-character-creation-stream/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fantasy-character-creation-stream", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "devDependencies": { 16 | "@types/jest": "^29.5.11", 17 | "jest": "^29.7.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /week-7/fantasy-character-creation-stream/src/character-creator.js: -------------------------------------------------------------------------------- 1 | const { Duplex } = require('stream'); 2 | 3 | class CharacterCreator extends Duplex { 4 | constructor(options) { 5 | super(options); 6 | // TODO: Initialize your class here 7 | } 8 | 9 | _write(chunk, encoding, callback) { 10 | // TODO: Implement your _write method here 11 | } 12 | 13 | _read(size) { 14 | // TODO: Implement your _read method here 15 | } 16 | } 17 | 18 | module.exports = CharacterCreator; -------------------------------------------------------------------------------- /week-7/fantasy-character-creation-stream/test/character-creator.spec.js: -------------------------------------------------------------------------------- 1 | const CharacterCreator = require('../src/character-creator'); 2 | 3 | describe('CharacterCreator', () => { 4 | let characterCreator; 5 | 6 | beforeEach(() => { 7 | characterCreator = new CharacterCreator(); 8 | }); 9 | 10 | test("should process data correctly when written to", (done) => { 11 | // TODO: Write your test here 12 | }); 13 | 14 | test("should emit 'error' when invalid data is written", (done) => { 15 | // TODO: Write your test here 16 | }); 17 | 18 | test("should transform data correctly when written to", (done) => { 19 | // TODO: Write your test here 20 | }); 21 | }); -------------------------------------------------------------------------------- /week-8/fantasy-character-creation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-340/5e955ef645f29c2457fa27130ab418375b67d1e0/week-8/fantasy-character-creation/.DS_Store -------------------------------------------------------------------------------- /week-8/fantasy-character-creation/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": ["jest"] 4 | } 5 | } -------------------------------------------------------------------------------- /week-8/fantasy-character-creation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fantasy-character-creation", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "jest" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "devDependencies": { 16 | "@types/jest": "^29.5.11", 17 | "jest": "^29.7.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /week-8/fantasy-character-creation/src/character-creation.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | /* 4 | * This file allows you to choose between using callbacks or promises (async/await) for handling asynchronous operations. 5 | * 6 | * If you want to use callbacks: 7 | * 1. Uncomment the 'fs' require statement under the "For callbacks" comment. 8 | * 2. Uncomment the 'createCharacter' and 'getCharacters' functions under the "For callbacks" comment. 9 | * 3. Uncomment the 'module.exports' line under the "For callbacks" comment. 10 | * 11 | * If you want to use promises (async/await): 12 | * 1. Uncomment the 'fs' require statement under the "For promises" comment. 13 | * 2. Uncomment the 'createCharacter' and 'getCharacters' functions under the "For promises" comment. 14 | * 3. Uncomment the 'module.exports' line under the "For promises" comment. 15 | */ 16 | 17 | // For callbacks: 18 | /* 19 | const fs = require('fs'); 20 | 21 | function createCharacter(character, callback) { 22 | // TODO: Implement this function 23 | } 24 | 25 | function getCharacters(callback) { 26 | // TODO: Implement this function 27 | } 28 | */ 29 | 30 | // For promises: 31 | /* 32 | const fs = require('fs').promises; 33 | 34 | async function createCharacter(character) { 35 | // TODO: Implement this function 36 | } 37 | 38 | async function getCharacters() { 39 | // TODO: Implement this function 40 | } 41 | */ 42 | 43 | // Uncomment the appropriate exports depending on whether you're using callbacks or promises: 44 | 45 | // module.exports = { createCharacter, getCharacters }; // For callbacks 46 | // module.exports = { createCharacter, getCharacters }; // For promises -------------------------------------------------------------------------------- /week-8/fantasy-character-creation/test/character-creation.spec.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | /** 4 | * This file allows you to choose between using callbacks or promises (async/await) for handling asynchronous operations. 5 | * 6 | * If you want to use callbacks: 7 | * 1. Uncomment the 'fs' require statement under the "For callbacks" comment. 8 | * 9 | * If you want to use promises (async/await): 10 | * 1. Uncomment the 'fs' require statement under the "For promises" comment. 11 | */ 12 | 13 | // For callbacks: 14 | // const fs = require('fs'); 15 | 16 | // For promises: 17 | // const fs = require('fs').promises; 18 | 19 | describe("Character Creation Module", () => { 20 | let createCharacter; 21 | let getCharacters; 22 | 23 | beforeEach(() => { 24 | jest.resetModules(); 25 | // TODO: Set up your mocks here 26 | ({ createCharacter, getCharacters } = require('../src/character-creation')); 27 | }); 28 | 29 | // TODO: Write your tests here. You should have at least three tests: 30 | // 1. Test that createCharacter writes a new character to the file 31 | // 2. Test that getCharacters reads characters from the file 32 | // 3. Test that createCharacter handles errors when writing to the file 33 | }); -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": ["jest"] 4 | } 5 | } -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fantasy-game-characters", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "devDependencies": { 16 | "@types/jest": "^29.5.11", 17 | "jest": "^29.7.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/src/failing-script.js: -------------------------------------------------------------------------------- 1 | // TODO: Implement this script -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/src/game-characters-data.js: -------------------------------------------------------------------------------- 1 | // TODO: Implement this script -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/src/game-characters.js: -------------------------------------------------------------------------------- 1 | // game-characters.js 2 | const { spawn } = require("child_process"); 3 | 4 | class GameCharacters { 5 | constructor() { 6 | // TODO: Set the script file path 7 | } 8 | 9 | getCharacters(callback) { 10 | // TODO: Implement this method 11 | } 12 | } 13 | 14 | module.exports = { GameCharacters }; -------------------------------------------------------------------------------- /week-9/fantasy-game-characters/test/game-characters.spec.js: -------------------------------------------------------------------------------- 1 | // game-characters.spec.js 2 | const { GameCharacters } = require("../src/game-characters"); 3 | 4 | describe("GameCharacters", () => { 5 | let gameCharacters; 6 | 7 | beforeEach(() => { 8 | gameCharacters = new GameCharacters(); 9 | }); 10 | 11 | test("should return game characters data", (done) => { 12 | // TODO: Implement this test 13 | }); 14 | 15 | test("should handle an error when the game characters data script is not found", (done) => { 16 | // TODO: Implement this test 17 | }); 18 | 19 | test("should handle an error when the game characters data script fails", (done) => { 20 | // TODO: Implement this test 21 | }); 22 | }); --------------------------------------------------------------------------------