├── .npmignore ├── wasm ├── source │ ├── wasmGlue.h │ ├── main.cpp │ ├── wasmGlue.cpp │ └── declarations.cpp ├── cmake │ └── CPM.cmake └── CMakeLists.txt ├── .gitignore ├── jestconfig.json ├── source ├── index.ts └── wasmWrapper.ts ├── tsconfig.json ├── .clang-format ├── .github └── workflows │ ├── check.yml │ └── publish.yml ├── LICENSE ├── package.json ├── __tests__ └── wasm.ts ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | /.vscode 4 | /wasm -------------------------------------------------------------------------------- /wasm/source/wasmGlue.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | glue::MapValue wasmGlue(); 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | /cpm_modules 4 | /dist 5 | /.vscode 6 | /source/WasmModule.d.ts 7 | /source/WasmModule.js -------------------------------------------------------------------------------- /jestconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "transform": { 3 | "^.+\\.(t|j)sx?$": "ts-jest" 4 | }, 5 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", 6 | "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"] 7 | } -------------------------------------------------------------------------------- /source/index.ts: -------------------------------------------------------------------------------- 1 | export { 2 | withWasm as withGreeter, 3 | withWasmScope as withGreeterScope, 4 | persistWasmValue as persistGreeterValue, 5 | deletePersistedValue as deleteGreeterValue, 6 | GlueModule as GreeterModule, 7 | } from "./wasmWrapper"; 8 | 9 | export type { Greeter, LanguageCode } from "./WasmModule"; 10 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "module": "commonjs", 5 | "esModuleInterop": true, 6 | "target": "es6", 7 | "moduleResolution": "node", 8 | "sourceMap": true, 9 | "rootDir": "source", 10 | "outDir": "dist", 11 | "declaration": true, 12 | "allowJs": true, 13 | }, 14 | "include": ["source"], 15 | "exclude": ["node_modules", "dist"], 16 | "lib": ["es2015"] 17 | } -------------------------------------------------------------------------------- /wasm/source/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include 4 | 5 | #include "wasmGlue.h" 6 | 7 | int main() { 8 | auto element = wasmGlue(); 9 | glue::emscripten::State state; 10 | 11 | // EmGlue internal funcions 12 | element["setConstructCallback"] = state.getConstructCallbackSetter(); 13 | 14 | element["getExceptionMessage"] = [](size_t exceptionPtr) { 15 | // C++ exceptions in emscripten are captured as pointers. This method extracts the message. 16 | return std::string(reinterpret_cast(exceptionPtr)->what()); 17 | }; 18 | 19 | state.addModule(element); 20 | return 0; 21 | } -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Google 3 | AccessModifierOffset: -2 4 | AlignTrailingComments: true 5 | AllowAllParametersOfDeclarationOnNextLine: false 6 | AlwaysBreakTemplateDeclarations: false 7 | BreakBeforeBraces: Attach 8 | ColumnLimit: 100 9 | ConstructorInitializerAllOnOneLineOrOnePerLine: true 10 | IncludeBlocks: Regroup 11 | IndentPPDirectives: AfterHash 12 | IndentWidth: 2 13 | NamespaceIndentation: All 14 | BreakBeforeBinaryOperators: All 15 | BreakBeforeTernaryOperators: true 16 | --- 17 | # we use prettier for formatting TS code 18 | Language: JavaScript 19 | DisableFormat: true 20 | SortIncludes: false 21 | ... 22 | -------------------------------------------------------------------------------- /wasm/source/wasmGlue.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "wasmGlue.h" 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | glue::MapValue wasmGlue() { 9 | using namespace greeter; 10 | 11 | auto lib = glue::createAnyMap(); 12 | 13 | // clang-format off 14 | 15 | lib["Greeter"] = glue::createClass() 16 | .addConstructor() 17 | .addMethod("greet", &Greeter::greet) 18 | ; 19 | 20 | lib["LanguageCode"] = glue::createEnum() 21 | .addValue("EN", LanguageCode::EN) 22 | .addValue("DE", LanguageCode::DE) 23 | .addValue("ES", LanguageCode::ES) 24 | .addValue("FR", LanguageCode::FR) 25 | ; 26 | 27 | // clang-format on 28 | 29 | return lib; 30 | } 31 | -------------------------------------------------------------------------------- /wasm/cmake/CPM.cmake: -------------------------------------------------------------------------------- 1 | set(CPM_DOWNLOAD_VERSION 0.36.0) 2 | 3 | if(CPM_SOURCE_CACHE) 4 | set(CPM_DOWNLOAD_LOCATION 5 | "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake") 6 | elseif(DEFINED ENV{CPM_SOURCE_CACHE}) 7 | set(CPM_DOWNLOAD_LOCATION 8 | "$ENV{CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake") 9 | else() 10 | set(CPM_DOWNLOAD_LOCATION 11 | "${CMAKE_BINARY_DIR}/cmake/CPM_${CPM_DOWNLOAD_VERSION}.cmake") 12 | endif() 13 | 14 | # Expand relative path. This is important if the provided path contains a tilde 15 | # (~) 16 | get_filename_component(CPM_DOWNLOAD_LOCATION ${CPM_DOWNLOAD_LOCATION} ABSOLUTE) 17 | if(NOT (EXISTS ${CPM_DOWNLOAD_LOCATION})) 18 | message(STATUS "Downloading CPM.cmake to ${CPM_DOWNLOAD_LOCATION}") 19 | file( 20 | DOWNLOAD 21 | https://github.com/cpm-cmake/CPM.cmake/releases/download/v${CPM_DOWNLOAD_VERSION}/CPM.cmake 22 | ${CPM_DOWNLOAD_LOCATION}) 23 | endif() 24 | 25 | include(${CPM_DOWNLOAD_LOCATION}) 26 | -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- 1 | name: Check 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | 17 | - uses: actions/cache@v2 18 | with: 19 | path: | 20 | **/cpm_modules 21 | **/node_modules 22 | key: cpm-node-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake', '**/yarn.lock') }} 23 | 24 | - uses: mymindstorm/setup-emsdk@v10 25 | with: 26 | version: 2.0.31 27 | 28 | - name: Install C++/CMake style checkers 29 | run: pip3 install clang-format==14.0.6 cmake_format==0.6.11 pyyaml 30 | 31 | - name: install 32 | env: 33 | CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules 34 | run: yarn install 35 | 36 | - name: test 37 | run: yarn run test 38 | 39 | - name: check style 40 | run: yarn run check:style 41 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | # Publish new commits to npm. See https://github.com/mikeal/merge-release/blob/master/README.md for more info. 2 | 3 | name: Publish 4 | 5 | on: 6 | push: 7 | branches: 8 | - master 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | 16 | - uses: actions/cache@v2 17 | with: 18 | path: | 19 | **/cpm_modules 20 | **/node_modules 21 | key: cpm-node-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake', '**/yarn.lock') }} 22 | 23 | - uses: mymindstorm/setup-emsdk@v10 24 | with: 25 | version: 2.0.31 26 | 27 | - name: install 28 | env: 29 | CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules 30 | run: yarn install 31 | 32 | - name: test 33 | run: yarn run test 34 | 35 | - name: Publish 36 | if: github.ref == 'refs/heads/master' 37 | uses: mikeal/merge-release@master 38 | env: 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 40 | NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /wasm/source/declarations.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #include 5 | 6 | #include "wasmGlue.h" 7 | 8 | int main() { 9 | auto glueValue = wasmGlue(); 10 | 11 | glue::Context context; 12 | context.addRootMap(glueValue); 13 | 14 | glue::DeclarationPrinter printer; 15 | printer.init(); 16 | 17 | printer.print(std::cout, glueValue, &context); 18 | 19 | // export declarations as PostRunModule (module type after main() has completed) 20 | std::cout << "\n\nexport type GlueModule = {\n"; 21 | for (auto key : glueValue.keys()) { 22 | std::cout << " " << key << ": " 23 | << "typeof " << key << ";\n"; 24 | } 25 | std::cout << "}\n"; 26 | 27 | // EmGlue internal funcions 28 | std::cout << R"(export type EmGlueModule = { 29 | setConstructCallback: (callback: (v: {delete(): void}) => void) => void; 30 | getExceptionMessage: (ptr: number) => string; 31 | })" << '\n'; 32 | 33 | // Emscripten types 34 | std::cout << "export type EmscriptenModule = { callMain: (...args: any[]) => void }\n"; 35 | 36 | // add emscripten module export 37 | std::cout << "export type PostRunModule = GlueModule & EmGlueModule & EmscriptenModule\n"; 38 | std::cout << "export type PreRunModule = { then(arg: (module: PostRunModule) => void): " 39 | "PreRunModule }\n"; 40 | std::cout << "export default function(): PreRunModule"; 41 | std::cout << std::endl; 42 | 43 | return 0; 44 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "modern-wasm-starter", 3 | "version": "0.0.1", 4 | "description": "A starter project for wasm node modules", 5 | "main": "dist/index.js", 6 | "author": "Lars Melchior", 7 | "license": "Unlicense", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/TheLartians/modern-wasm-starter.git" 11 | }, 12 | "devDependencies": { 13 | "@types/jest": "^27.0.2", 14 | "jest": "^27.2.5", 15 | "prettier": "^2.2.1", 16 | "ts-jest": "^27.0.5", 17 | "typescript": "^4.1.3" 18 | }, 19 | "files": [ 20 | "dist" 21 | ], 22 | "types": "dist/index.d.ts", 23 | "scripts": { 24 | "build": "tsc && cp source/WasmModule.d.ts source/WasmModule.js dist/", 25 | "watch": "tsc --watch", 26 | "prepare": "rm -rf dist && yarn run configure:wasm && npm run build:wasm && npm run build", 27 | "configure:wasm": "emcmake cmake -Hwasm -Bbuild/wasm -DCMAKE_BUILD_TYPE=Release", 28 | "build:wasm": "cmake --build build/wasm -j8", 29 | "build:wasm:debug": "emcmake cmake -Hwasm -Bbuild/wasm-debug && cmake --build build/wasm-debug -j8", 30 | "start": "jest --config jestconfig.json --watchAll", 31 | "check:style": "prettier --check \"./**/*[!.d].ts\" && cmake --build build/wasm --target check-format", 32 | "fix:style": "prettier --check \"./**/**[!.d].ts\" --write && cmake --build build/wasm --target fix-format", 33 | "test": "jest --config jestconfig.json" 34 | }, 35 | "dependencies": {}, 36 | "peerDependencies": { 37 | "typescript": ">= 3.8.3" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /__tests__/wasm.ts: -------------------------------------------------------------------------------- 1 | import { 2 | withGreeter, 3 | withGreeterScope, 4 | Greeter, 5 | persistGreeterValue, 6 | LanguageCode, 7 | deleteGreeterValue, 8 | } from "../source"; 9 | 10 | test("Calling wasm methods", async () => { 11 | await withGreeter((greeterModule) => { 12 | const greeter = new greeterModule.Greeter("Wasm"); 13 | expect(greeter.greet(greeterModule.LanguageCode.EN)).toBe("Hello, Wasm!"); 14 | }); 15 | }); 16 | 17 | // non-public helper functions for testing 18 | import { 19 | __getCurrentWasmScope, 20 | __getCurrentWasmScopeStackSize, 21 | } from "../source/wasmWrapper"; 22 | 23 | test("Scoping", async () => { 24 | expect(__getCurrentWasmScopeStackSize()).toBe(0); 25 | await withGreeter((greeterModule) => { 26 | expect(__getCurrentWasmScopeStackSize()).toBe(1); 27 | expect(__getCurrentWasmScope().length).toBe(0); 28 | new greeterModule.Greeter("Outer"); 29 | expect(__getCurrentWasmScope().length).toBe(1); 30 | withGreeterScope(() => { 31 | expect(__getCurrentWasmScopeStackSize()).toBe(2); 32 | expect(__getCurrentWasmScope().length).toBe(0); 33 | new greeterModule.Greeter("Inner 1"); 34 | expect(__getCurrentWasmScope().length).toBe(1); 35 | new greeterModule.Greeter("Inner 2"); 36 | expect(__getCurrentWasmScope().length).toBe(2); 37 | }); 38 | expect(__getCurrentWasmScopeStackSize()).toBe(1); 39 | }); 40 | expect(__getCurrentWasmScopeStackSize()).toBe(0); 41 | }); 42 | 43 | test("Persisting values", async () => { 44 | let greeter: Greeter; 45 | let language: LanguageCode; 46 | 47 | await withGreeter((greeterModule) => { 48 | greeter = persistGreeterValue(new greeterModule.Greeter("Global")); 49 | language = greeterModule.LanguageCode.EN; 50 | expect(__getCurrentWasmScope().length).toBe(0); 51 | }).then(() => { 52 | expect(greeter.greet(language)).toBe("Hello, Global!"); 53 | deleteGreeterValue(greeter); 54 | }); 55 | }); 56 | -------------------------------------------------------------------------------- /wasm/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.5 FATAL_ERROR) 2 | 3 | project(TypeScriptXX LANGUAGES CXX) 4 | 5 | # ---- Setup ---- 6 | 7 | set(CMAKE_CXX_FLAGS_RELEASE "-Oz -g0") 8 | 9 | # ---- Dependencies ---- 10 | # Add C++ dependencies through CPM.cmake. See 11 | # https://github.com/TheLartians/CPM.cmake for more info. 12 | include(cmake/CPM.cmake) 13 | 14 | # Update transitive dependencies to more recent versions (this has to be done 15 | # before adding derived projects) 16 | cpmaddpackage("gh:TheLartians/PackageProject.cmake@1.6.0") 17 | cpmaddpackage("gh:TheLartians/Glue@1.5.1") 18 | 19 | # Format.cmake is used to run clang-format 20 | cpmaddpackage("gh:TheLartians/Format.cmake@1.7.2") 21 | 22 | # EmGlue is used to create the TypeScript declarations and the JavaScript 23 | # bindings 24 | cpmaddpackage("gh:TheLartians/EmGlue@0.6.1") 25 | 26 | # using the ModernCppStarter as an example project for JS bindings replace this 27 | # with the library you want to use 28 | cpmaddpackage(NAME Greeter GITHUB_REPOSITORY TheLartians/ModernCppStarter 29 | VERSION 0.17.3) 30 | 31 | # ---- Create wams glue library ---- 32 | 33 | add_library(wasmGlue source/wasmGlue.cpp) 34 | set_target_properties(wasmGlue PROPERTIES CXX_STANDARD 17) 35 | 36 | # link dependencies, replace `Greeter::Greeter` with your library 37 | target_link_libraries(wasmGlue PUBLIC Glue Greeter::Greeter) 38 | 39 | # ---- Create main library ---- 40 | 41 | set(EMSCRIPTEN_FLAGS 42 | "-s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -s \"EXPORTED_RUNTIME_METHODS=['addOnPostRun','callMain']\" -s MODULARIZE=1 -s SINGLE_FILE=1 -s INVOKE_RUN=0" 43 | ) 44 | 45 | add_executable(WasmModule source/main.cpp) 46 | target_link_libraries(WasmModule wasmGlue EmGlue ${EMSCRIPTEN_FLAGS}) 47 | 48 | set_target_properties(WasmModule PROPERTIES CXX_STANDARD 17 OUTPUT_NAME 49 | WasmModule) 50 | 51 | # ---- Create declarations printer ---- 52 | 53 | add_executable(WasmModuleDeclarations source/declarations.cpp) 54 | set_target_properties(WasmModuleDeclarations PROPERTIES CXX_STANDARD 17) 55 | target_link_libraries(WasmModuleDeclarations wasmGlue) 56 | 57 | # ---- Move library and declarations into place ---- 58 | 59 | add_custom_command( 60 | TARGET WasmModule 61 | POST_BUILD 62 | COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/WasmModule.js 63 | ${CMAKE_CURRENT_LIST_DIR}/../source/WasmModule.js) 64 | 65 | add_custom_command( 66 | TARGET WasmModuleDeclarations 67 | POST_BUILD 68 | COMMAND node ${CMAKE_CURRENT_BINARY_DIR}/WasmModuleDeclarations.js > 69 | ${CMAKE_CURRENT_LIST_DIR}/../source/WasmModule.d.ts) 70 | -------------------------------------------------------------------------------- /source/wasmWrapper.ts: -------------------------------------------------------------------------------- 1 | import wasmLoader, { 2 | GlueModule, 3 | PostRunModule, 4 | PreRunModule, 5 | } from "./WasmModule.js"; 6 | 7 | export { GlueModule } from "./WasmModule.js"; 8 | 9 | type Deletable = { 10 | delete(): void; 11 | }; 12 | 13 | type Scope = Deletable[]; 14 | 15 | const scopeStack: Scope[] = []; 16 | 17 | function pushScope() { 18 | scopeStack.push([]); 19 | } 20 | 21 | function currentScope() { 22 | return scopeStack[scopeStack.length - 1]; 23 | } 24 | 25 | function popScope() { 26 | const scope = scopeStack.pop(); 27 | if (scope) { 28 | for (const v of scope) { 29 | v.delete(); 30 | } 31 | } else { 32 | console.warn("wasm scope underflow"); 33 | } 34 | } 35 | 36 | let loaded: PreRunModule | undefined; 37 | let wasmModule: PostRunModule | undefined; 38 | 39 | /** 40 | * Returns a promise that will resolve after the main method has finished 41 | */ 42 | function getWasm() { 43 | if (wasmModule) { 44 | return Promise.resolve(wasmModule); 45 | } else { 46 | return new Promise((res, rej) => { 47 | if (wasmModule) { 48 | res(wasmModule); 49 | } else { 50 | loaded = loaded || wasmLoader(); 51 | loaded.then((module) => { 52 | if (!wasmModule) { 53 | module.callMain(); 54 | module.setConstructCallback((v) => currentScope()?.push(v)); 55 | wasmModule = module; 56 | // remove `then` property to resolve promise without creating an 57 | // endless loop 58 | (loaded as any)["then"] = undefined; 59 | } 60 | res(wasmModule); 61 | }); 62 | } 63 | }); 64 | } 65 | } 66 | 67 | /** 68 | * get the scope for debugging and testing 69 | * @param idx the scope index to get from the top 70 | */ 71 | export function __getCurrentWasmScope(idx = 0) { 72 | return scopeStack[scopeStack.length - 1 - idx]; 73 | } 74 | 75 | /** 76 | * get the scope stack size for debugging and testing 77 | */ 78 | export function __getCurrentWasmScopeStackSize() { 79 | return scopeStack.length; 80 | } 81 | 82 | /** 83 | * persist a value from the current scope so it will stay alive after the scope 84 | * is closed 85 | * @param value: the wasm value to be persisted 86 | */ 87 | export function persistWasmValue(value: V) { 88 | const scope = currentScope(); 89 | if (scope) { 90 | const idx = scope.indexOf((value as any)["__glue_instance"]); 91 | if (idx != -1) { 92 | scope.splice(idx, 1); 93 | } else { 94 | console.error( 95 | `could not persist value: value not found in current scope.` 96 | ); 97 | } 98 | } else { 99 | console.error(`persisting a value outside of the current scope.`); 100 | } 101 | return value; 102 | } 103 | 104 | /** 105 | * delete persisted values 106 | */ 107 | export function deletePersistedValue(value: any) { 108 | (value as Deletable).delete(); 109 | } 110 | 111 | /** 112 | * Opens a scope and calls `callback` inside 113 | * @param callback 114 | */ 115 | export function withWasmScope(callback: () => R) { 116 | pushScope(); 117 | let result: R; 118 | try { 119 | result = callback(); 120 | } catch (error) { 121 | if (typeof error === "number") { 122 | throw new Error(wasmModule!.getExceptionMessage(error)); 123 | } else { 124 | throw error; 125 | } 126 | } finally { 127 | popScope(); 128 | } 129 | return result; 130 | } 131 | 132 | /** 133 | * Calls `callback` asynchronously inside a wasm scope with the wasm module as 134 | * an argument 135 | * @param callback 136 | */ 137 | export async function withWasm(callback: (module: GlueModule) => R) { 138 | const glue = await getWasm(); 139 | return withWasmScope(() => callback(glue)); 140 | } 141 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Check](https://github.com/TheLartians/modern-wasm-starter/workflows/Check/badge.svg) 2 | [![npm version](https://badge.fury.io/js/modern-wasm-starter.svg)](https://badge.fury.io/js/modern-wasm-starter) 3 | 4 | # Modern WASM Starter 5 | 6 | A starter template to easily create WebAssembly packages for npm using type-safe C++ code with automatic declarations. 7 | This project should take care of most of the boilerplate code required to create a modern and type-safe WebAssembly project. 8 | 9 | ## Features 10 | 11 | - Integrated node.js packaging and dependency management through [npm](https://www.npmjs.com) 12 | - Type safety through [TypeScript](https://www.typescriptlang.org) 13 | - [CMake](https://cmake.org) build system 14 | - Integrated C++ dependency management using [CPM.cmake](https://github.com/TheLartians/CPM.cmake) 15 | - Automatic bindings and typescript declarations using the [Glue](https://github.com/TheLartians/Glue) library 16 | - Integrated test suite using [jest](https://jestjs.io) 17 | - Code formatting enforced through [prettier](https://prettier.io) and [Format.cmake](https://github.com/TheLartians/Format.cmake) 18 | - Semi-automatic memory management using [scopes](#memory-management) 19 | - A [GitHub action](.github/workflows/publish.yml) to automatically [update the npm release](https://github.com/mikeal/merge-release) for each commit to master 20 | 21 | ## Usage 22 | 23 | ### Get started 24 | 25 | Use this repo [as a template](https://github.com/TheLartians/modern-wasm-starter/generate) to quickly start your own projects! 26 | 27 | ### Build WebAssembly code 28 | 29 | To be able to build WebAssembly code from C++ using Emscripten, you must first [install and activate the emsdk](https://emscripten.org/docs/getting_started/downloads.html). 30 | To compile the C++ code to WebAssembly, run the following command from the project's root directory. 31 | 32 | ```bash 33 | npm install 34 | ``` 35 | 36 | This will create the files `source/WasmModule.js` and `source/WasmModule.d.ts` from the C++ code in the [wasm](wasm) directory and transpile everything into a JavaScript module in the `dist` directory. 37 | To build your code as wasm, add it as a CPM.cmake dependency in the [CMakeLists.txt](wasm/CMakeLists.txt) file and define the bindings in the [wasmGlue.cpp](wasm/source/wasmGlue.cpp) source file. 38 | To update the wasm and TypeScript declarations, you can run `npm run build:wasm`. 39 | 40 | ### Run tests 41 | 42 | The following command will build and run the test suite. 43 | 44 | ```bash 45 | npm test 46 | ``` 47 | 48 | For rapid developing, tests can also be started in watch mode, which will automatically run on any code change to the TypeScript or JavaScript sources. 49 | 50 | ```bash 51 | npm start 52 | ``` 53 | 54 | ### Fix code style 55 | 56 | The following command will run prettier on the TypeScript and clang-format on the C++ source code. 57 | 58 | ``` 59 | npm run fix:style 60 | ``` 61 | 62 | ## Writing bindings 63 | 64 | This starter uses the Glue project to create bindings and declarations. 65 | Update the [wasmGlue.cpp](wasm/source/wasmGlue.cpp) source files to expose new classes or functions. 66 | See the [Glue](https://github.com/TheLartians/Glue) or [EmGlue](https://github.com/TheLartians/EmGlue) projects for documentation and examples. 67 | 68 | ## Memory management 69 | 70 | As JavaScript has no destructors, any created C++ objects must be deleted manually, or they will be leaked. 71 | To simplify this, the project introduces memory scopes that semi-automatically take care of memory management. 72 | The usage is illustrated below. 73 | 74 | ```ts 75 | import { withGreeter } from "modern-wasm-starter"; 76 | 77 | // `withGreeter()` will run the callback asynchronously in a memory scope and return the result in a `Promise` 78 | withGreeter(greeterModule => { 79 | // construct a new C++ `Greeter` instance 80 | const greeter = new greeterModule.Greeter("Wasm"); 81 | 82 | // call a member function 83 | console.log(greeter.greet(greeterModule.LanguageCode.EN)); 84 | 85 | // any created C++ objects will be destroyed after the function exits, unless they are persisted 86 | }); 87 | ``` 88 | 89 | To see additional techniques, such as synchronous scopes or persisting and removing values outside of the scope, check out the [tests](__tests__/wasm.ts) or [API](source/wasmWrapper.ts). 90 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.15.8": 6 | version "7.15.8" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" 8 | integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== 9 | dependencies: 10 | "@babel/highlight" "^7.14.5" 11 | 12 | "@babel/compat-data@^7.15.0": 13 | version "7.15.0" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" 15 | integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== 16 | 17 | "@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": 18 | version "7.15.8" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.8.tgz#195b9f2bffe995d2c6c159e72fe525b4114e8c10" 20 | integrity sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og== 21 | dependencies: 22 | "@babel/code-frame" "^7.15.8" 23 | "@babel/generator" "^7.15.8" 24 | "@babel/helper-compilation-targets" "^7.15.4" 25 | "@babel/helper-module-transforms" "^7.15.8" 26 | "@babel/helpers" "^7.15.4" 27 | "@babel/parser" "^7.15.8" 28 | "@babel/template" "^7.15.4" 29 | "@babel/traverse" "^7.15.4" 30 | "@babel/types" "^7.15.6" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.7.2": 39 | version "7.15.8" 40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.8.tgz#fa56be6b596952ceb231048cf84ee499a19c0cd1" 41 | integrity sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g== 42 | dependencies: 43 | "@babel/types" "^7.15.6" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-compilation-targets@^7.15.4": 48 | version "7.15.4" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" 50 | integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ== 51 | dependencies: 52 | "@babel/compat-data" "^7.15.0" 53 | "@babel/helper-validator-option" "^7.14.5" 54 | browserslist "^4.16.6" 55 | semver "^6.3.0" 56 | 57 | "@babel/helper-function-name@^7.15.4": 58 | version "7.15.4" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" 60 | integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw== 61 | dependencies: 62 | "@babel/helper-get-function-arity" "^7.15.4" 63 | "@babel/template" "^7.15.4" 64 | "@babel/types" "^7.15.4" 65 | 66 | "@babel/helper-get-function-arity@^7.15.4": 67 | version "7.15.4" 68 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" 69 | integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA== 70 | dependencies: 71 | "@babel/types" "^7.15.4" 72 | 73 | "@babel/helper-hoist-variables@^7.15.4": 74 | version "7.15.4" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" 76 | integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA== 77 | dependencies: 78 | "@babel/types" "^7.15.4" 79 | 80 | "@babel/helper-member-expression-to-functions@^7.15.4": 81 | version "7.15.4" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" 83 | integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA== 84 | dependencies: 85 | "@babel/types" "^7.15.4" 86 | 87 | "@babel/helper-module-imports@^7.15.4": 88 | version "7.15.4" 89 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 90 | integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== 91 | dependencies: 92 | "@babel/types" "^7.15.4" 93 | 94 | "@babel/helper-module-transforms@^7.15.8": 95 | version "7.15.8" 96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz#d8c0e75a87a52e374a8f25f855174786a09498b2" 97 | integrity sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg== 98 | dependencies: 99 | "@babel/helper-module-imports" "^7.15.4" 100 | "@babel/helper-replace-supers" "^7.15.4" 101 | "@babel/helper-simple-access" "^7.15.4" 102 | "@babel/helper-split-export-declaration" "^7.15.4" 103 | "@babel/helper-validator-identifier" "^7.15.7" 104 | "@babel/template" "^7.15.4" 105 | "@babel/traverse" "^7.15.4" 106 | "@babel/types" "^7.15.6" 107 | 108 | "@babel/helper-optimise-call-expression@^7.15.4": 109 | version "7.15.4" 110 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" 111 | integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw== 112 | dependencies: 113 | "@babel/types" "^7.15.4" 114 | 115 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": 116 | version "7.14.5" 117 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" 118 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== 119 | 120 | "@babel/helper-replace-supers@^7.15.4": 121 | version "7.15.4" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" 123 | integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw== 124 | dependencies: 125 | "@babel/helper-member-expression-to-functions" "^7.15.4" 126 | "@babel/helper-optimise-call-expression" "^7.15.4" 127 | "@babel/traverse" "^7.15.4" 128 | "@babel/types" "^7.15.4" 129 | 130 | "@babel/helper-simple-access@^7.15.4": 131 | version "7.15.4" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" 133 | integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg== 134 | dependencies: 135 | "@babel/types" "^7.15.4" 136 | 137 | "@babel/helper-split-export-declaration@^7.15.4": 138 | version "7.15.4" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" 140 | integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw== 141 | dependencies: 142 | "@babel/types" "^7.15.4" 143 | 144 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7": 145 | version "7.15.7" 146 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 147 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 148 | 149 | "@babel/helper-validator-option@^7.14.5": 150 | version "7.14.5" 151 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 152 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 153 | 154 | "@babel/helpers@^7.15.4": 155 | version "7.15.4" 156 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" 157 | integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ== 158 | dependencies: 159 | "@babel/template" "^7.15.4" 160 | "@babel/traverse" "^7.15.4" 161 | "@babel/types" "^7.15.4" 162 | 163 | "@babel/highlight@^7.14.5": 164 | version "7.14.5" 165 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 166 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 167 | dependencies: 168 | "@babel/helper-validator-identifier" "^7.14.5" 169 | chalk "^2.0.0" 170 | js-tokens "^4.0.0" 171 | 172 | "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8", "@babel/parser@^7.7.2": 173 | version "7.15.8" 174 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.8.tgz#7bacdcbe71bdc3ff936d510c15dcea7cf0b99016" 175 | integrity sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA== 176 | 177 | "@babel/plugin-syntax-async-generators@^7.8.4": 178 | version "7.8.4" 179 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 180 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 181 | dependencies: 182 | "@babel/helper-plugin-utils" "^7.8.0" 183 | 184 | "@babel/plugin-syntax-bigint@^7.8.3": 185 | version "7.8.3" 186 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 187 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 188 | dependencies: 189 | "@babel/helper-plugin-utils" "^7.8.0" 190 | 191 | "@babel/plugin-syntax-class-properties@^7.8.3": 192 | version "7.12.13" 193 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 194 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 195 | dependencies: 196 | "@babel/helper-plugin-utils" "^7.12.13" 197 | 198 | "@babel/plugin-syntax-import-meta@^7.8.3": 199 | version "7.10.4" 200 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 201 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 202 | dependencies: 203 | "@babel/helper-plugin-utils" "^7.10.4" 204 | 205 | "@babel/plugin-syntax-json-strings@^7.8.3": 206 | version "7.8.3" 207 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 208 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 209 | dependencies: 210 | "@babel/helper-plugin-utils" "^7.8.0" 211 | 212 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 213 | version "7.10.4" 214 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 215 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 216 | dependencies: 217 | "@babel/helper-plugin-utils" "^7.10.4" 218 | 219 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 220 | version "7.8.3" 221 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 222 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 223 | dependencies: 224 | "@babel/helper-plugin-utils" "^7.8.0" 225 | 226 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 227 | version "7.10.4" 228 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 229 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 230 | dependencies: 231 | "@babel/helper-plugin-utils" "^7.10.4" 232 | 233 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 234 | version "7.8.3" 235 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 236 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 237 | dependencies: 238 | "@babel/helper-plugin-utils" "^7.8.0" 239 | 240 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 241 | version "7.8.3" 242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 243 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 244 | dependencies: 245 | "@babel/helper-plugin-utils" "^7.8.0" 246 | 247 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 248 | version "7.8.3" 249 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 250 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 251 | dependencies: 252 | "@babel/helper-plugin-utils" "^7.8.0" 253 | 254 | "@babel/plugin-syntax-top-level-await@^7.8.3": 255 | version "7.14.5" 256 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 257 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 258 | dependencies: 259 | "@babel/helper-plugin-utils" "^7.14.5" 260 | 261 | "@babel/plugin-syntax-typescript@^7.7.2": 262 | version "7.14.5" 263 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" 264 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== 265 | dependencies: 266 | "@babel/helper-plugin-utils" "^7.14.5" 267 | 268 | "@babel/template@^7.15.4", "@babel/template@^7.3.3": 269 | version "7.15.4" 270 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" 271 | integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg== 272 | dependencies: 273 | "@babel/code-frame" "^7.14.5" 274 | "@babel/parser" "^7.15.4" 275 | "@babel/types" "^7.15.4" 276 | 277 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2": 278 | version "7.15.4" 279 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" 280 | integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA== 281 | dependencies: 282 | "@babel/code-frame" "^7.14.5" 283 | "@babel/generator" "^7.15.4" 284 | "@babel/helper-function-name" "^7.15.4" 285 | "@babel/helper-hoist-variables" "^7.15.4" 286 | "@babel/helper-split-export-declaration" "^7.15.4" 287 | "@babel/parser" "^7.15.4" 288 | "@babel/types" "^7.15.4" 289 | debug "^4.1.0" 290 | globals "^11.1.0" 291 | 292 | "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 293 | version "7.15.6" 294 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 295 | integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig== 296 | dependencies: 297 | "@babel/helper-validator-identifier" "^7.14.9" 298 | to-fast-properties "^2.0.0" 299 | 300 | "@bcoe/v8-coverage@^0.2.3": 301 | version "0.2.3" 302 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 303 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 304 | 305 | "@istanbuljs/load-nyc-config@^1.0.0": 306 | version "1.1.0" 307 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 308 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 309 | dependencies: 310 | camelcase "^5.3.1" 311 | find-up "^4.1.0" 312 | get-package-type "^0.1.0" 313 | js-yaml "^3.13.1" 314 | resolve-from "^5.0.0" 315 | 316 | "@istanbuljs/schema@^0.1.2": 317 | version "0.1.3" 318 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 319 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 320 | 321 | "@jest/console@^27.2.5": 322 | version "27.2.5" 323 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.2.5.tgz#bddbf8d41c191f17b52bf0c9e6c0d18605e35d6e" 324 | integrity sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ== 325 | dependencies: 326 | "@jest/types" "^27.2.5" 327 | "@types/node" "*" 328 | chalk "^4.0.0" 329 | jest-message-util "^27.2.5" 330 | jest-util "^27.2.5" 331 | slash "^3.0.0" 332 | 333 | "@jest/core@^27.2.5": 334 | version "27.2.5" 335 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.2.5.tgz#854c314708cee0d892ac4f531b9129f00a21ee69" 336 | integrity sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA== 337 | dependencies: 338 | "@jest/console" "^27.2.5" 339 | "@jest/reporters" "^27.2.5" 340 | "@jest/test-result" "^27.2.5" 341 | "@jest/transform" "^27.2.5" 342 | "@jest/types" "^27.2.5" 343 | "@types/node" "*" 344 | ansi-escapes "^4.2.1" 345 | chalk "^4.0.0" 346 | emittery "^0.8.1" 347 | exit "^0.1.2" 348 | graceful-fs "^4.2.4" 349 | jest-changed-files "^27.2.5" 350 | jest-config "^27.2.5" 351 | jest-haste-map "^27.2.5" 352 | jest-message-util "^27.2.5" 353 | jest-regex-util "^27.0.6" 354 | jest-resolve "^27.2.5" 355 | jest-resolve-dependencies "^27.2.5" 356 | jest-runner "^27.2.5" 357 | jest-runtime "^27.2.5" 358 | jest-snapshot "^27.2.5" 359 | jest-util "^27.2.5" 360 | jest-validate "^27.2.5" 361 | jest-watcher "^27.2.5" 362 | micromatch "^4.0.4" 363 | rimraf "^3.0.0" 364 | slash "^3.0.0" 365 | strip-ansi "^6.0.0" 366 | 367 | "@jest/environment@^27.2.5": 368 | version "27.2.5" 369 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.2.5.tgz#b85517ccfcec55690c82c56f5a01a3b30c5e3c84" 370 | integrity sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg== 371 | dependencies: 372 | "@jest/fake-timers" "^27.2.5" 373 | "@jest/types" "^27.2.5" 374 | "@types/node" "*" 375 | jest-mock "^27.2.5" 376 | 377 | "@jest/fake-timers@^27.2.5": 378 | version "27.2.5" 379 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.2.5.tgz#0c7e5762d7bfe6e269e7b49279b097a52a42f0a0" 380 | integrity sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg== 381 | dependencies: 382 | "@jest/types" "^27.2.5" 383 | "@sinonjs/fake-timers" "^8.0.1" 384 | "@types/node" "*" 385 | jest-message-util "^27.2.5" 386 | jest-mock "^27.2.5" 387 | jest-util "^27.2.5" 388 | 389 | "@jest/globals@^27.2.5": 390 | version "27.2.5" 391 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.2.5.tgz#4115538f98ed6cee4051a90fdbd0854062902099" 392 | integrity sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g== 393 | dependencies: 394 | "@jest/environment" "^27.2.5" 395 | "@jest/types" "^27.2.5" 396 | expect "^27.2.5" 397 | 398 | "@jest/reporters@^27.2.5": 399 | version "27.2.5" 400 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.2.5.tgz#65198ed1f3f4449e3f656129764dc6c5bb27ebe3" 401 | integrity sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ== 402 | dependencies: 403 | "@bcoe/v8-coverage" "^0.2.3" 404 | "@jest/console" "^27.2.5" 405 | "@jest/test-result" "^27.2.5" 406 | "@jest/transform" "^27.2.5" 407 | "@jest/types" "^27.2.5" 408 | "@types/node" "*" 409 | chalk "^4.0.0" 410 | collect-v8-coverage "^1.0.0" 411 | exit "^0.1.2" 412 | glob "^7.1.2" 413 | graceful-fs "^4.2.4" 414 | istanbul-lib-coverage "^3.0.0" 415 | istanbul-lib-instrument "^4.0.3" 416 | istanbul-lib-report "^3.0.0" 417 | istanbul-lib-source-maps "^4.0.0" 418 | istanbul-reports "^3.0.2" 419 | jest-haste-map "^27.2.5" 420 | jest-resolve "^27.2.5" 421 | jest-util "^27.2.5" 422 | jest-worker "^27.2.5" 423 | slash "^3.0.0" 424 | source-map "^0.6.0" 425 | string-length "^4.0.1" 426 | terminal-link "^2.0.0" 427 | v8-to-istanbul "^8.1.0" 428 | 429 | "@jest/source-map@^27.0.6": 430 | version "27.0.6" 431 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" 432 | integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g== 433 | dependencies: 434 | callsites "^3.0.0" 435 | graceful-fs "^4.2.4" 436 | source-map "^0.6.0" 437 | 438 | "@jest/test-result@^27.2.5": 439 | version "27.2.5" 440 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.2.5.tgz#e9f73cf6cd5e2cc6eb3105339248dea211f9320e" 441 | integrity sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg== 442 | dependencies: 443 | "@jest/console" "^27.2.5" 444 | "@jest/types" "^27.2.5" 445 | "@types/istanbul-lib-coverage" "^2.0.0" 446 | collect-v8-coverage "^1.0.0" 447 | 448 | "@jest/test-sequencer@^27.2.5": 449 | version "27.2.5" 450 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz#ed5ae91c00e623fb719111d58e380395e16cefbb" 451 | integrity sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q== 452 | dependencies: 453 | "@jest/test-result" "^27.2.5" 454 | graceful-fs "^4.2.4" 455 | jest-haste-map "^27.2.5" 456 | jest-runtime "^27.2.5" 457 | 458 | "@jest/transform@^27.2.5": 459 | version "27.2.5" 460 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.2.5.tgz#02b08862a56dbedddf0ba3c2eae41e049a250e29" 461 | integrity sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ== 462 | dependencies: 463 | "@babel/core" "^7.1.0" 464 | "@jest/types" "^27.2.5" 465 | babel-plugin-istanbul "^6.0.0" 466 | chalk "^4.0.0" 467 | convert-source-map "^1.4.0" 468 | fast-json-stable-stringify "^2.0.0" 469 | graceful-fs "^4.2.4" 470 | jest-haste-map "^27.2.5" 471 | jest-regex-util "^27.0.6" 472 | jest-util "^27.2.5" 473 | micromatch "^4.0.4" 474 | pirates "^4.0.1" 475 | slash "^3.0.0" 476 | source-map "^0.6.1" 477 | write-file-atomic "^3.0.0" 478 | 479 | "@jest/types@^27.2.5": 480 | version "27.2.5" 481 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.2.5.tgz#420765c052605e75686982d24b061b4cbba22132" 482 | integrity sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ== 483 | dependencies: 484 | "@types/istanbul-lib-coverage" "^2.0.0" 485 | "@types/istanbul-reports" "^3.0.0" 486 | "@types/node" "*" 487 | "@types/yargs" "^16.0.0" 488 | chalk "^4.0.0" 489 | 490 | "@sinonjs/commons@^1.7.0": 491 | version "1.8.3" 492 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 493 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 494 | dependencies: 495 | type-detect "4.0.8" 496 | 497 | "@sinonjs/fake-timers@^8.0.1": 498 | version "8.0.1" 499 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94" 500 | integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew== 501 | dependencies: 502 | "@sinonjs/commons" "^1.7.0" 503 | 504 | "@tootallnate/once@1": 505 | version "1.1.2" 506 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 507 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 508 | 509 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 510 | version "7.1.16" 511 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702" 512 | integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ== 513 | dependencies: 514 | "@babel/parser" "^7.1.0" 515 | "@babel/types" "^7.0.0" 516 | "@types/babel__generator" "*" 517 | "@types/babel__template" "*" 518 | "@types/babel__traverse" "*" 519 | 520 | "@types/babel__generator@*": 521 | version "7.6.3" 522 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" 523 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== 524 | dependencies: 525 | "@babel/types" "^7.0.0" 526 | 527 | "@types/babel__template@*": 528 | version "7.4.1" 529 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 530 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 531 | dependencies: 532 | "@babel/parser" "^7.1.0" 533 | "@babel/types" "^7.0.0" 534 | 535 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 536 | version "7.14.2" 537 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 538 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 539 | dependencies: 540 | "@babel/types" "^7.3.0" 541 | 542 | "@types/graceful-fs@^4.1.2": 543 | version "4.1.5" 544 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 545 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 546 | dependencies: 547 | "@types/node" "*" 548 | 549 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 550 | version "2.0.3" 551 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 552 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 553 | 554 | "@types/istanbul-lib-report@*": 555 | version "3.0.0" 556 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 557 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 558 | dependencies: 559 | "@types/istanbul-lib-coverage" "*" 560 | 561 | "@types/istanbul-reports@^3.0.0": 562 | version "3.0.1" 563 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 564 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 565 | dependencies: 566 | "@types/istanbul-lib-report" "*" 567 | 568 | "@types/jest@^27.0.2": 569 | version "27.0.2" 570 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.2.tgz#ac383c4d4aaddd29bbf2b916d8d105c304a5fcd7" 571 | integrity sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA== 572 | dependencies: 573 | jest-diff "^27.0.0" 574 | pretty-format "^27.0.0" 575 | 576 | "@types/node@*": 577 | version "16.10.3" 578 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.10.3.tgz#7a8f2838603ea314d1d22bb3171d899e15c57bd5" 579 | integrity sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ== 580 | 581 | "@types/prettier@^2.1.5": 582 | version "2.4.1" 583 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb" 584 | integrity sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw== 585 | 586 | "@types/stack-utils@^2.0.0": 587 | version "2.0.1" 588 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 589 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 590 | 591 | "@types/yargs-parser@*": 592 | version "20.2.1" 593 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 594 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 595 | 596 | "@types/yargs@^16.0.0": 597 | version "16.0.4" 598 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 599 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 600 | dependencies: 601 | "@types/yargs-parser" "*" 602 | 603 | abab@^2.0.3, abab@^2.0.5: 604 | version "2.0.5" 605 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 606 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 607 | 608 | acorn-globals@^6.0.0: 609 | version "6.0.0" 610 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 611 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 612 | dependencies: 613 | acorn "^7.1.1" 614 | acorn-walk "^7.1.1" 615 | 616 | acorn-walk@^7.1.1: 617 | version "7.2.0" 618 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 619 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 620 | 621 | acorn@^7.1.1: 622 | version "7.4.1" 623 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 624 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 625 | 626 | acorn@^8.2.4: 627 | version "8.5.0" 628 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" 629 | integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== 630 | 631 | agent-base@6: 632 | version "6.0.2" 633 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 634 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 635 | dependencies: 636 | debug "4" 637 | 638 | ansi-escapes@^4.2.1: 639 | version "4.3.2" 640 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 641 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 642 | dependencies: 643 | type-fest "^0.21.3" 644 | 645 | ansi-regex@^5.0.1: 646 | version "5.0.1" 647 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 648 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 649 | 650 | ansi-styles@^3.2.1: 651 | version "3.2.1" 652 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 653 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 654 | dependencies: 655 | color-convert "^1.9.0" 656 | 657 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 658 | version "4.3.0" 659 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 660 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 661 | dependencies: 662 | color-convert "^2.0.1" 663 | 664 | ansi-styles@^5.0.0: 665 | version "5.2.0" 666 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 667 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 668 | 669 | anymatch@^3.0.3: 670 | version "3.1.2" 671 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 672 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 673 | dependencies: 674 | normalize-path "^3.0.0" 675 | picomatch "^2.0.4" 676 | 677 | argparse@^1.0.7: 678 | version "1.0.10" 679 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 680 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 681 | dependencies: 682 | sprintf-js "~1.0.2" 683 | 684 | asynckit@^0.4.0: 685 | version "0.4.0" 686 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 687 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 688 | 689 | babel-jest@^27.2.5: 690 | version "27.2.5" 691 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.2.5.tgz#6bbbc1bb4200fe0bfd1b1fbcbe02fc62ebed16aa" 692 | integrity sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g== 693 | dependencies: 694 | "@jest/transform" "^27.2.5" 695 | "@jest/types" "^27.2.5" 696 | "@types/babel__core" "^7.1.14" 697 | babel-plugin-istanbul "^6.0.0" 698 | babel-preset-jest "^27.2.0" 699 | chalk "^4.0.0" 700 | graceful-fs "^4.2.4" 701 | slash "^3.0.0" 702 | 703 | babel-plugin-istanbul@^6.0.0: 704 | version "6.0.0" 705 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" 706 | integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== 707 | dependencies: 708 | "@babel/helper-plugin-utils" "^7.0.0" 709 | "@istanbuljs/load-nyc-config" "^1.0.0" 710 | "@istanbuljs/schema" "^0.1.2" 711 | istanbul-lib-instrument "^4.0.0" 712 | test-exclude "^6.0.0" 713 | 714 | babel-plugin-jest-hoist@^27.2.0: 715 | version "27.2.0" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277" 717 | integrity sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw== 718 | dependencies: 719 | "@babel/template" "^7.3.3" 720 | "@babel/types" "^7.3.3" 721 | "@types/babel__core" "^7.0.0" 722 | "@types/babel__traverse" "^7.0.6" 723 | 724 | babel-preset-current-node-syntax@^1.0.0: 725 | version "1.0.1" 726 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 727 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 728 | dependencies: 729 | "@babel/plugin-syntax-async-generators" "^7.8.4" 730 | "@babel/plugin-syntax-bigint" "^7.8.3" 731 | "@babel/plugin-syntax-class-properties" "^7.8.3" 732 | "@babel/plugin-syntax-import-meta" "^7.8.3" 733 | "@babel/plugin-syntax-json-strings" "^7.8.3" 734 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 735 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 736 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 737 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 738 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 739 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 740 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 741 | 742 | babel-preset-jest@^27.2.0: 743 | version "27.2.0" 744 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885" 745 | integrity sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg== 746 | dependencies: 747 | babel-plugin-jest-hoist "^27.2.0" 748 | babel-preset-current-node-syntax "^1.0.0" 749 | 750 | balanced-match@^1.0.0: 751 | version "1.0.2" 752 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 753 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 754 | 755 | brace-expansion@^1.1.7: 756 | version "1.1.11" 757 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 758 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 759 | dependencies: 760 | balanced-match "^1.0.0" 761 | concat-map "0.0.1" 762 | 763 | braces@^3.0.1: 764 | version "3.0.2" 765 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 766 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 767 | dependencies: 768 | fill-range "^7.0.1" 769 | 770 | browser-process-hrtime@^1.0.0: 771 | version "1.0.0" 772 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 773 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 774 | 775 | browserslist@^4.16.6: 776 | version "4.17.3" 777 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.3.tgz#2844cd6eebe14d12384b0122d217550160d2d624" 778 | integrity sha512-59IqHJV5VGdcJZ+GZ2hU5n4Kv3YiASzW6Xk5g9tf5a/MAzGeFwgGWU39fVzNIOVcgB3+Gp+kiQu0HEfTVU/3VQ== 779 | dependencies: 780 | caniuse-lite "^1.0.30001264" 781 | electron-to-chromium "^1.3.857" 782 | escalade "^3.1.1" 783 | node-releases "^1.1.77" 784 | picocolors "^0.2.1" 785 | 786 | bs-logger@0.x: 787 | version "0.2.6" 788 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 789 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 790 | dependencies: 791 | fast-json-stable-stringify "2.x" 792 | 793 | bser@2.1.1: 794 | version "2.1.1" 795 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 796 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 797 | dependencies: 798 | node-int64 "^0.4.0" 799 | 800 | buffer-from@^1.0.0: 801 | version "1.1.2" 802 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 803 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 804 | 805 | callsites@^3.0.0: 806 | version "3.1.0" 807 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 808 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 809 | 810 | camelcase@^5.3.1: 811 | version "5.3.1" 812 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 813 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 814 | 815 | camelcase@^6.2.0: 816 | version "6.2.0" 817 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 818 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 819 | 820 | caniuse-lite@^1.0.30001264: 821 | version "1.0.30001265" 822 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001265.tgz#0613c9e6c922e422792e6fcefdf9a3afeee4f8c3" 823 | integrity sha512-YzBnspggWV5hep1m9Z6sZVLOt7vrju8xWooFAgN6BA5qvy98qPAPb7vNUzypFaoh2pb3vlfzbDO8tB57UPGbtw== 824 | 825 | chalk@^2.0.0: 826 | version "2.4.2" 827 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 828 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 829 | dependencies: 830 | ansi-styles "^3.2.1" 831 | escape-string-regexp "^1.0.5" 832 | supports-color "^5.3.0" 833 | 834 | chalk@^4.0.0: 835 | version "4.1.2" 836 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 837 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 838 | dependencies: 839 | ansi-styles "^4.1.0" 840 | supports-color "^7.1.0" 841 | 842 | char-regex@^1.0.2: 843 | version "1.0.2" 844 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 845 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 846 | 847 | ci-info@^3.1.1: 848 | version "3.2.0" 849 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" 850 | integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== 851 | 852 | cjs-module-lexer@^1.0.0: 853 | version "1.2.2" 854 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 855 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 856 | 857 | cliui@^7.0.2: 858 | version "7.0.4" 859 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 860 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 861 | dependencies: 862 | string-width "^4.2.0" 863 | strip-ansi "^6.0.0" 864 | wrap-ansi "^7.0.0" 865 | 866 | co@^4.6.0: 867 | version "4.6.0" 868 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 869 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 870 | 871 | collect-v8-coverage@^1.0.0: 872 | version "1.0.1" 873 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 874 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 875 | 876 | color-convert@^1.9.0: 877 | version "1.9.3" 878 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 879 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 880 | dependencies: 881 | color-name "1.1.3" 882 | 883 | color-convert@^2.0.1: 884 | version "2.0.1" 885 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 886 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 887 | dependencies: 888 | color-name "~1.1.4" 889 | 890 | color-name@1.1.3: 891 | version "1.1.3" 892 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 893 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 894 | 895 | color-name@~1.1.4: 896 | version "1.1.4" 897 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 898 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 899 | 900 | combined-stream@^1.0.8: 901 | version "1.0.8" 902 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 903 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 904 | dependencies: 905 | delayed-stream "~1.0.0" 906 | 907 | concat-map@0.0.1: 908 | version "0.0.1" 909 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 910 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 911 | 912 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 913 | version "1.8.0" 914 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 915 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 916 | dependencies: 917 | safe-buffer "~5.1.1" 918 | 919 | cross-spawn@^7.0.3: 920 | version "7.0.3" 921 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 922 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 923 | dependencies: 924 | path-key "^3.1.0" 925 | shebang-command "^2.0.0" 926 | which "^2.0.1" 927 | 928 | cssom@^0.4.4: 929 | version "0.4.4" 930 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 931 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 932 | 933 | cssom@~0.3.6: 934 | version "0.3.8" 935 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 936 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 937 | 938 | cssstyle@^2.3.0: 939 | version "2.3.0" 940 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 941 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 942 | dependencies: 943 | cssom "~0.3.6" 944 | 945 | data-urls@^2.0.0: 946 | version "2.0.0" 947 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 948 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 949 | dependencies: 950 | abab "^2.0.3" 951 | whatwg-mimetype "^2.3.0" 952 | whatwg-url "^8.0.0" 953 | 954 | debug@4, debug@^4.1.0, debug@^4.1.1: 955 | version "4.3.2" 956 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 957 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 958 | dependencies: 959 | ms "2.1.2" 960 | 961 | decimal.js@^10.2.1: 962 | version "10.3.1" 963 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 964 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 965 | 966 | dedent@^0.7.0: 967 | version "0.7.0" 968 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 969 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 970 | 971 | deep-is@~0.1.3: 972 | version "0.1.4" 973 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 974 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 975 | 976 | deepmerge@^4.2.2: 977 | version "4.2.2" 978 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 979 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 980 | 981 | delayed-stream@~1.0.0: 982 | version "1.0.0" 983 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 984 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 985 | 986 | detect-newline@^3.0.0: 987 | version "3.1.0" 988 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 989 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 990 | 991 | diff-sequences@^27.0.6: 992 | version "27.0.6" 993 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" 994 | integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ== 995 | 996 | domexception@^2.0.1: 997 | version "2.0.1" 998 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 999 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1000 | dependencies: 1001 | webidl-conversions "^5.0.0" 1002 | 1003 | electron-to-chromium@^1.3.857: 1004 | version "1.3.864" 1005 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.864.tgz#6a993bcc196a2b8b3df84d28d5d4dd912393885f" 1006 | integrity sha512-v4rbad8GO6/yVI92WOeU9Wgxc4NA0n4f6P1FvZTY+jyY7JHEhw3bduYu60v3Q1h81Cg6eo4ApZrFPuycwd5hGw== 1007 | 1008 | emittery@^0.8.1: 1009 | version "0.8.1" 1010 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1011 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1012 | 1013 | emoji-regex@^8.0.0: 1014 | version "8.0.0" 1015 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1016 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1017 | 1018 | escalade@^3.1.1: 1019 | version "3.1.1" 1020 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1021 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1022 | 1023 | escape-string-regexp@^1.0.5: 1024 | version "1.0.5" 1025 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1026 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1027 | 1028 | escape-string-regexp@^2.0.0: 1029 | version "2.0.0" 1030 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1031 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1032 | 1033 | escodegen@^2.0.0: 1034 | version "2.0.0" 1035 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1036 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1037 | dependencies: 1038 | esprima "^4.0.1" 1039 | estraverse "^5.2.0" 1040 | esutils "^2.0.2" 1041 | optionator "^0.8.1" 1042 | optionalDependencies: 1043 | source-map "~0.6.1" 1044 | 1045 | esprima@^4.0.0, esprima@^4.0.1: 1046 | version "4.0.1" 1047 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1048 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1049 | 1050 | estraverse@^5.2.0: 1051 | version "5.2.0" 1052 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1053 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1054 | 1055 | esutils@^2.0.2: 1056 | version "2.0.3" 1057 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1058 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1059 | 1060 | execa@^5.0.0: 1061 | version "5.1.1" 1062 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1063 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1064 | dependencies: 1065 | cross-spawn "^7.0.3" 1066 | get-stream "^6.0.0" 1067 | human-signals "^2.1.0" 1068 | is-stream "^2.0.0" 1069 | merge-stream "^2.0.0" 1070 | npm-run-path "^4.0.1" 1071 | onetime "^5.1.2" 1072 | signal-exit "^3.0.3" 1073 | strip-final-newline "^2.0.0" 1074 | 1075 | exit@^0.1.2: 1076 | version "0.1.2" 1077 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1078 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1079 | 1080 | expect@^27.2.5: 1081 | version "27.2.5" 1082 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.2.5.tgz#16154aaa60b4d9a5b0adacfea3e4d6178f4b93fd" 1083 | integrity sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA== 1084 | dependencies: 1085 | "@jest/types" "^27.2.5" 1086 | ansi-styles "^5.0.0" 1087 | jest-get-type "^27.0.6" 1088 | jest-matcher-utils "^27.2.5" 1089 | jest-message-util "^27.2.5" 1090 | jest-regex-util "^27.0.6" 1091 | 1092 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1093 | version "2.1.0" 1094 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1095 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1096 | 1097 | fast-levenshtein@~2.0.6: 1098 | version "2.0.6" 1099 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1100 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1101 | 1102 | fb-watchman@^2.0.0: 1103 | version "2.0.1" 1104 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1105 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1106 | dependencies: 1107 | bser "2.1.1" 1108 | 1109 | fill-range@^7.0.1: 1110 | version "7.0.1" 1111 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1112 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1113 | dependencies: 1114 | to-regex-range "^5.0.1" 1115 | 1116 | find-up@^4.0.0, find-up@^4.1.0: 1117 | version "4.1.0" 1118 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1119 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1120 | dependencies: 1121 | locate-path "^5.0.0" 1122 | path-exists "^4.0.0" 1123 | 1124 | form-data@^3.0.0: 1125 | version "3.0.1" 1126 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1127 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1128 | dependencies: 1129 | asynckit "^0.4.0" 1130 | combined-stream "^1.0.8" 1131 | mime-types "^2.1.12" 1132 | 1133 | fs.realpath@^1.0.0: 1134 | version "1.0.0" 1135 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1136 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1137 | 1138 | fsevents@^2.3.2: 1139 | version "2.3.2" 1140 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1141 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1142 | 1143 | function-bind@^1.1.1: 1144 | version "1.1.1" 1145 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1146 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1147 | 1148 | gensync@^1.0.0-beta.2: 1149 | version "1.0.0-beta.2" 1150 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1151 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1152 | 1153 | get-caller-file@^2.0.5: 1154 | version "2.0.5" 1155 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1156 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1157 | 1158 | get-package-type@^0.1.0: 1159 | version "0.1.0" 1160 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1161 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1162 | 1163 | get-stream@^6.0.0: 1164 | version "6.0.1" 1165 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1166 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1167 | 1168 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1169 | version "7.2.0" 1170 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1171 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1172 | dependencies: 1173 | fs.realpath "^1.0.0" 1174 | inflight "^1.0.4" 1175 | inherits "2" 1176 | minimatch "^3.0.4" 1177 | once "^1.3.0" 1178 | path-is-absolute "^1.0.0" 1179 | 1180 | globals@^11.1.0: 1181 | version "11.12.0" 1182 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1183 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1184 | 1185 | graceful-fs@^4.2.4: 1186 | version "4.2.8" 1187 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1188 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1189 | 1190 | has-flag@^3.0.0: 1191 | version "3.0.0" 1192 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1193 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1194 | 1195 | has-flag@^4.0.0: 1196 | version "4.0.0" 1197 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1198 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1199 | 1200 | has@^1.0.3: 1201 | version "1.0.3" 1202 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1203 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1204 | dependencies: 1205 | function-bind "^1.1.1" 1206 | 1207 | html-encoding-sniffer@^2.0.1: 1208 | version "2.0.1" 1209 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1210 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1211 | dependencies: 1212 | whatwg-encoding "^1.0.5" 1213 | 1214 | html-escaper@^2.0.0: 1215 | version "2.0.2" 1216 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1217 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1218 | 1219 | http-proxy-agent@^4.0.1: 1220 | version "4.0.1" 1221 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1222 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1223 | dependencies: 1224 | "@tootallnate/once" "1" 1225 | agent-base "6" 1226 | debug "4" 1227 | 1228 | https-proxy-agent@^5.0.0: 1229 | version "5.0.0" 1230 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1231 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1232 | dependencies: 1233 | agent-base "6" 1234 | debug "4" 1235 | 1236 | human-signals@^2.1.0: 1237 | version "2.1.0" 1238 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1239 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1240 | 1241 | iconv-lite@0.4.24: 1242 | version "0.4.24" 1243 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1244 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1245 | dependencies: 1246 | safer-buffer ">= 2.1.2 < 3" 1247 | 1248 | import-local@^3.0.2: 1249 | version "3.0.3" 1250 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" 1251 | integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 1252 | dependencies: 1253 | pkg-dir "^4.2.0" 1254 | resolve-cwd "^3.0.0" 1255 | 1256 | imurmurhash@^0.1.4: 1257 | version "0.1.4" 1258 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1259 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1260 | 1261 | inflight@^1.0.4: 1262 | version "1.0.6" 1263 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1264 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1265 | dependencies: 1266 | once "^1.3.0" 1267 | wrappy "1" 1268 | 1269 | inherits@2: 1270 | version "2.0.4" 1271 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1272 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1273 | 1274 | is-ci@^3.0.0: 1275 | version "3.0.0" 1276 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" 1277 | integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ== 1278 | dependencies: 1279 | ci-info "^3.1.1" 1280 | 1281 | is-core-module@^2.2.0: 1282 | version "2.7.0" 1283 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.7.0.tgz#3c0ef7d31b4acfc574f80c58409d568a836848e3" 1284 | integrity sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ== 1285 | dependencies: 1286 | has "^1.0.3" 1287 | 1288 | is-fullwidth-code-point@^3.0.0: 1289 | version "3.0.0" 1290 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1291 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1292 | 1293 | is-generator-fn@^2.0.0: 1294 | version "2.1.0" 1295 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1296 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1297 | 1298 | is-number@^7.0.0: 1299 | version "7.0.0" 1300 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1301 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1302 | 1303 | is-potential-custom-element-name@^1.0.1: 1304 | version "1.0.1" 1305 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 1306 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 1307 | 1308 | is-stream@^2.0.0: 1309 | version "2.0.1" 1310 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1311 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1312 | 1313 | is-typedarray@^1.0.0: 1314 | version "1.0.0" 1315 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1316 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1317 | 1318 | isexe@^2.0.0: 1319 | version "2.0.0" 1320 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1321 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1322 | 1323 | istanbul-lib-coverage@^3.0.0: 1324 | version "3.0.0" 1325 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 1326 | integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== 1327 | 1328 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: 1329 | version "4.0.3" 1330 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 1331 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 1332 | dependencies: 1333 | "@babel/core" "^7.7.5" 1334 | "@istanbuljs/schema" "^0.1.2" 1335 | istanbul-lib-coverage "^3.0.0" 1336 | semver "^6.3.0" 1337 | 1338 | istanbul-lib-report@^3.0.0: 1339 | version "3.0.0" 1340 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 1341 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1342 | dependencies: 1343 | istanbul-lib-coverage "^3.0.0" 1344 | make-dir "^3.0.0" 1345 | supports-color "^7.1.0" 1346 | 1347 | istanbul-lib-source-maps@^4.0.0: 1348 | version "4.0.0" 1349 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 1350 | integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== 1351 | dependencies: 1352 | debug "^4.1.1" 1353 | istanbul-lib-coverage "^3.0.0" 1354 | source-map "^0.6.1" 1355 | 1356 | istanbul-reports@^3.0.2: 1357 | version "3.0.3" 1358 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.3.tgz#974d682037f6d12b15dc55f9a2a5f8f1ea923831" 1359 | integrity sha512-0i77ZFLsb9U3DHi22WzmIngVzfoyxxbQcZRqlF3KoKmCJGq9nhFHoGi8FqBztN2rE8w6hURnZghetn0xpkVb6A== 1360 | dependencies: 1361 | html-escaper "^2.0.0" 1362 | istanbul-lib-report "^3.0.0" 1363 | 1364 | jest-changed-files@^27.2.5: 1365 | version "27.2.5" 1366 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.2.5.tgz#9dfd550d158260bcb6fa80aff491f5647f7daeca" 1367 | integrity sha512-jfnNJzF89csUKRPKJ4MwZ1SH27wTmX2xiAIHUHrsb/OYd9Jbo4/SXxJ17/nnx6RIifpthk3Y+LEeOk+/dDeGdw== 1368 | dependencies: 1369 | "@jest/types" "^27.2.5" 1370 | execa "^5.0.0" 1371 | throat "^6.0.1" 1372 | 1373 | jest-circus@^27.2.5: 1374 | version "27.2.5" 1375 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.2.5.tgz#573256a6fb6e447ac2fc7e0ade9375013309037f" 1376 | integrity sha512-eyL9IcrAxm3Saq3rmajFCwpaxaRMGJ1KJs+7hlTDinXpJmeR3P02bheM3CYohE7UfwOBmrFMJHjgo/WPcLTM+Q== 1377 | dependencies: 1378 | "@jest/environment" "^27.2.5" 1379 | "@jest/test-result" "^27.2.5" 1380 | "@jest/types" "^27.2.5" 1381 | "@types/node" "*" 1382 | chalk "^4.0.0" 1383 | co "^4.6.0" 1384 | dedent "^0.7.0" 1385 | expect "^27.2.5" 1386 | is-generator-fn "^2.0.0" 1387 | jest-each "^27.2.5" 1388 | jest-matcher-utils "^27.2.5" 1389 | jest-message-util "^27.2.5" 1390 | jest-runtime "^27.2.5" 1391 | jest-snapshot "^27.2.5" 1392 | jest-util "^27.2.5" 1393 | pretty-format "^27.2.5" 1394 | slash "^3.0.0" 1395 | stack-utils "^2.0.3" 1396 | throat "^6.0.1" 1397 | 1398 | jest-cli@^27.2.5: 1399 | version "27.2.5" 1400 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.2.5.tgz#88718c8f05f1c0f209152952ecd61afe4c3311bb" 1401 | integrity sha512-XzfcOXi5WQrXqFYsDxq5RDOKY4FNIgBgvgf3ZBz4e/j5/aWep5KnsAYH5OFPMdX/TP/LFsYQMRH7kzJUMh6JKg== 1402 | dependencies: 1403 | "@jest/core" "^27.2.5" 1404 | "@jest/test-result" "^27.2.5" 1405 | "@jest/types" "^27.2.5" 1406 | chalk "^4.0.0" 1407 | exit "^0.1.2" 1408 | graceful-fs "^4.2.4" 1409 | import-local "^3.0.2" 1410 | jest-config "^27.2.5" 1411 | jest-util "^27.2.5" 1412 | jest-validate "^27.2.5" 1413 | prompts "^2.0.1" 1414 | yargs "^16.2.0" 1415 | 1416 | jest-config@^27.2.5: 1417 | version "27.2.5" 1418 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.2.5.tgz#c2e4ec6ea2bf4ffd2cae3d927999fe6159cba207" 1419 | integrity sha512-QdENtn9b5rIIYGlbDNEcgY9LDL5kcokJnXrp7x8AGjHob/XFqw1Z6p+gjfna2sUulQsQ3ce2Fvntnv+7fKYDhQ== 1420 | dependencies: 1421 | "@babel/core" "^7.1.0" 1422 | "@jest/test-sequencer" "^27.2.5" 1423 | "@jest/types" "^27.2.5" 1424 | babel-jest "^27.2.5" 1425 | chalk "^4.0.0" 1426 | deepmerge "^4.2.2" 1427 | glob "^7.1.1" 1428 | graceful-fs "^4.2.4" 1429 | is-ci "^3.0.0" 1430 | jest-circus "^27.2.5" 1431 | jest-environment-jsdom "^27.2.5" 1432 | jest-environment-node "^27.2.5" 1433 | jest-get-type "^27.0.6" 1434 | jest-jasmine2 "^27.2.5" 1435 | jest-regex-util "^27.0.6" 1436 | jest-resolve "^27.2.5" 1437 | jest-runner "^27.2.5" 1438 | jest-util "^27.2.5" 1439 | jest-validate "^27.2.5" 1440 | micromatch "^4.0.4" 1441 | pretty-format "^27.2.5" 1442 | 1443 | jest-diff@^27.0.0, jest-diff@^27.2.5: 1444 | version "27.2.5" 1445 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.2.5.tgz#908f7a6aca5653824516ad30e0a9fd9767e53623" 1446 | integrity sha512-7gfwwyYkeslOOVQY4tVq5TaQa92mWfC9COsVYMNVYyJTOYAqbIkoD3twi5A+h+tAPtAelRxkqY6/xu+jwTr0dA== 1447 | dependencies: 1448 | chalk "^4.0.0" 1449 | diff-sequences "^27.0.6" 1450 | jest-get-type "^27.0.6" 1451 | pretty-format "^27.2.5" 1452 | 1453 | jest-docblock@^27.0.6: 1454 | version "27.0.6" 1455 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" 1456 | integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA== 1457 | dependencies: 1458 | detect-newline "^3.0.0" 1459 | 1460 | jest-each@^27.2.5: 1461 | version "27.2.5" 1462 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.2.5.tgz#378118d516db730b92096a9607b8711165946353" 1463 | integrity sha512-HUPWIbJT0bXarRwKu/m7lYzqxR4GM5EhKOsu0z3t0SKtbFN6skQhpAUADM4qFShBXb9zoOuag5lcrR1x/WM+Ag== 1464 | dependencies: 1465 | "@jest/types" "^27.2.5" 1466 | chalk "^4.0.0" 1467 | jest-get-type "^27.0.6" 1468 | jest-util "^27.2.5" 1469 | pretty-format "^27.2.5" 1470 | 1471 | jest-environment-jsdom@^27.2.5: 1472 | version "27.2.5" 1473 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.2.5.tgz#21de3ad0e89441d961b592ba7561b16241279208" 1474 | integrity sha512-QtRpOh/RQKuXniaWcoFE2ElwP6tQcyxHu0hlk32880g0KczdonCs5P1sk5+weu/OVzh5V4Bt1rXuQthI01mBLg== 1475 | dependencies: 1476 | "@jest/environment" "^27.2.5" 1477 | "@jest/fake-timers" "^27.2.5" 1478 | "@jest/types" "^27.2.5" 1479 | "@types/node" "*" 1480 | jest-mock "^27.2.5" 1481 | jest-util "^27.2.5" 1482 | jsdom "^16.6.0" 1483 | 1484 | jest-environment-node@^27.2.5: 1485 | version "27.2.5" 1486 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.2.5.tgz#ffa1afb3604c640ec841f044d526c65912e02cef" 1487 | integrity sha512-0o1LT4grm7iwrS8fIoLtwJxb/hoa3GsH7pP10P02Jpj7Mi4BXy65u46m89vEM2WfD1uFJQ2+dfDiWZNA2e6bJg== 1488 | dependencies: 1489 | "@jest/environment" "^27.2.5" 1490 | "@jest/fake-timers" "^27.2.5" 1491 | "@jest/types" "^27.2.5" 1492 | "@types/node" "*" 1493 | jest-mock "^27.2.5" 1494 | jest-util "^27.2.5" 1495 | 1496 | jest-get-type@^27.0.6: 1497 | version "27.0.6" 1498 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" 1499 | integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg== 1500 | 1501 | jest-haste-map@^27.2.5: 1502 | version "27.2.5" 1503 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.2.5.tgz#0247b7299250643472bbcf5b4ad85c72d5178e2e" 1504 | integrity sha512-pzO+Gw2WLponaSi0ilpzYBE0kuVJstoXBX8YWyUebR8VaXuX4tzzn0Zp23c/WaETo7XYTGv2e8KdnpiskAFMhQ== 1505 | dependencies: 1506 | "@jest/types" "^27.2.5" 1507 | "@types/graceful-fs" "^4.1.2" 1508 | "@types/node" "*" 1509 | anymatch "^3.0.3" 1510 | fb-watchman "^2.0.0" 1511 | graceful-fs "^4.2.4" 1512 | jest-regex-util "^27.0.6" 1513 | jest-serializer "^27.0.6" 1514 | jest-util "^27.2.5" 1515 | jest-worker "^27.2.5" 1516 | micromatch "^4.0.4" 1517 | walker "^1.0.7" 1518 | optionalDependencies: 1519 | fsevents "^2.3.2" 1520 | 1521 | jest-jasmine2@^27.2.5: 1522 | version "27.2.5" 1523 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.2.5.tgz#baaf96c69913c52bce0100000cf0721027c0fd66" 1524 | integrity sha512-hdxY9Cm/CjLqu2tXeAoQHPgA4vcqlweVXYOg1+S9FeFdznB9Rti+eEBKDDkmOy9iqr4Xfbq95OkC4NFbXXPCAQ== 1525 | dependencies: 1526 | "@babel/traverse" "^7.1.0" 1527 | "@jest/environment" "^27.2.5" 1528 | "@jest/source-map" "^27.0.6" 1529 | "@jest/test-result" "^27.2.5" 1530 | "@jest/types" "^27.2.5" 1531 | "@types/node" "*" 1532 | chalk "^4.0.0" 1533 | co "^4.6.0" 1534 | expect "^27.2.5" 1535 | is-generator-fn "^2.0.0" 1536 | jest-each "^27.2.5" 1537 | jest-matcher-utils "^27.2.5" 1538 | jest-message-util "^27.2.5" 1539 | jest-runtime "^27.2.5" 1540 | jest-snapshot "^27.2.5" 1541 | jest-util "^27.2.5" 1542 | pretty-format "^27.2.5" 1543 | throat "^6.0.1" 1544 | 1545 | jest-leak-detector@^27.2.5: 1546 | version "27.2.5" 1547 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.2.5.tgz#e2edc3b37d38e8d9a527e10e456b403c3151b206" 1548 | integrity sha512-HYsi3GUR72bYhOGB5C5saF9sPdxGzSjX7soSQS+BqDRysc7sPeBwPbhbuT8DnOpijnKjgwWQ8JqvbmReYnt3aQ== 1549 | dependencies: 1550 | jest-get-type "^27.0.6" 1551 | pretty-format "^27.2.5" 1552 | 1553 | jest-matcher-utils@^27.2.5: 1554 | version "27.2.5" 1555 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz#4684faaa8eb32bf15e6edaead6834031897e2980" 1556 | integrity sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg== 1557 | dependencies: 1558 | chalk "^4.0.0" 1559 | jest-diff "^27.2.5" 1560 | jest-get-type "^27.0.6" 1561 | pretty-format "^27.2.5" 1562 | 1563 | jest-message-util@^27.2.5: 1564 | version "27.2.5" 1565 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.2.5.tgz#ed8b7b0965247bb875a49c1f9b9ab2d1d0820028" 1566 | integrity sha512-ggXSLoPfIYcbmZ8glgEJZ8b+e0Msw/iddRmgkoO7lDAr9SmI65IIfv7VnvTnV4FGnIIUIjzM+fHRHO5RBvyAbQ== 1567 | dependencies: 1568 | "@babel/code-frame" "^7.12.13" 1569 | "@jest/types" "^27.2.5" 1570 | "@types/stack-utils" "^2.0.0" 1571 | chalk "^4.0.0" 1572 | graceful-fs "^4.2.4" 1573 | micromatch "^4.0.4" 1574 | pretty-format "^27.2.5" 1575 | slash "^3.0.0" 1576 | stack-utils "^2.0.3" 1577 | 1578 | jest-mock@^27.2.5: 1579 | version "27.2.5" 1580 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.2.5.tgz#0ec38d5ff1e49c4802e7a4a8179e8d7a2fd84de0" 1581 | integrity sha512-HiMB3LqE9RzmeMzZARi2Bz3NoymxyP0gCid4y42ca1djffNtYFKgI220aC1VP1mUZ8rbpqZbHZOJ15093bZV/Q== 1582 | dependencies: 1583 | "@jest/types" "^27.2.5" 1584 | "@types/node" "*" 1585 | 1586 | jest-pnp-resolver@^1.2.2: 1587 | version "1.2.2" 1588 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 1589 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 1590 | 1591 | jest-regex-util@^27.0.6: 1592 | version "27.0.6" 1593 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" 1594 | integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ== 1595 | 1596 | jest-resolve-dependencies@^27.2.5: 1597 | version "27.2.5" 1598 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.5.tgz#fcd8eca005b3d11ba32da443045c028164b83be1" 1599 | integrity sha512-BSjefped31bcvvCh++/pN9ueqqN1n0+p8/58yScuWfklLm2tbPbS9d251vJhAy0ZI2pL/0IaGhOTJrs9Y4FJlg== 1600 | dependencies: 1601 | "@jest/types" "^27.2.5" 1602 | jest-regex-util "^27.0.6" 1603 | jest-snapshot "^27.2.5" 1604 | 1605 | jest-resolve@^27.2.5: 1606 | version "27.2.5" 1607 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.2.5.tgz#04dadbfc1312a2541f5c199c5011945e9cfe5cef" 1608 | integrity sha512-q5irwS3oS73SKy3+FM/HL2T7WJftrk9BRzrXF92f7net5HMlS7lJMg/ZwxLB4YohKqjSsdksEw7n/jvMxV7EKg== 1609 | dependencies: 1610 | "@jest/types" "^27.2.5" 1611 | chalk "^4.0.0" 1612 | escalade "^3.1.1" 1613 | graceful-fs "^4.2.4" 1614 | jest-haste-map "^27.2.5" 1615 | jest-pnp-resolver "^1.2.2" 1616 | jest-util "^27.2.5" 1617 | jest-validate "^27.2.5" 1618 | resolve "^1.20.0" 1619 | slash "^3.0.0" 1620 | 1621 | jest-runner@^27.2.5: 1622 | version "27.2.5" 1623 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.2.5.tgz#3d9d0626f351480bb2cffcfbbfac240c0097ebd4" 1624 | integrity sha512-n41vw9RLg5TKAnEeJK9d6pGOsBOpwE89XBniK+AD1k26oIIy3V7ogM1scbDjSheji8MUPC9pNgCrZ/FHLVDNgg== 1625 | dependencies: 1626 | "@jest/console" "^27.2.5" 1627 | "@jest/environment" "^27.2.5" 1628 | "@jest/test-result" "^27.2.5" 1629 | "@jest/transform" "^27.2.5" 1630 | "@jest/types" "^27.2.5" 1631 | "@types/node" "*" 1632 | chalk "^4.0.0" 1633 | emittery "^0.8.1" 1634 | exit "^0.1.2" 1635 | graceful-fs "^4.2.4" 1636 | jest-docblock "^27.0.6" 1637 | jest-environment-jsdom "^27.2.5" 1638 | jest-environment-node "^27.2.5" 1639 | jest-haste-map "^27.2.5" 1640 | jest-leak-detector "^27.2.5" 1641 | jest-message-util "^27.2.5" 1642 | jest-resolve "^27.2.5" 1643 | jest-runtime "^27.2.5" 1644 | jest-util "^27.2.5" 1645 | jest-worker "^27.2.5" 1646 | source-map-support "^0.5.6" 1647 | throat "^6.0.1" 1648 | 1649 | jest-runtime@^27.2.5: 1650 | version "27.2.5" 1651 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.2.5.tgz#d144c3f6889b927aae1e695b63a41a3323b7016b" 1652 | integrity sha512-N0WRZ3QszKyZ3Dm27HTBbBuestsSd3Ud5ooVho47XZJ8aSKO/X1Ag8M1dNx9XzfGVRNdB/xCA3lz8MJwIzPLLA== 1653 | dependencies: 1654 | "@jest/console" "^27.2.5" 1655 | "@jest/environment" "^27.2.5" 1656 | "@jest/fake-timers" "^27.2.5" 1657 | "@jest/globals" "^27.2.5" 1658 | "@jest/source-map" "^27.0.6" 1659 | "@jest/test-result" "^27.2.5" 1660 | "@jest/transform" "^27.2.5" 1661 | "@jest/types" "^27.2.5" 1662 | "@types/yargs" "^16.0.0" 1663 | chalk "^4.0.0" 1664 | cjs-module-lexer "^1.0.0" 1665 | collect-v8-coverage "^1.0.0" 1666 | execa "^5.0.0" 1667 | exit "^0.1.2" 1668 | glob "^7.1.3" 1669 | graceful-fs "^4.2.4" 1670 | jest-haste-map "^27.2.5" 1671 | jest-message-util "^27.2.5" 1672 | jest-mock "^27.2.5" 1673 | jest-regex-util "^27.0.6" 1674 | jest-resolve "^27.2.5" 1675 | jest-snapshot "^27.2.5" 1676 | jest-util "^27.2.5" 1677 | jest-validate "^27.2.5" 1678 | slash "^3.0.0" 1679 | strip-bom "^4.0.0" 1680 | yargs "^16.2.0" 1681 | 1682 | jest-serializer@^27.0.6: 1683 | version "27.0.6" 1684 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" 1685 | integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA== 1686 | dependencies: 1687 | "@types/node" "*" 1688 | graceful-fs "^4.2.4" 1689 | 1690 | jest-snapshot@^27.2.5: 1691 | version "27.2.5" 1692 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.2.5.tgz#8a612fe31e2967f58ad364542198dff61f92ef32" 1693 | integrity sha512-2/Jkn+VN6Abwz0llBltZaiJMnL8b1j5Bp/gRIxe9YR3FCEh9qp0TXVV0dcpTGZ8AcJV1SZGQkczewkI9LP5yGw== 1694 | dependencies: 1695 | "@babel/core" "^7.7.2" 1696 | "@babel/generator" "^7.7.2" 1697 | "@babel/parser" "^7.7.2" 1698 | "@babel/plugin-syntax-typescript" "^7.7.2" 1699 | "@babel/traverse" "^7.7.2" 1700 | "@babel/types" "^7.0.0" 1701 | "@jest/transform" "^27.2.5" 1702 | "@jest/types" "^27.2.5" 1703 | "@types/babel__traverse" "^7.0.4" 1704 | "@types/prettier" "^2.1.5" 1705 | babel-preset-current-node-syntax "^1.0.0" 1706 | chalk "^4.0.0" 1707 | expect "^27.2.5" 1708 | graceful-fs "^4.2.4" 1709 | jest-diff "^27.2.5" 1710 | jest-get-type "^27.0.6" 1711 | jest-haste-map "^27.2.5" 1712 | jest-matcher-utils "^27.2.5" 1713 | jest-message-util "^27.2.5" 1714 | jest-resolve "^27.2.5" 1715 | jest-util "^27.2.5" 1716 | natural-compare "^1.4.0" 1717 | pretty-format "^27.2.5" 1718 | semver "^7.3.2" 1719 | 1720 | jest-util@^27.0.0, jest-util@^27.2.5: 1721 | version "27.2.5" 1722 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.2.5.tgz#88740c4024d223634a82ce7c2263e8bc6df3b3ba" 1723 | integrity sha512-QRhDC6XxISntMzFRd/OQ6TGsjbzA5ONO0tlAj2ElHs155x1aEr0rkYJBEysG6H/gZVH3oGFzCdAB/GA8leh8NQ== 1724 | dependencies: 1725 | "@jest/types" "^27.2.5" 1726 | "@types/node" "*" 1727 | chalk "^4.0.0" 1728 | graceful-fs "^4.2.4" 1729 | is-ci "^3.0.0" 1730 | picomatch "^2.2.3" 1731 | 1732 | jest-validate@^27.2.5: 1733 | version "27.2.5" 1734 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.2.5.tgz#2d59bf1627d180f395ba58f24599b0ee0efcfbdf" 1735 | integrity sha512-XgYtjS89nhVe+UfkbLgcm+GgXKWgL80t9nTcNeejyO3t0Sj/yHE8BtIJqjZu9NXQksYbGImoQRXmQ1gP+Guffw== 1736 | dependencies: 1737 | "@jest/types" "^27.2.5" 1738 | camelcase "^6.2.0" 1739 | chalk "^4.0.0" 1740 | jest-get-type "^27.0.6" 1741 | leven "^3.1.0" 1742 | pretty-format "^27.2.5" 1743 | 1744 | jest-watcher@^27.2.5: 1745 | version "27.2.5" 1746 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.2.5.tgz#41cd3e64dc5bea8a4327083d71ba7667be400567" 1747 | integrity sha512-umV4qGozg2Dn6DTTtqAh9puPw+DGLK9AQas7+mWjiK8t0fWMpxKg8ZXReZw7L4C88DqorsGUiDgwHNZ+jkVrkQ== 1748 | dependencies: 1749 | "@jest/test-result" "^27.2.5" 1750 | "@jest/types" "^27.2.5" 1751 | "@types/node" "*" 1752 | ansi-escapes "^4.2.1" 1753 | chalk "^4.0.0" 1754 | jest-util "^27.2.5" 1755 | string-length "^4.0.1" 1756 | 1757 | jest-worker@^27.2.5: 1758 | version "27.2.5" 1759 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.2.5.tgz#ed42865661959488aa020e8a325df010597c36d4" 1760 | integrity sha512-HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw== 1761 | dependencies: 1762 | "@types/node" "*" 1763 | merge-stream "^2.0.0" 1764 | supports-color "^8.0.0" 1765 | 1766 | jest@^27.2.5: 1767 | version "27.2.5" 1768 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.2.5.tgz#7d8a5c8781a160f693beeb7c68e46c16ef948148" 1769 | integrity sha512-vDMzXcpQN4Ycaqu+vO7LX8pZwNNoKMhc+gSp6q1D8S6ftRk8gNW8cni3YFxknP95jxzQo23Lul0BI2FrWgnwYQ== 1770 | dependencies: 1771 | "@jest/core" "^27.2.5" 1772 | import-local "^3.0.2" 1773 | jest-cli "^27.2.5" 1774 | 1775 | js-tokens@^4.0.0: 1776 | version "4.0.0" 1777 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1778 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1779 | 1780 | js-yaml@^3.13.1: 1781 | version "3.14.1" 1782 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1783 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1784 | dependencies: 1785 | argparse "^1.0.7" 1786 | esprima "^4.0.0" 1787 | 1788 | jsdom@^16.6.0: 1789 | version "16.7.0" 1790 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 1791 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 1792 | dependencies: 1793 | abab "^2.0.5" 1794 | acorn "^8.2.4" 1795 | acorn-globals "^6.0.0" 1796 | cssom "^0.4.4" 1797 | cssstyle "^2.3.0" 1798 | data-urls "^2.0.0" 1799 | decimal.js "^10.2.1" 1800 | domexception "^2.0.1" 1801 | escodegen "^2.0.0" 1802 | form-data "^3.0.0" 1803 | html-encoding-sniffer "^2.0.1" 1804 | http-proxy-agent "^4.0.1" 1805 | https-proxy-agent "^5.0.0" 1806 | is-potential-custom-element-name "^1.0.1" 1807 | nwsapi "^2.2.0" 1808 | parse5 "6.0.1" 1809 | saxes "^5.0.1" 1810 | symbol-tree "^3.2.4" 1811 | tough-cookie "^4.0.0" 1812 | w3c-hr-time "^1.0.2" 1813 | w3c-xmlserializer "^2.0.0" 1814 | webidl-conversions "^6.1.0" 1815 | whatwg-encoding "^1.0.5" 1816 | whatwg-mimetype "^2.3.0" 1817 | whatwg-url "^8.5.0" 1818 | ws "^7.4.6" 1819 | xml-name-validator "^3.0.0" 1820 | 1821 | jsesc@^2.5.1: 1822 | version "2.5.2" 1823 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1824 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1825 | 1826 | json5@2.x, json5@^2.1.2: 1827 | version "2.2.0" 1828 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1829 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1830 | dependencies: 1831 | minimist "^1.2.5" 1832 | 1833 | kleur@^3.0.3: 1834 | version "3.0.3" 1835 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 1836 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 1837 | 1838 | leven@^3.1.0: 1839 | version "3.1.0" 1840 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1841 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1842 | 1843 | levn@~0.3.0: 1844 | version "0.3.0" 1845 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1846 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1847 | dependencies: 1848 | prelude-ls "~1.1.2" 1849 | type-check "~0.3.2" 1850 | 1851 | locate-path@^5.0.0: 1852 | version "5.0.0" 1853 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1854 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1855 | dependencies: 1856 | p-locate "^4.1.0" 1857 | 1858 | lodash@4.x, lodash@^4.7.0: 1859 | version "4.17.21" 1860 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1861 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1862 | 1863 | lru-cache@^6.0.0: 1864 | version "6.0.0" 1865 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1866 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1867 | dependencies: 1868 | yallist "^4.0.0" 1869 | 1870 | make-dir@^3.0.0: 1871 | version "3.1.0" 1872 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1873 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1874 | dependencies: 1875 | semver "^6.0.0" 1876 | 1877 | make-error@1.x: 1878 | version "1.3.6" 1879 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1880 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1881 | 1882 | makeerror@1.0.x: 1883 | version "1.0.11" 1884 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1885 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 1886 | dependencies: 1887 | tmpl "1.0.x" 1888 | 1889 | merge-stream@^2.0.0: 1890 | version "2.0.0" 1891 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1892 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1893 | 1894 | micromatch@^4.0.4: 1895 | version "4.0.4" 1896 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 1897 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 1898 | dependencies: 1899 | braces "^3.0.1" 1900 | picomatch "^2.2.3" 1901 | 1902 | mime-db@1.50.0: 1903 | version "1.50.0" 1904 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" 1905 | integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== 1906 | 1907 | mime-types@^2.1.12: 1908 | version "2.1.33" 1909 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" 1910 | integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g== 1911 | dependencies: 1912 | mime-db "1.50.0" 1913 | 1914 | mimic-fn@^2.1.0: 1915 | version "2.1.0" 1916 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1917 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1918 | 1919 | minimatch@^3.0.4: 1920 | version "3.0.4" 1921 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1922 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1923 | dependencies: 1924 | brace-expansion "^1.1.7" 1925 | 1926 | minimist@^1.2.5: 1927 | version "1.2.6" 1928 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1929 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1930 | 1931 | ms@2.1.2: 1932 | version "2.1.2" 1933 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1934 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1935 | 1936 | natural-compare@^1.4.0: 1937 | version "1.4.0" 1938 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1939 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1940 | 1941 | node-int64@^0.4.0: 1942 | version "0.4.0" 1943 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1944 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 1945 | 1946 | node-modules-regexp@^1.0.0: 1947 | version "1.0.0" 1948 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 1949 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 1950 | 1951 | node-releases@^1.1.77: 1952 | version "1.1.77" 1953 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e" 1954 | integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ== 1955 | 1956 | normalize-path@^3.0.0: 1957 | version "3.0.0" 1958 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1959 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1960 | 1961 | npm-run-path@^4.0.1: 1962 | version "4.0.1" 1963 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1964 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1965 | dependencies: 1966 | path-key "^3.0.0" 1967 | 1968 | nwsapi@^2.2.0: 1969 | version "2.2.0" 1970 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 1971 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 1972 | 1973 | once@^1.3.0: 1974 | version "1.4.0" 1975 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1976 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1977 | dependencies: 1978 | wrappy "1" 1979 | 1980 | onetime@^5.1.2: 1981 | version "5.1.2" 1982 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1983 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1984 | dependencies: 1985 | mimic-fn "^2.1.0" 1986 | 1987 | optionator@^0.8.1: 1988 | version "0.8.3" 1989 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 1990 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 1991 | dependencies: 1992 | deep-is "~0.1.3" 1993 | fast-levenshtein "~2.0.6" 1994 | levn "~0.3.0" 1995 | prelude-ls "~1.1.2" 1996 | type-check "~0.3.2" 1997 | word-wrap "~1.2.3" 1998 | 1999 | p-limit@^2.2.0: 2000 | version "2.3.0" 2001 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2002 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2003 | dependencies: 2004 | p-try "^2.0.0" 2005 | 2006 | p-locate@^4.1.0: 2007 | version "4.1.0" 2008 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2009 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2010 | dependencies: 2011 | p-limit "^2.2.0" 2012 | 2013 | p-try@^2.0.0: 2014 | version "2.2.0" 2015 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2016 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2017 | 2018 | parse5@6.0.1: 2019 | version "6.0.1" 2020 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2021 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2022 | 2023 | path-exists@^4.0.0: 2024 | version "4.0.0" 2025 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2026 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2027 | 2028 | path-is-absolute@^1.0.0: 2029 | version "1.0.1" 2030 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2031 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2032 | 2033 | path-key@^3.0.0, path-key@^3.1.0: 2034 | version "3.1.1" 2035 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2036 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2037 | 2038 | path-parse@^1.0.6: 2039 | version "1.0.7" 2040 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2041 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2042 | 2043 | picocolors@^0.2.1: 2044 | version "0.2.1" 2045 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" 2046 | integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== 2047 | 2048 | picomatch@^2.0.4, picomatch@^2.2.3: 2049 | version "2.3.0" 2050 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 2051 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2052 | 2053 | pirates@^4.0.1: 2054 | version "4.0.1" 2055 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 2056 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 2057 | dependencies: 2058 | node-modules-regexp "^1.0.0" 2059 | 2060 | pkg-dir@^4.2.0: 2061 | version "4.2.0" 2062 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2063 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2064 | dependencies: 2065 | find-up "^4.0.0" 2066 | 2067 | prelude-ls@~1.1.2: 2068 | version "1.1.2" 2069 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2070 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2071 | 2072 | prettier@^2.2.1: 2073 | version "2.4.1" 2074 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.4.1.tgz#671e11c89c14a4cfc876ce564106c4a6726c9f5c" 2075 | integrity sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA== 2076 | 2077 | pretty-format@^27.0.0, pretty-format@^27.2.5: 2078 | version "27.2.5" 2079 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.2.5.tgz#7cfe2a8e8f01a5b5b29296a0b70f4140df0830c5" 2080 | integrity sha512-+nYn2z9GgicO9JiqmY25Xtq8SYfZ/5VCpEU3pppHHNAhd1y+ZXxmNPd1evmNcAd6Hz4iBV2kf0UpGth5A/VJ7g== 2081 | dependencies: 2082 | "@jest/types" "^27.2.5" 2083 | ansi-regex "^5.0.1" 2084 | ansi-styles "^5.0.0" 2085 | react-is "^17.0.1" 2086 | 2087 | prompts@^2.0.1: 2088 | version "2.4.2" 2089 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2090 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2091 | dependencies: 2092 | kleur "^3.0.3" 2093 | sisteransi "^1.0.5" 2094 | 2095 | psl@^1.1.33: 2096 | version "1.8.0" 2097 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2098 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2099 | 2100 | punycode@^2.1.1: 2101 | version "2.1.1" 2102 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2103 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2104 | 2105 | react-is@^17.0.1: 2106 | version "17.0.2" 2107 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2108 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2109 | 2110 | require-directory@^2.1.1: 2111 | version "2.1.1" 2112 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2113 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2114 | 2115 | resolve-cwd@^3.0.0: 2116 | version "3.0.0" 2117 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2118 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2119 | dependencies: 2120 | resolve-from "^5.0.0" 2121 | 2122 | resolve-from@^5.0.0: 2123 | version "5.0.0" 2124 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2125 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2126 | 2127 | resolve@^1.20.0: 2128 | version "1.20.0" 2129 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2130 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2131 | dependencies: 2132 | is-core-module "^2.2.0" 2133 | path-parse "^1.0.6" 2134 | 2135 | rimraf@^3.0.0: 2136 | version "3.0.2" 2137 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2138 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2139 | dependencies: 2140 | glob "^7.1.3" 2141 | 2142 | safe-buffer@~5.1.1: 2143 | version "5.1.2" 2144 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2145 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2146 | 2147 | "safer-buffer@>= 2.1.2 < 3": 2148 | version "2.1.2" 2149 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2150 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2151 | 2152 | saxes@^5.0.1: 2153 | version "5.0.1" 2154 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2155 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2156 | dependencies: 2157 | xmlchars "^2.2.0" 2158 | 2159 | semver@7.x, semver@^7.3.2: 2160 | version "7.3.5" 2161 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 2162 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 2163 | dependencies: 2164 | lru-cache "^6.0.0" 2165 | 2166 | semver@^6.0.0, semver@^6.3.0: 2167 | version "6.3.0" 2168 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2169 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2170 | 2171 | shebang-command@^2.0.0: 2172 | version "2.0.0" 2173 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2174 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2175 | dependencies: 2176 | shebang-regex "^3.0.0" 2177 | 2178 | shebang-regex@^3.0.0: 2179 | version "3.0.0" 2180 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2181 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2182 | 2183 | signal-exit@^3.0.2, signal-exit@^3.0.3: 2184 | version "3.0.5" 2185 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 2186 | integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 2187 | 2188 | sisteransi@^1.0.5: 2189 | version "1.0.5" 2190 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2191 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2192 | 2193 | slash@^3.0.0: 2194 | version "3.0.0" 2195 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2196 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2197 | 2198 | source-map-support@^0.5.6: 2199 | version "0.5.20" 2200 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" 2201 | integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== 2202 | dependencies: 2203 | buffer-from "^1.0.0" 2204 | source-map "^0.6.0" 2205 | 2206 | source-map@^0.5.0: 2207 | version "0.5.7" 2208 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2209 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2210 | 2211 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2212 | version "0.6.1" 2213 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2214 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2215 | 2216 | source-map@^0.7.3: 2217 | version "0.7.3" 2218 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2219 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2220 | 2221 | sprintf-js@~1.0.2: 2222 | version "1.0.3" 2223 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2224 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2225 | 2226 | stack-utils@^2.0.3: 2227 | version "2.0.5" 2228 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 2229 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 2230 | dependencies: 2231 | escape-string-regexp "^2.0.0" 2232 | 2233 | string-length@^4.0.1: 2234 | version "4.0.2" 2235 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2236 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2237 | dependencies: 2238 | char-regex "^1.0.2" 2239 | strip-ansi "^6.0.0" 2240 | 2241 | string-width@^4.1.0, string-width@^4.2.0: 2242 | version "4.2.3" 2243 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2244 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2245 | dependencies: 2246 | emoji-regex "^8.0.0" 2247 | is-fullwidth-code-point "^3.0.0" 2248 | strip-ansi "^6.0.1" 2249 | 2250 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2251 | version "6.0.1" 2252 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2253 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2254 | dependencies: 2255 | ansi-regex "^5.0.1" 2256 | 2257 | strip-bom@^4.0.0: 2258 | version "4.0.0" 2259 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2260 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2261 | 2262 | strip-final-newline@^2.0.0: 2263 | version "2.0.0" 2264 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2265 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2266 | 2267 | supports-color@^5.3.0: 2268 | version "5.5.0" 2269 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2270 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2271 | dependencies: 2272 | has-flag "^3.0.0" 2273 | 2274 | supports-color@^7.0.0, supports-color@^7.1.0: 2275 | version "7.2.0" 2276 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2277 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2278 | dependencies: 2279 | has-flag "^4.0.0" 2280 | 2281 | supports-color@^8.0.0: 2282 | version "8.1.1" 2283 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2284 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2285 | dependencies: 2286 | has-flag "^4.0.0" 2287 | 2288 | supports-hyperlinks@^2.0.0: 2289 | version "2.2.0" 2290 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 2291 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 2292 | dependencies: 2293 | has-flag "^4.0.0" 2294 | supports-color "^7.0.0" 2295 | 2296 | symbol-tree@^3.2.4: 2297 | version "3.2.4" 2298 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 2299 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 2300 | 2301 | terminal-link@^2.0.0: 2302 | version "2.1.1" 2303 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 2304 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 2305 | dependencies: 2306 | ansi-escapes "^4.2.1" 2307 | supports-hyperlinks "^2.0.0" 2308 | 2309 | test-exclude@^6.0.0: 2310 | version "6.0.0" 2311 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2312 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2313 | dependencies: 2314 | "@istanbuljs/schema" "^0.1.2" 2315 | glob "^7.1.4" 2316 | minimatch "^3.0.4" 2317 | 2318 | throat@^6.0.1: 2319 | version "6.0.1" 2320 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 2321 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 2322 | 2323 | tmpl@1.0.x: 2324 | version "1.0.5" 2325 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2326 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2327 | 2328 | to-fast-properties@^2.0.0: 2329 | version "2.0.0" 2330 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2331 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2332 | 2333 | to-regex-range@^5.0.1: 2334 | version "5.0.1" 2335 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2336 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2337 | dependencies: 2338 | is-number "^7.0.0" 2339 | 2340 | tough-cookie@^4.0.0: 2341 | version "4.0.0" 2342 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 2343 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 2344 | dependencies: 2345 | psl "^1.1.33" 2346 | punycode "^2.1.1" 2347 | universalify "^0.1.2" 2348 | 2349 | tr46@^2.1.0: 2350 | version "2.1.0" 2351 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 2352 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 2353 | dependencies: 2354 | punycode "^2.1.1" 2355 | 2356 | ts-jest@^27.0.5: 2357 | version "27.0.5" 2358 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.5.tgz#0b0604e2271167ec43c12a69770f0bb65ad1b750" 2359 | integrity sha512-lIJApzfTaSSbtlksfFNHkWOzLJuuSm4faFAfo5kvzOiRAuoN4/eKxVJ2zEAho8aecE04qX6K1pAzfH5QHL1/8w== 2360 | dependencies: 2361 | bs-logger "0.x" 2362 | fast-json-stable-stringify "2.x" 2363 | jest-util "^27.0.0" 2364 | json5 "2.x" 2365 | lodash "4.x" 2366 | make-error "1.x" 2367 | semver "7.x" 2368 | yargs-parser "20.x" 2369 | 2370 | type-check@~0.3.2: 2371 | version "0.3.2" 2372 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2373 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 2374 | dependencies: 2375 | prelude-ls "~1.1.2" 2376 | 2377 | type-detect@4.0.8: 2378 | version "4.0.8" 2379 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2380 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2381 | 2382 | type-fest@^0.21.3: 2383 | version "0.21.3" 2384 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2385 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2386 | 2387 | typedarray-to-buffer@^3.1.5: 2388 | version "3.1.5" 2389 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2390 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2391 | dependencies: 2392 | is-typedarray "^1.0.0" 2393 | 2394 | typescript@^4.1.3: 2395 | version "4.4.3" 2396 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324" 2397 | integrity sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA== 2398 | 2399 | universalify@^0.1.2: 2400 | version "0.1.2" 2401 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2402 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 2403 | 2404 | v8-to-istanbul@^8.1.0: 2405 | version "8.1.0" 2406 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" 2407 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== 2408 | dependencies: 2409 | "@types/istanbul-lib-coverage" "^2.0.1" 2410 | convert-source-map "^1.6.0" 2411 | source-map "^0.7.3" 2412 | 2413 | w3c-hr-time@^1.0.2: 2414 | version "1.0.2" 2415 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 2416 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 2417 | dependencies: 2418 | browser-process-hrtime "^1.0.0" 2419 | 2420 | w3c-xmlserializer@^2.0.0: 2421 | version "2.0.0" 2422 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 2423 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 2424 | dependencies: 2425 | xml-name-validator "^3.0.0" 2426 | 2427 | walker@^1.0.7: 2428 | version "1.0.7" 2429 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2430 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 2431 | dependencies: 2432 | makeerror "1.0.x" 2433 | 2434 | webidl-conversions@^5.0.0: 2435 | version "5.0.0" 2436 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 2437 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 2438 | 2439 | webidl-conversions@^6.1.0: 2440 | version "6.1.0" 2441 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 2442 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 2443 | 2444 | whatwg-encoding@^1.0.5: 2445 | version "1.0.5" 2446 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 2447 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 2448 | dependencies: 2449 | iconv-lite "0.4.24" 2450 | 2451 | whatwg-mimetype@^2.3.0: 2452 | version "2.3.0" 2453 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 2454 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 2455 | 2456 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 2457 | version "8.7.0" 2458 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 2459 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 2460 | dependencies: 2461 | lodash "^4.7.0" 2462 | tr46 "^2.1.0" 2463 | webidl-conversions "^6.1.0" 2464 | 2465 | which@^2.0.1: 2466 | version "2.0.2" 2467 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2468 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2469 | dependencies: 2470 | isexe "^2.0.0" 2471 | 2472 | word-wrap@~1.2.3: 2473 | version "1.2.3" 2474 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2475 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2476 | 2477 | wrap-ansi@^7.0.0: 2478 | version "7.0.0" 2479 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2480 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2481 | dependencies: 2482 | ansi-styles "^4.0.0" 2483 | string-width "^4.1.0" 2484 | strip-ansi "^6.0.0" 2485 | 2486 | wrappy@1: 2487 | version "1.0.2" 2488 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2489 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2490 | 2491 | write-file-atomic@^3.0.0: 2492 | version "3.0.3" 2493 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2494 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2495 | dependencies: 2496 | imurmurhash "^0.1.4" 2497 | is-typedarray "^1.0.0" 2498 | signal-exit "^3.0.2" 2499 | typedarray-to-buffer "^3.1.5" 2500 | 2501 | ws@^7.4.6: 2502 | version "7.5.5" 2503 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" 2504 | integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== 2505 | 2506 | xml-name-validator@^3.0.0: 2507 | version "3.0.0" 2508 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 2509 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 2510 | 2511 | xmlchars@^2.2.0: 2512 | version "2.2.0" 2513 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 2514 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 2515 | 2516 | y18n@^5.0.5: 2517 | version "5.0.8" 2518 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2519 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2520 | 2521 | yallist@^4.0.0: 2522 | version "4.0.0" 2523 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2524 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2525 | 2526 | yargs-parser@20.x, yargs-parser@^20.2.2: 2527 | version "20.2.9" 2528 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2529 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2530 | 2531 | yargs@^16.2.0: 2532 | version "16.2.0" 2533 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2534 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2535 | dependencies: 2536 | cliui "^7.0.2" 2537 | escalade "^3.1.1" 2538 | get-caller-file "^2.0.5" 2539 | require-directory "^2.1.1" 2540 | string-width "^4.2.0" 2541 | y18n "^5.0.5" 2542 | yargs-parser "^20.2.2" 2543 | --------------------------------------------------------------------------------