├── .github └── workflows │ ├── publish_package.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jest.config.ts ├── package.json ├── src ├── __test__ │ ├── __fixtures__ │ │ ├── builtin.ts │ │ ├── index.ts │ │ └── primitives.ts │ └── __utils__ │ │ └── validateCases.ts ├── builtins.test.ts ├── builtins.ts ├── convenience.test.ts ├── convenience.ts ├── index.ts ├── primitives.test.ts └── primitives.ts ├── tsconfig.json └── yarn.lock /.github/workflows/publish_package.yml: -------------------------------------------------------------------------------- 1 | name: Publish Package to npmjs 2 | 3 | on: 4 | release: 5 | types: [created] 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - uses: actions/setup-node@v2 13 | with: 14 | node-version: "16.x" 15 | registry-url: "https://registry.npmjs.org" 16 | - run: yarn install 17 | - run: yarn build 18 | - run: npm publish 19 | env: 20 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 21 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Node.js CI 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | 13 | strategy: 14 | matrix: 15 | node-version: [14.x, 16.x] 16 | 17 | steps: 18 | - uses: actions/checkout@v2 19 | - name: Use Node.js ${{ matrix.node-version }} 20 | uses: actions/setup-node@v2 21 | with: 22 | node-version: ${{ matrix.node-version }} 23 | - name: Install dependencies 24 | run: yarn install 25 | - run: yarn test 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage/ 3 | docs/ 4 | dist/ 5 | *.tgz 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | coverage/ 3 | docs/ 4 | src/ 5 | tsconfig.json 6 | yarn.lock 7 | jest.config.ts 8 | *.tgz 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2022 Scott Rabin (scott@scottrabin.com) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # is.js 2 | 3 | A collection of user-defined type guards to handle some of Javascript's less-than-ideal behavior. 4 | 5 | ## Installing 6 | 7 | ```bash 8 | $ npm install is-js 9 | $ yarn add is-js 10 | ``` 11 | 12 | ## Usage 13 | 14 | - [array](README.md#array) 15 | - [bigint](README.md#bigint) 16 | - [bool](README.md#bool) 17 | - [date](README.md#date) 18 | - [error](README.md#error) 19 | - [func](README.md#func) 20 | - [nil](README.md#nil) 21 | - [number](README.md#number) 22 | - [object](README.md#object) 23 | - [promise](README.md#promise) 24 | - [promiseLike](README.md#promiselike) 25 | - [regex](README.md#regex) 26 | - [string](README.md#string) 27 | - [symbol](README.md#symbol) 28 | - [undef](README.md#undef) 29 | 30 | ### array 31 | 32 | ▸ **array**(`arg`): arg is any[] 33 | 34 | Determines if the argument is an array. 35 | 36 | **`remarks`** 37 | Defaults to the native `Array.isArray` method, if present. 38 | 39 | #### Parameters 40 | 41 | | Name | Type | 42 | | :------ | :------ | 43 | | `arg` | `any` | 44 | 45 | #### Returns 46 | 47 | arg is any[] 48 | 49 | `true` if the given argument is an array 50 | 51 | ___ 52 | 53 | ### bigint 54 | 55 | ▸ **bigint**(`value`): `boolean` 56 | 57 | Determines if the argument is a BigInt 58 | 59 | **`remarks`** 60 | This method does not support polyfilled BigInt implementations; please defer 61 | to the library in use to determine the type of an unknown argument. 62 | 63 | #### Parameters 64 | 65 | | Name | Type | Description | 66 | | :------ | :------ | :------ | 67 | | `value` | `unknown` | Value in question | 68 | 69 | #### Returns 70 | 71 | `boolean` 72 | 73 | `true` if the given argument is a native BigInt 74 | 75 | ___ 76 | 77 | ### bool 78 | 79 | ▸ **bool**(`value`): value is boolean 80 | 81 | Determines if the argument is a boolean 82 | 83 | #### Parameters 84 | 85 | | Name | Type | Description | 86 | | :------ | :------ | :------ | 87 | | `value` | `unknown` | Value in question | 88 | 89 | #### Returns 90 | 91 | value is boolean 92 | 93 | `true` if the given argument is a boolean 94 | 95 | ___ 96 | 97 | ### date 98 | 99 | ▸ **date**(`value`): value is Date 100 | 101 | Determines if the argument is a date. 102 | 103 | #### Parameters 104 | 105 | | Name | Type | Description | 106 | | :------ | :------ | :------ | 107 | | `value` | `unknown` | Value in question | 108 | 109 | #### Returns 110 | 111 | value is Date 112 | 113 | `true` if the given argument is a date 114 | 115 | ___ 116 | 117 | ### error 118 | 119 | ▸ **error**(`value`): value is Error 120 | 121 | Determines if the argument is an error. 122 | 123 | #### Parameters 124 | 125 | | Name | Type | Description | 126 | | :------ | :------ | :------ | 127 | | `value` | `unknown` | Value in question | 128 | 129 | #### Returns 130 | 131 | value is Error 132 | 133 | `true` if the given argument is an error 134 | 135 | ___ 136 | 137 | ### func 138 | 139 | ▸ **func**(`value`): value is Function 140 | 141 | Determines if the argument is a function. 142 | 143 | #### Parameters 144 | 145 | | Name | Type | Description | 146 | | :------ | :------ | :------ | 147 | | `value` | `unknown` | Value in question | 148 | 149 | #### Returns 150 | 151 | value is Function 152 | 153 | `true` if the given argument is a function 154 | 155 | ___ 156 | 157 | ### nil 158 | 159 | ▸ **nil**(`value`): value is null 160 | 161 | Determines if the argument is null 162 | 163 | #### Parameters 164 | 165 | | Name | Type | Description | 166 | | :------ | :------ | :------ | 167 | | `value` | `unknown` | Value in question | 168 | 169 | #### Returns 170 | 171 | value is null 172 | 173 | `true` if the given argument is null 174 | 175 | ___ 176 | 177 | ### number 178 | 179 | ▸ **number**(`value`): value is number 180 | 181 | Determines if the argument is a number 182 | 183 | #### Parameters 184 | 185 | | Name | Type | Description | 186 | | :------ | :------ | :------ | 187 | | `value` | `unknown` | Value in question | 188 | 189 | #### Returns 190 | 191 | value is number 192 | 193 | `true` if the given argument is a number 194 | 195 | ___ 196 | 197 | ### object 198 | 199 | ▸ **object**(`value`): value is Object 200 | 201 | Determines if the argument is an object. 202 | 203 | **`remarks`** 204 | Nearly everything in Javascript is an object; this method discerns between 205 | native primitives (e.g. `true`, `3`, `some text`) and their object-wrapped 206 | variants (Boolean, Number, String) 207 | 208 | #### Parameters 209 | 210 | | Name | Type | Description | 211 | | :------ | :------ | :------ | 212 | | `value` | `unknown` | Value in question | 213 | 214 | #### Returns 215 | 216 | value is Object 217 | 218 | `true` if the given argument is an object 219 | 220 | ___ 221 | 222 | ### promise 223 | 224 | ▸ **promise**(`value`): value is Promise 225 | 226 | Determines if the argument is a native promise. 227 | 228 | **`remarks`** 229 | Some libraries and frameworks still include their own polyfilled Promises, 230 | in which case this method is unreliable. If you are using such a library, 231 | please defer to the provided Promise implementation or use [promiseLike](README.md#promiselike) 232 | 233 | #### Parameters 234 | 235 | | Name | Type | Description | 236 | | :------ | :------ | :------ | 237 | | `value` | `unknown` | Value in question | 238 | 239 | #### Returns 240 | 241 | value is Promise 242 | 243 | `true` if the given argument is a string 244 | 245 | ___ 246 | 247 | ### promiseLike 248 | 249 | ▸ **promiseLike**(`value`): value is Object 250 | 251 | Determines if the argument conforms to the minimal interface of a Promise; 252 | that is, it has a method named `then`. 253 | 254 | #### Parameters 255 | 256 | | Name | Type | Description | 257 | | :------ | :------ | :------ | 258 | | `value` | `unknown` | Value in question | 259 | 260 | #### Returns 261 | 262 | value is Object 263 | 264 | `true` if the given argument conforms to the Promise interface 265 | 266 | ___ 267 | 268 | ### regex 269 | 270 | ▸ **regex**(`value`): value is RegExp 271 | 272 | Determines if the argument is a regular expression. 273 | 274 | #### Parameters 275 | 276 | | Name | Type | Description | 277 | | :------ | :------ | :------ | 278 | | `value` | `unknown` | Value in question | 279 | 280 | #### Returns 281 | 282 | value is RegExp 283 | 284 | `true` if the given argument is a regular expression 285 | 286 | ___ 287 | 288 | ### string 289 | 290 | ▸ **string**(`value`): value is string 291 | 292 | Determines if the argument is a string. 293 | 294 | #### Parameters 295 | 296 | | Name | Type | Description | 297 | | :------ | :------ | :------ | 298 | | `value` | `unknown` | Value in question | 299 | 300 | #### Returns 301 | 302 | value is string 303 | 304 | `true` if the given argument is a string 305 | 306 | ___ 307 | 308 | ### symbol 309 | 310 | ▸ **symbol**(`value`): value is Symbol 311 | 312 | Determines if the argument is a symbol 313 | 314 | #### Parameters 315 | 316 | | Name | Type | Description | 317 | | :------ | :------ | :------ | 318 | | `value` | `unknown` | Value in question | 319 | 320 | #### Returns 321 | 322 | value is Symbol 323 | 324 | `true` if the given argument is a symbol 325 | 326 | ___ 327 | 328 | ### undef 329 | 330 | ▸ **undef**(`value`): value is undefined 331 | 332 | Determines if the argument is undefined 333 | 334 | #### Parameters 335 | 336 | | Name | Type | Description | 337 | | :------ | :------ | :------ | 338 | | `value` | `unknown` | Value in question | 339 | 340 | #### Returns 341 | 342 | value is undefined 343 | 344 | `true` if the given argument is `undefined` 345 | -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * For a detailed explanation regarding each configuration property and type check, visit: 3 | * https://jestjs.io/docs/configuration 4 | */ 5 | 6 | export default { 7 | // All imported modules in your tests should be mocked automatically 8 | // automock: false, 9 | 10 | // Stop running tests after `n` failures 11 | // bail: 0, 12 | 13 | // The directory where Jest should store its cached dependency information 14 | // cacheDirectory: "/private/var/folders/fg/x939y0zs6ll72r6t0zspqs2w0000gn/T/jest_dx", 15 | 16 | // Automatically clear mock calls, instances and results before every test 17 | clearMocks: true, 18 | 19 | // Indicates whether the coverage information should be collected while executing the test 20 | collectCoverage: true, 21 | 22 | // An array of glob patterns indicating a set of files for which coverage information should be collected 23 | // collectCoverageFrom: undefined, 24 | 25 | // The directory where Jest should output its coverage files 26 | coverageDirectory: "coverage", 27 | 28 | // An array of regexp pattern strings used to skip coverage collection 29 | coveragePathIgnorePatterns: [ 30 | "/node_modules/", 31 | "/__fixtures__/", 32 | "/__utils__/", 33 | ], 34 | 35 | // Indicates which provider should be used to instrument code for coverage 36 | coverageProvider: "v8", 37 | 38 | // A list of reporter names that Jest uses when writing coverage reports 39 | // coverageReporters: [ 40 | // "json", 41 | // "text", 42 | // "lcov", 43 | // "clover" 44 | // ], 45 | 46 | // An object that configures minimum threshold enforcement for coverage results 47 | // coverageThreshold: undefined, 48 | 49 | // A path to a custom dependency extractor 50 | // dependencyExtractor: undefined, 51 | 52 | // Make calling deprecated APIs throw helpful error messages 53 | // errorOnDeprecated: false, 54 | 55 | // Force coverage collection from ignored files using an array of glob patterns 56 | // forceCoverageMatch: [], 57 | 58 | // A path to a module which exports an async function that is triggered once before all test suites 59 | // globalSetup: undefined, 60 | 61 | // A path to a module which exports an async function that is triggered once after all test suites 62 | // globalTeardown: undefined, 63 | 64 | // A set of global variables that need to be available in all test environments 65 | // globals: {}, 66 | 67 | // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers. 68 | // maxWorkers: "50%", 69 | 70 | // An array of directory names to be searched recursively up from the requiring module's location 71 | // moduleDirectories: [ 72 | // "node_modules" 73 | // ], 74 | 75 | // An array of file extensions your modules use 76 | // moduleFileExtensions: [ 77 | // "js", 78 | // "jsx", 79 | // "ts", 80 | // "tsx", 81 | // "json", 82 | // "node" 83 | // ], 84 | 85 | // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module 86 | // moduleNameMapper: {}, 87 | 88 | // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader 89 | // modulePathIgnorePatterns: [], 90 | 91 | // Activates notifications for test results 92 | // notify: false, 93 | 94 | // An enum that specifies notification mode. Requires { notify: true } 95 | // notifyMode: "failure-change", 96 | 97 | // A preset that is used as a base for Jest's configuration 98 | preset: "ts-jest", 99 | 100 | // Run tests from one or more projects 101 | // projects: undefined, 102 | 103 | // Use this configuration option to add custom reporters to Jest 104 | // reporters: undefined, 105 | 106 | // Automatically reset mock state before every test 107 | // resetMocks: false, 108 | 109 | // Reset the module registry before running each individual test 110 | // resetModules: false, 111 | 112 | // A path to a custom resolver 113 | // resolver: undefined, 114 | 115 | // Automatically restore mock state and implementation before every test 116 | // restoreMocks: false, 117 | 118 | // The root directory that Jest should scan for tests and modules within 119 | // rootDir: undefined, 120 | 121 | // A list of paths to directories that Jest should use to search for files in 122 | // roots: [ 123 | // "" 124 | // ], 125 | 126 | // Allows you to use a custom runner instead of Jest's default test runner 127 | // runner: "jest-runner", 128 | 129 | // The paths to modules that run some code to configure or set up the testing environment before each test 130 | // setupFiles: [], 131 | 132 | // A list of paths to modules that run some code to configure or set up the testing framework before each test 133 | // setupFilesAfterEnv: [], 134 | 135 | // The number of seconds after which a test is considered as slow and reported as such in the results. 136 | // slowTestThreshold: 5, 137 | 138 | // A list of paths to snapshot serializer modules Jest should use for snapshot testing 139 | // snapshotSerializers: [], 140 | 141 | // The test environment that will be used for testing 142 | // testEnvironment: "jest-environment-node", 143 | 144 | // Options that will be passed to the testEnvironment 145 | // testEnvironmentOptions: {}, 146 | 147 | // Adds a location field to test results 148 | // testLocationInResults: false, 149 | 150 | // The glob patterns Jest uses to detect test files 151 | // testMatch: [ 152 | // "**/__tests__/**/*.[jt]s?(x)", 153 | // "**/?(*.)+(spec|test).[tj]s?(x)" 154 | // ], 155 | 156 | // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped 157 | testPathIgnorePatterns: ["/node_modules/", "/__fixtures__/", "/__utils__/"], 158 | 159 | // The regexp pattern or array of patterns that Jest uses to detect test files 160 | // testRegex: [], 161 | 162 | // This option allows the use of a custom results processor 163 | // testResultsProcessor: undefined, 164 | 165 | // This option allows use of a custom test runner 166 | // testRunner: "jest-circus/runner", 167 | 168 | // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href 169 | // testURL: "http://localhost", 170 | 171 | // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout" 172 | // timers: "real", 173 | 174 | // A map from regular expressions to paths to transformers 175 | // transform: undefined, 176 | 177 | // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation 178 | // transformIgnorePatterns: [ 179 | // "/node_modules/", 180 | // "\\.pnp\\.[^\\/]+$" 181 | // ], 182 | 183 | // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them 184 | // unmockedModulePathPatterns: undefined, 185 | 186 | // Indicates whether each individual test should be reported during the run 187 | // verbose: undefined, 188 | 189 | // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode 190 | // watchPathIgnorePatterns: [], 191 | 192 | // Whether to use watchman for file crawling 193 | // watchman: true, 194 | }; 195 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "is-js", 3 | "version": "0.2.1", 4 | "description": "A small library for identifying Javascript types.", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "scripts": { 8 | "build": "rm -rf dist/ && tsc", 9 | "docs": "typedoc --theme markdown --disableSources --readme none --hideBreadcrumbs --categorizeByGroup false --sort alphabetical --out docs src/index.ts && sed -i '' '/^## Usage/,$d' README.md && echo '## Usage' >> README.md && tail -n +4 docs/README.md | sed '/## Functions/,+1d' >> README.md", 10 | "test": "jest" 11 | }, 12 | "keywords": [ 13 | "javascript", 14 | "types", 15 | "util", 16 | "is.js" 17 | ], 18 | "author": "Scott Rabin (http://scottrabin.com)", 19 | "license": "MIT", 20 | "homepage": "https://github.com/scottrabin/is-js", 21 | "repository": { 22 | "type": "git", 23 | "url": "git://github.com/scottrabin/is-js.git" 24 | }, 25 | "bugs": { 26 | "url": "https://github.com/scottrabin/is-js/issues", 27 | "email": "isjs@scottrabin.com" 28 | }, 29 | "dependencies": {}, 30 | "devDependencies": { 31 | "@types/jest": "^27.4.1", 32 | "@types/node": "^17.0.21", 33 | "jest": "^27.5.1", 34 | "ts-jest": "^27.1.3", 35 | "ts-node": "^10.7.0", 36 | "typedoc": "^0.22.13", 37 | "typedoc-plugin-markdown": "^3.11.14", 38 | "typescript": "^4.6.2" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/__test__/__fixtures__/builtin.ts: -------------------------------------------------------------------------------- 1 | export class MyError extends Error {} 2 | 3 | export const BUILTINS = { 4 | REGEX: /regex/, 5 | REGEX_VIA_CONSTRUCTOR: new RegExp("dynamic string"), 6 | 7 | DATE: new Date(), 8 | DATE_INVALID: new Date("not a real date"), 9 | 10 | FUNCTION_LITERAL: function () {}, 11 | FUNCTION_VIA_CONSTRUCTOR: new Function("return true"), 12 | FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_METHOD: (() => { 13 | const fn = function () {}; 14 | fn.prototype.aMethod = function () {}; 15 | 16 | return fn; 17 | })(), 18 | FUNCTION_CLASS_CONSTRUCTOR_WITH_PROPERTY_SET: function (this: any, p: any) { 19 | this.prop = p; 20 | }, 21 | FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_ONLY: (() => { 22 | const fn = function () {}; 23 | fn.prototype.aMethod = function () {}; 24 | fn.prototype.aProperty = "prototype property value"; 25 | 26 | return fn; 27 | })(), 28 | 29 | ERROR: new Error(""), 30 | ERROR_SUBCLASS: new MyError(), 31 | 32 | ARRAY_LITERAL_EMPTY: [], 33 | ARRAY_LITERAL_NONEMPTY: [1, 2, 3], 34 | ARRAY_NEW_EMPTY: new Array(), 35 | ARRAY_NEW_NONEMPTY: new Array(3), 36 | 37 | OBJECT_LITERAL_EMPTY: {}, 38 | OBJECT_LITERAL_NONEMPTY: { a: 1, b: 2 }, 39 | 40 | OBJECT_VIA_NEW: (() => { 41 | const constructor = function () {}; 42 | return new (constructor as any)(); 43 | })(), 44 | OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_PROPERTIES: (() => { 45 | const constructor = function (this: any, p: any) { 46 | this.property = p; 47 | }; 48 | return new (constructor as any)("propertyValue"); 49 | })(), 50 | OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_PROTOTYPE: (() => { 51 | const constructor = function () {}; 52 | constructor.prototype.aMethod = function () {}; 53 | constructor.prototype.aProperty = "property"; 54 | return new (constructor as any)(); 55 | })(), 56 | OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_AUGMENT: (() => { 57 | const constructor = function () {}; 58 | constructor.prototype.aMethod = function () {}; 59 | constructor.prototype.aProperty = "property"; 60 | 61 | const obj = new (constructor as any)(); 62 | obj.userProperty = 1; 63 | 64 | return obj; 65 | })(), 66 | 67 | PROMISE: new Promise(() => {}), 68 | PROMISE_DUCKTYPE: { 69 | then: function () {}, 70 | }, 71 | }; 72 | -------------------------------------------------------------------------------- /src/__test__/__fixtures__/index.ts: -------------------------------------------------------------------------------- 1 | import { BUILTINS } from "./builtin"; 2 | import { PRIMITIVES } from "./primitives"; 3 | 4 | export const ALL_CASES = { 5 | ...PRIMITIVES, 6 | ...BUILTINS, 7 | }; 8 | 9 | export type CaseIdentifier = keyof typeof ALL_CASES; 10 | -------------------------------------------------------------------------------- /src/__test__/__fixtures__/primitives.ts: -------------------------------------------------------------------------------- 1 | export const PRIMITIVES = { 2 | // Strings 3 | STRING_EMPTY: "", 4 | STRING_NONEMPTY: "a string", 5 | STRING_VIA_CONSTRUCTOR: new String("constructed"), 6 | 7 | // Numeric strings 8 | STRING_NEGATIVE_INTEGER: "-10", 9 | STRING_POSITIVE_INTEGER: "5", 10 | STRING_OCTAL_LITERAL: "040", 11 | STRING_HEX_LITERAL: "0xFF", 12 | STRING_POSITIVE_FLOAT: "4.5385", 13 | STRING_NEGATIVE_FLOAT: "-5.592", 14 | STRING_EXPONENTIAL: "123e4", 15 | STRING_NEGATIVE_EXPONENTIAL: "-83e-6", 16 | 17 | // Seminumeric strings (edge cases) 18 | STRING_BEGIN_NUMBER: "10abcdef", 19 | STRING_END_NUMBER: "abcdef10", 20 | STRING_WRAP_NUMBER: "10abcd10", 21 | STRING_WRAPPED_NUMBER: "abc10def", 22 | 23 | // Numbers 24 | NUMBER_ZERO: 0, 25 | NUMBER_POSITIVE: 1000, 26 | NUMBER_NEGATIVE: -1000, 27 | NUMBER_FLOAT_POSITIVE: 1.5, 28 | NUMBER_FLOAT_NEGATIVE: -3.6, 29 | NUMBER_EXPONENTIAL_POSITIVE: 1.2e3, 30 | NUMBER_EXPONENTIAL_NEGATIVE: -3.2e-5, 31 | NUMBER_OCTAL_POSITIVE: 0o70, 32 | NUMBER_OCTAL_NEGATIVE: -0o10, 33 | NUMBER_HEX_POSITIVE: 0xab, 34 | NUMBER_HEX_NEGATIVE: -0xcc, 35 | NUMBER_INFINITY: Infinity, 36 | NUMBER_NEGATIVE_INFINITY: -Infinity, 37 | NUMBER_VIA_CONSTRUCTOR: new Number(5), 38 | 39 | // Booleans 40 | BOOLEAN_TRUE: true, 41 | BOOLEAN_FALSE: false, 42 | BOOLEAN_TRUE_VIA_CONSTRUCTOR: new Boolean(true), 43 | BOOLEAN_FALSE_VIA_CONSTRUCTOR: new Boolean(false), 44 | 45 | // Symbol 46 | SYMBOL_EMPTY_STRING: Symbol(""), 47 | SYMBOL_WITH_STRING: Symbol("this is a symbol string"), 48 | SYMBOL_NO_PARAMETER: Symbol(), 49 | SYMBOL_STATIC: Symbol.iterator, 50 | 51 | // BigInt 52 | BIGINT_LITERAL: BigInt(1234), 53 | 54 | // Remainder 55 | NULL: null, 56 | 57 | UNDEFINED: undefined, 58 | }; 59 | -------------------------------------------------------------------------------- /src/__test__/__utils__/validateCases.ts: -------------------------------------------------------------------------------- 1 | import { ALL_CASES, CaseIdentifier } from "../__fixtures__"; 2 | 3 | export function validateCases) => any>( 4 | func: F, 5 | positiveCases: Array 6 | ) { 7 | test.each(positiveCases)(`is.${func.name}(%s)`, (caseId) => { 8 | expect(func(ALL_CASES[caseId as CaseIdentifier])).toBe(true); 9 | }); 10 | 11 | test.each( 12 | Object.keys(ALL_CASES).filter( 13 | (caseId) => !positiveCases.includes(caseId as CaseIdentifier) 14 | ) 15 | )(`is.${func.name}(%s)`, (caseId) => { 16 | expect(func(ALL_CASES[caseId as CaseIdentifier])).toBe(false); 17 | }); 18 | } 19 | -------------------------------------------------------------------------------- /src/builtins.test.ts: -------------------------------------------------------------------------------- 1 | import { validateCases } from "./__test__/__utils__/validateCases"; 2 | import * as is from "./builtins"; 3 | 4 | describe("builtins", () => { 5 | describe("object", () => { 6 | validateCases(is.object, [ 7 | "OBJECT_LITERAL_EMPTY", 8 | "OBJECT_LITERAL_NONEMPTY", 9 | "OBJECT_VIA_NEW", 10 | "OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_PROPERTIES", 11 | "OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_PROTOTYPE", 12 | "OBJECT_VIA_FUNCTION_CONSTRUCTOR_WITH_AUGMENT", 13 | 14 | "STRING_VIA_CONSTRUCTOR", 15 | "NUMBER_VIA_CONSTRUCTOR", 16 | "BOOLEAN_TRUE_VIA_CONSTRUCTOR", 17 | "BOOLEAN_FALSE_VIA_CONSTRUCTOR", 18 | "REGEX", 19 | "REGEX_VIA_CONSTRUCTOR", 20 | "DATE", 21 | "DATE_INVALID", 22 | 23 | "FUNCTION_LITERAL", 24 | "FUNCTION_VIA_CONSTRUCTOR", 25 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROPERTY_SET", 26 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_ONLY", 27 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_METHOD", 28 | 29 | "ARRAY_LITERAL_EMPTY", 30 | "ARRAY_LITERAL_NONEMPTY", 31 | "ARRAY_NEW_EMPTY", 32 | "ARRAY_NEW_NONEMPTY", 33 | 34 | "ERROR", 35 | "ERROR_SUBCLASS", 36 | 37 | "PROMISE", 38 | "PROMISE_DUCKTYPE", 39 | ]); 40 | }); 41 | 42 | describe("array", () => { 43 | validateCases(is.array, [ 44 | "ARRAY_LITERAL_EMPTY", 45 | "ARRAY_LITERAL_NONEMPTY", 46 | "ARRAY_NEW_EMPTY", 47 | "ARRAY_NEW_NONEMPTY", 48 | ]); 49 | // TODO test against Array.isArray not being present 50 | }); 51 | 52 | describe("date", () => { 53 | validateCases(is.date, ["DATE", "DATE_INVALID"]); 54 | }); 55 | 56 | describe("func", () => { 57 | validateCases(is.func, [ 58 | "FUNCTION_LITERAL", 59 | "FUNCTION_VIA_CONSTRUCTOR", 60 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_METHOD", 61 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROPERTY_SET", 62 | "FUNCTION_CLASS_CONSTRUCTOR_WITH_PROTOTYPE_ONLY", 63 | ]); 64 | }); 65 | 66 | describe("error", () => { 67 | validateCases(is.error, ["ERROR", "ERROR_SUBCLASS"]); 68 | }); 69 | 70 | describe("regex", () => { 71 | validateCases(is.regex, ["REGEX", "REGEX_VIA_CONSTRUCTOR"]); 72 | }); 73 | 74 | describe("promise", () => { 75 | validateCases(is.promise, ["PROMISE"]); 76 | }); 77 | 78 | describe("promiseLike", () => { 79 | validateCases(is.promiseLike, ["PROMISE", "PROMISE_DUCKTYPE"]); 80 | }); 81 | }); 82 | -------------------------------------------------------------------------------- /src/builtins.ts: -------------------------------------------------------------------------------- 1 | // User defined type guards for native Javascript objects 2 | 3 | const toString = Object.prototype.toString; 4 | 5 | /** 6 | * Determines if the argument is an object. 7 | * 8 | * @remarks 9 | * Nearly everything in Javascript is an object; this method discerns between 10 | * native primitives (e.g. `true`, `3`, `some text`) and their object-wrapped 11 | * variants (Boolean, Number, String) 12 | * 13 | * @param value - Value in question 14 | * @returns `true` if the given argument is an object 15 | */ 16 | export function object(value: unknown): value is Object { 17 | return value === Object(value); 18 | } 19 | 20 | /** 21 | * Determines if the argument is an array. 22 | * 23 | * @remarks 24 | * Defaults to the native `Array.isArray` method, if present. 25 | * 26 | * @param value - Value in question 27 | * @returns `true` if the given argument is an array 28 | */ 29 | export const array = 30 | Array.isArray ?? 31 | ((value: unknown): value is Array => 32 | toString.call(value) === "[object Array]"); 33 | 34 | /** 35 | * Determines if the argument is a date. 36 | * 37 | * @param value - Value in question 38 | * @returns `true` if the given argument is a date 39 | */ 40 | export function date(value: unknown): value is Date { 41 | return value ? (value as any).constructor === Date : false; 42 | } 43 | 44 | /** 45 | * Determines if the argument is a function. 46 | * 47 | * @param value - Value in question 48 | * @returns `true` if the given argument is a function 49 | */ 50 | export function func(value: unknown): value is Function { 51 | return typeof value === "function"; 52 | } 53 | 54 | /** 55 | * Determines if the argument is an error. 56 | * 57 | * @param value - Value in question 58 | * @returns `true` if the given argument is an error 59 | */ 60 | export function error(value: unknown): value is Error { 61 | return value instanceof Error; 62 | } 63 | 64 | /** 65 | * Determines if the argument is a regular expression. 66 | * 67 | * @param value - Value in question 68 | * @returns `true` if the given argument is a regular expression 69 | */ 70 | export function regex(value: unknown): value is RegExp { 71 | return value ? (value as any).constructor === RegExp : false; 72 | } 73 | 74 | /** 75 | * Determines if the argument is a native promise. 76 | * 77 | * @remarks 78 | * Some libraries and frameworks still include their own polyfilled Promises, 79 | * in which case this method is unreliable. If you are using such a library, 80 | * please defer to the provided Promise implementation or use {@link promiseLike} 81 | * 82 | * @param value - Value in question 83 | * @returns `true` if the given argument is a string 84 | */ 85 | export function promise(value: unknown): value is Promise { 86 | return value ? (value as any).constructor === Promise : false; 87 | } 88 | 89 | /** 90 | * Determines if the argument conforms to the minimal interface of a Promise; 91 | * that is, it has a method named `then`. 92 | * 93 | * @param value - Value in question 94 | * @returns `true` if the given argument conforms to the Promise interface 95 | */ 96 | export function promiseLike( 97 | value: unknown 98 | ): value is { then: (...args: Array) => any } { 99 | return value ? func((value as { then: any }).then) : false; 100 | } 101 | -------------------------------------------------------------------------------- /src/convenience.test.ts: -------------------------------------------------------------------------------- 1 | import * as is from "./convenience"; 2 | import { ALL_CASES, CaseIdentifier } from "./__test__/__fixtures__"; 3 | 4 | describe("convenience methods", () => { 5 | describe("empty", () => { 6 | test.each([ 7 | [[], true], 8 | [[1, 2, 3], false], 9 | [new Array(), true], 10 | [new Array(3), false], 11 | [{}, true], 12 | [{ yes: true }, false], 13 | [{ [Symbol("")]: "" }, false], 14 | [{ ...{ internalObject: "spread" } }, false], 15 | ])("is.empty(%p)", (value, expected) => { 16 | expect(is.empty(value)).toBe(expected); 17 | }); 18 | }); 19 | 20 | describe("nonNil", () => { 21 | test.each( 22 | Object.keys(ALL_CASES).filter( 23 | (caseName) => caseName !== "NULL" && caseName !== "UNDEFINED" 24 | ) 25 | )("is.nonNil(%s)", (caseName) => { 26 | expect(is.nonNil(ALL_CASES[caseName as CaseIdentifier])).toBe(true); 27 | }); 28 | 29 | test.each(["NULL", "UNDEFINED"])("is.nonNil(%s)", (caseName) => { 30 | expect(is.nonNil(ALL_CASES[caseName as CaseIdentifier])).toBe(false); 31 | }); 32 | }); 33 | }); 34 | -------------------------------------------------------------------------------- /src/convenience.ts: -------------------------------------------------------------------------------- 1 | import { array } from "./builtins"; 2 | 3 | /** 4 | * Determines if the specified collection is empty. 5 | * 6 | * If `collection` is an array, `is.empty` returns `true` and narrows the type 7 | * to a zero-length tuple, which prevents indexed access. 8 | * 9 | * If `collection` is an object, `is.empty` returns `true` if the object has no 10 | * properties or symbols of its own. This can be useful when working with 11 | * objects having an index signature `{ [key: string]: T }`, as the type guard 12 | * narrows the type to prevent any indexing. 13 | * 14 | * @example 15 | * ``` 16 | * function safelyHandleArray(arr: Array) { 17 | * if (is.empty(arr)) { 18 | * // the following line yields this TS error: 19 | * // "Tuple type '[]' of length '0' has no element at index '0'. ts(2493)" 20 | * arr[0]; 21 | * } 22 | * } 23 | * ``` 24 | * 25 | * @param value Collection in question 26 | * @returns `true` if the given collection has no indexable elements 27 | */ 28 | export function empty(value: Array): value is []; 29 | export function empty(value: { 30 | [index: string | number | symbol]: any; 31 | }): value is {}; 32 | export function empty(value: unknown): boolean { 33 | return array(value) 34 | ? value.length === 0 35 | : Object.getOwnPropertyNames(value).length === 0 && 36 | Object.getOwnPropertySymbols(value).length === 0; 37 | } 38 | 39 | /** 40 | * Determines if the argument is neither `null` nor `undefined`, intended for 41 | * inference positions where guaranteeing a value exists simplifies resulting 42 | * code. 43 | * 44 | * @example 45 | * ``` 46 | * function lookup(dict: Record, keys: Array): Array { 47 | * return keys.map((key) => dict[key]).filter(is.nonNil); 48 | * } 49 | * ``` 50 | * 51 | * @param value value in question 52 | * @returns `true` if the given value is neither `null` nor `undefined` 53 | */ 54 | export function nonNil(value: T | null | undefined): value is T { 55 | return value !== null && value !== undefined; 56 | } 57 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./primitives"; 2 | export * from "./builtins"; 3 | -------------------------------------------------------------------------------- /src/primitives.test.ts: -------------------------------------------------------------------------------- 1 | import * as is from "./primitives"; 2 | import { ALL_CASES, CaseIdentifier } from "./__test__/__fixtures__"; 3 | import { validateCases } from "./__test__/__utils__/validateCases"; 4 | 5 | describe("primitives", () => { 6 | describe("string", () => { 7 | validateCases(is.string, [ 8 | "STRING_EMPTY", 9 | "STRING_NONEMPTY", 10 | "STRING_VIA_CONSTRUCTOR", 11 | "STRING_NEGATIVE_INTEGER", 12 | "STRING_POSITIVE_INTEGER", 13 | "STRING_OCTAL_LITERAL", 14 | "STRING_HEX_LITERAL", 15 | "STRING_POSITIVE_FLOAT", 16 | "STRING_NEGATIVE_FLOAT", 17 | "STRING_EXPONENTIAL", 18 | "STRING_NEGATIVE_EXPONENTIAL", 19 | "STRING_BEGIN_NUMBER", 20 | "STRING_END_NUMBER", 21 | "STRING_WRAP_NUMBER", 22 | "STRING_WRAPPED_NUMBER", 23 | ]); 24 | }); 25 | 26 | describe("number", () => { 27 | validateCases(is.number, [ 28 | "NUMBER_ZERO", 29 | "NUMBER_POSITIVE", 30 | "NUMBER_NEGATIVE", 31 | "NUMBER_FLOAT_POSITIVE", 32 | "NUMBER_FLOAT_NEGATIVE", 33 | "NUMBER_EXPONENTIAL_POSITIVE", 34 | "NUMBER_EXPONENTIAL_NEGATIVE", 35 | "NUMBER_OCTAL_POSITIVE", 36 | "NUMBER_OCTAL_NEGATIVE", 37 | "NUMBER_HEX_POSITIVE", 38 | "NUMBER_HEX_NEGATIVE", 39 | "NUMBER_INFINITY", 40 | "NUMBER_NEGATIVE_INFINITY", 41 | "NUMBER_VIA_CONSTRUCTOR", 42 | ]); 43 | }); 44 | 45 | describe("bool", () => { 46 | validateCases(is.bool, [ 47 | "BOOLEAN_TRUE", 48 | "BOOLEAN_FALSE", 49 | "BOOLEAN_TRUE_VIA_CONSTRUCTOR", 50 | "BOOLEAN_FALSE_VIA_CONSTRUCTOR", 51 | ]); 52 | }); 53 | 54 | describe("undef", () => { 55 | validateCases(is.undef, ["UNDEFINED"]); 56 | }); 57 | 58 | describe("nil", () => { 59 | validateCases(is.nil, ["NULL"]); 60 | }); 61 | 62 | describe("symbol", () => { 63 | validateCases(is.symbol, [ 64 | "SYMBOL_EMPTY_STRING", 65 | "SYMBOL_NO_PARAMETER", 66 | "SYMBOL_STATIC", 67 | "SYMBOL_WITH_STRING", 68 | ]); 69 | }); 70 | 71 | describe("bigint", () => { 72 | validateCases(is.bigint, ["BIGINT_LITERAL"]); 73 | }); 74 | }); 75 | -------------------------------------------------------------------------------- /src/primitives.ts: -------------------------------------------------------------------------------- 1 | // User-defined type guards for Javascript primitives 2 | 3 | /** 4 | * Determines if the argument is a string. 5 | * 6 | * @param value - Value in question 7 | * @returns `true` if the given argument is a string 8 | */ 9 | export function string(value: unknown): value is string { 10 | return typeof value === "string" || value instanceof String; 11 | } 12 | 13 | /** 14 | * Determines if the argument is a number 15 | * 16 | * @param value - Value in question 17 | * @returns `true` if the given argument is a number 18 | */ 19 | export function number(value: unknown): value is number { 20 | return typeof value === "number" || value instanceof Number; 21 | } 22 | 23 | /** 24 | * Determines if the argument is a boolean 25 | * 26 | * @param value - Value in question 27 | * @returns `true` if the given argument is a boolean 28 | */ 29 | export function bool(value: unknown): value is boolean { 30 | return value === true || value === false || value instanceof Boolean; 31 | } 32 | 33 | /** 34 | * Determines if the argument is a BigInt 35 | * 36 | * @remarks 37 | * This method does not support polyfilled BigInt implementations; please defer 38 | * to the library in use to determine the type of an unknown argument. 39 | * 40 | * @param value - Value in question 41 | * @returns `true` if the given argument is a native BigInt 42 | */ 43 | export function bigint(value: unknown): boolean { 44 | return typeof value === "bigint"; 45 | } 46 | 47 | /** 48 | * Determines if the argument is undefined 49 | * 50 | * @param value - Value in question 51 | * @returns `true` if the given argument is `undefined` 52 | */ 53 | export function undef(value: unknown): value is undefined { 54 | return value === undefined; 55 | } 56 | 57 | /** 58 | * Determines if the argument is a symbol 59 | * 60 | * @param value - Value in question 61 | * @returns `true` if the given argument is a symbol 62 | */ 63 | export function symbol(value: unknown): value is Symbol { 64 | // TODO 65 | return typeof value === "symbol"; 66 | } 67 | 68 | /** 69 | * Determines if the argument is null 70 | * 71 | * @param value - Value in question 72 | * @returns `true` if the given argument is null 73 | */ 74 | export function nil(value: unknown): value is null { 75 | return value === null; 76 | } 77 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Visit https://aka.ms/tsconfig.json to read more about this file */ 4 | 5 | /* Projects */ 6 | // "incremental": true, /* Enable incremental compilation */ 7 | // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 8 | // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ 9 | // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ 10 | // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 11 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 12 | 13 | /* Language and Environment */ 14 | "target": "es2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 15 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 16 | // "jsx": "preserve", /* Specify what JSX code is generated. */ 17 | // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ 18 | // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 19 | // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ 20 | // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 21 | // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ 22 | // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ 23 | // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 24 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 25 | 26 | /* Modules */ 27 | "module": "commonjs", /* Specify what module code is generated. */ 28 | // "rootDir": "./", /* Specify the root folder within your source files. */ 29 | // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ 30 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 31 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 32 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 33 | // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ 34 | // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 35 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 36 | // "resolveJsonModule": true, /* Enable importing .json files */ 37 | // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ 38 | 39 | /* JavaScript Support */ 40 | // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ 41 | // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 42 | // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ 43 | 44 | /* Emit */ 45 | "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 46 | // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 47 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 48 | // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 49 | // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ 50 | "outDir": "./dist", /* Specify an output folder for all emitted files. */ 51 | // "removeComments": true, /* Disable emitting comments. */ 52 | // "noEmit": true, /* Disable emitting files from a compilation. */ 53 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 54 | // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ 55 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 56 | // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 57 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 58 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 59 | // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 60 | // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 61 | // "newLine": "crlf", /* Set the newline character for emitting files. */ 62 | // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ 63 | // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ 64 | // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 65 | // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ 66 | // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 67 | // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 68 | 69 | /* Interop Constraints */ 70 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 71 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 72 | "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ 73 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 74 | "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 75 | 76 | /* Type Checking */ 77 | "strict": true, /* Enable all strict type-checking options. */ 78 | // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ 79 | // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ 80 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 81 | // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ 82 | // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 83 | // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ 84 | // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ 85 | // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 86 | // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ 87 | // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ 88 | // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 89 | // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 90 | // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 91 | // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ 92 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 93 | // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ 94 | // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 95 | // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 96 | 97 | /* Completeness */ 98 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 99 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ 100 | }, 101 | "include": [ 102 | "src/**/*" 103 | ], 104 | "exclude": [ 105 | "**/__test__/**/*", 106 | "src/**/*.test.ts" 107 | ] 108 | } 109 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | version "2.1.2" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34" 8 | integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg== 9 | dependencies: 10 | "@jridgewell/trace-mapping" "^0.3.0" 11 | 12 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": 13 | version "7.16.7" 14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 15 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 16 | dependencies: 17 | "@babel/highlight" "^7.16.7" 18 | 19 | "@babel/compat-data@^7.16.4": 20 | version "7.17.0" 21 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34" 22 | integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng== 23 | 24 | "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0": 25 | version "7.17.5" 26 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.5.tgz#6cd2e836058c28f06a4ca8ee7ed955bbf37c8225" 27 | integrity sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA== 28 | dependencies: 29 | "@ampproject/remapping" "^2.1.0" 30 | "@babel/code-frame" "^7.16.7" 31 | "@babel/generator" "^7.17.3" 32 | "@babel/helper-compilation-targets" "^7.16.7" 33 | "@babel/helper-module-transforms" "^7.16.7" 34 | "@babel/helpers" "^7.17.2" 35 | "@babel/parser" "^7.17.3" 36 | "@babel/template" "^7.16.7" 37 | "@babel/traverse" "^7.17.3" 38 | "@babel/types" "^7.17.0" 39 | convert-source-map "^1.7.0" 40 | debug "^4.1.0" 41 | gensync "^1.0.0-beta.2" 42 | json5 "^2.1.2" 43 | semver "^6.3.0" 44 | 45 | "@babel/generator@^7.17.3", "@babel/generator@^7.7.2": 46 | version "7.17.3" 47 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200" 48 | integrity sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg== 49 | dependencies: 50 | "@babel/types" "^7.17.0" 51 | jsesc "^2.5.1" 52 | source-map "^0.5.0" 53 | 54 | "@babel/helper-compilation-targets@^7.16.7": 55 | version "7.16.7" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" 57 | integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== 58 | dependencies: 59 | "@babel/compat-data" "^7.16.4" 60 | "@babel/helper-validator-option" "^7.16.7" 61 | browserslist "^4.17.5" 62 | semver "^6.3.0" 63 | 64 | "@babel/helper-environment-visitor@^7.16.7": 65 | version "7.16.7" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" 67 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== 68 | dependencies: 69 | "@babel/types" "^7.16.7" 70 | 71 | "@babel/helper-function-name@^7.16.7": 72 | version "7.16.7" 73 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f" 74 | integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== 75 | dependencies: 76 | "@babel/helper-get-function-arity" "^7.16.7" 77 | "@babel/template" "^7.16.7" 78 | "@babel/types" "^7.16.7" 79 | 80 | "@babel/helper-get-function-arity@^7.16.7": 81 | version "7.16.7" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" 83 | integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== 84 | dependencies: 85 | "@babel/types" "^7.16.7" 86 | 87 | "@babel/helper-hoist-variables@^7.16.7": 88 | version "7.16.7" 89 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" 90 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 91 | dependencies: 92 | "@babel/types" "^7.16.7" 93 | 94 | "@babel/helper-module-imports@^7.16.7": 95 | version "7.16.7" 96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 97 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 98 | dependencies: 99 | "@babel/types" "^7.16.7" 100 | 101 | "@babel/helper-module-transforms@^7.16.7": 102 | version "7.17.6" 103 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz#3c3b03cc6617e33d68ef5a27a67419ac5199ccd0" 104 | integrity sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA== 105 | dependencies: 106 | "@babel/helper-environment-visitor" "^7.16.7" 107 | "@babel/helper-module-imports" "^7.16.7" 108 | "@babel/helper-simple-access" "^7.16.7" 109 | "@babel/helper-split-export-declaration" "^7.16.7" 110 | "@babel/helper-validator-identifier" "^7.16.7" 111 | "@babel/template" "^7.16.7" 112 | "@babel/traverse" "^7.17.3" 113 | "@babel/types" "^7.17.0" 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.16.7", "@babel/helper-plugin-utils@^7.8.0": 116 | version "7.16.7" 117 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" 118 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== 119 | 120 | "@babel/helper-simple-access@^7.16.7": 121 | version "7.16.7" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" 123 | integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== 124 | dependencies: 125 | "@babel/types" "^7.16.7" 126 | 127 | "@babel/helper-split-export-declaration@^7.16.7": 128 | version "7.16.7" 129 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 130 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 131 | dependencies: 132 | "@babel/types" "^7.16.7" 133 | 134 | "@babel/helper-validator-identifier@^7.16.7": 135 | version "7.16.7" 136 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 137 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 138 | 139 | "@babel/helper-validator-option@^7.16.7": 140 | version "7.16.7" 141 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 142 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 143 | 144 | "@babel/helpers@^7.17.2": 145 | version "7.17.2" 146 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.2.tgz#23f0a0746c8e287773ccd27c14be428891f63417" 147 | integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ== 148 | dependencies: 149 | "@babel/template" "^7.16.7" 150 | "@babel/traverse" "^7.17.0" 151 | "@babel/types" "^7.17.0" 152 | 153 | "@babel/highlight@^7.16.7": 154 | version "7.16.10" 155 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88" 156 | integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw== 157 | dependencies: 158 | "@babel/helper-validator-identifier" "^7.16.7" 159 | chalk "^2.0.0" 160 | js-tokens "^4.0.0" 161 | 162 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3": 163 | version "7.17.3" 164 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0" 165 | integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA== 166 | 167 | "@babel/plugin-syntax-async-generators@^7.8.4": 168 | version "7.8.4" 169 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 170 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 171 | dependencies: 172 | "@babel/helper-plugin-utils" "^7.8.0" 173 | 174 | "@babel/plugin-syntax-bigint@^7.8.3": 175 | version "7.8.3" 176 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 177 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 178 | dependencies: 179 | "@babel/helper-plugin-utils" "^7.8.0" 180 | 181 | "@babel/plugin-syntax-class-properties@^7.8.3": 182 | version "7.12.13" 183 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 184 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 185 | dependencies: 186 | "@babel/helper-plugin-utils" "^7.12.13" 187 | 188 | "@babel/plugin-syntax-import-meta@^7.8.3": 189 | version "7.10.4" 190 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 191 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 192 | dependencies: 193 | "@babel/helper-plugin-utils" "^7.10.4" 194 | 195 | "@babel/plugin-syntax-json-strings@^7.8.3": 196 | version "7.8.3" 197 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 198 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 199 | dependencies: 200 | "@babel/helper-plugin-utils" "^7.8.0" 201 | 202 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 203 | version "7.10.4" 204 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 205 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 206 | dependencies: 207 | "@babel/helper-plugin-utils" "^7.10.4" 208 | 209 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 210 | version "7.8.3" 211 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 212 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 213 | dependencies: 214 | "@babel/helper-plugin-utils" "^7.8.0" 215 | 216 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 217 | version "7.10.4" 218 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 219 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 220 | dependencies: 221 | "@babel/helper-plugin-utils" "^7.10.4" 222 | 223 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 224 | version "7.8.3" 225 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 226 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 227 | dependencies: 228 | "@babel/helper-plugin-utils" "^7.8.0" 229 | 230 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 231 | version "7.8.3" 232 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 233 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 234 | dependencies: 235 | "@babel/helper-plugin-utils" "^7.8.0" 236 | 237 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 238 | version "7.8.3" 239 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 240 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 241 | dependencies: 242 | "@babel/helper-plugin-utils" "^7.8.0" 243 | 244 | "@babel/plugin-syntax-top-level-await@^7.8.3": 245 | version "7.14.5" 246 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 247 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 248 | dependencies: 249 | "@babel/helper-plugin-utils" "^7.14.5" 250 | 251 | "@babel/plugin-syntax-typescript@^7.7.2": 252 | version "7.16.7" 253 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz#39c9b55ee153151990fb038651d58d3fd03f98f8" 254 | integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A== 255 | dependencies: 256 | "@babel/helper-plugin-utils" "^7.16.7" 257 | 258 | "@babel/template@^7.16.7", "@babel/template@^7.3.3": 259 | version "7.16.7" 260 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 261 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 262 | dependencies: 263 | "@babel/code-frame" "^7.16.7" 264 | "@babel/parser" "^7.16.7" 265 | "@babel/types" "^7.16.7" 266 | 267 | "@babel/traverse@^7.17.0", "@babel/traverse@^7.17.3", "@babel/traverse@^7.7.2": 268 | version "7.17.3" 269 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz#0ae0f15b27d9a92ba1f2263358ea7c4e7db47b57" 270 | integrity sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw== 271 | dependencies: 272 | "@babel/code-frame" "^7.16.7" 273 | "@babel/generator" "^7.17.3" 274 | "@babel/helper-environment-visitor" "^7.16.7" 275 | "@babel/helper-function-name" "^7.16.7" 276 | "@babel/helper-hoist-variables" "^7.16.7" 277 | "@babel/helper-split-export-declaration" "^7.16.7" 278 | "@babel/parser" "^7.17.3" 279 | "@babel/types" "^7.17.0" 280 | debug "^4.1.0" 281 | globals "^11.1.0" 282 | 283 | "@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 284 | version "7.17.0" 285 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" 286 | integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== 287 | dependencies: 288 | "@babel/helper-validator-identifier" "^7.16.7" 289 | to-fast-properties "^2.0.0" 290 | 291 | "@bcoe/v8-coverage@^0.2.3": 292 | version "0.2.3" 293 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 294 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 295 | 296 | "@cspotcode/source-map-consumer@0.8.0": 297 | version "0.8.0" 298 | resolved "https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" 299 | integrity sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg== 300 | 301 | "@cspotcode/source-map-support@0.7.0": 302 | version "0.7.0" 303 | resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz#4789840aa859e46d2f3173727ab707c66bf344f5" 304 | integrity sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA== 305 | dependencies: 306 | "@cspotcode/source-map-consumer" "0.8.0" 307 | 308 | "@istanbuljs/load-nyc-config@^1.0.0": 309 | version "1.1.0" 310 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 311 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 312 | dependencies: 313 | camelcase "^5.3.1" 314 | find-up "^4.1.0" 315 | get-package-type "^0.1.0" 316 | js-yaml "^3.13.1" 317 | resolve-from "^5.0.0" 318 | 319 | "@istanbuljs/schema@^0.1.2": 320 | version "0.1.3" 321 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 322 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 323 | 324 | "@jest/console@^27.5.1": 325 | version "27.5.1" 326 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba" 327 | integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== 328 | dependencies: 329 | "@jest/types" "^27.5.1" 330 | "@types/node" "*" 331 | chalk "^4.0.0" 332 | jest-message-util "^27.5.1" 333 | jest-util "^27.5.1" 334 | slash "^3.0.0" 335 | 336 | "@jest/core@^27.5.1": 337 | version "27.5.1" 338 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626" 339 | integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== 340 | dependencies: 341 | "@jest/console" "^27.5.1" 342 | "@jest/reporters" "^27.5.1" 343 | "@jest/test-result" "^27.5.1" 344 | "@jest/transform" "^27.5.1" 345 | "@jest/types" "^27.5.1" 346 | "@types/node" "*" 347 | ansi-escapes "^4.2.1" 348 | chalk "^4.0.0" 349 | emittery "^0.8.1" 350 | exit "^0.1.2" 351 | graceful-fs "^4.2.9" 352 | jest-changed-files "^27.5.1" 353 | jest-config "^27.5.1" 354 | jest-haste-map "^27.5.1" 355 | jest-message-util "^27.5.1" 356 | jest-regex-util "^27.5.1" 357 | jest-resolve "^27.5.1" 358 | jest-resolve-dependencies "^27.5.1" 359 | jest-runner "^27.5.1" 360 | jest-runtime "^27.5.1" 361 | jest-snapshot "^27.5.1" 362 | jest-util "^27.5.1" 363 | jest-validate "^27.5.1" 364 | jest-watcher "^27.5.1" 365 | micromatch "^4.0.4" 366 | rimraf "^3.0.0" 367 | slash "^3.0.0" 368 | strip-ansi "^6.0.0" 369 | 370 | "@jest/environment@^27.5.1": 371 | version "27.5.1" 372 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74" 373 | integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== 374 | dependencies: 375 | "@jest/fake-timers" "^27.5.1" 376 | "@jest/types" "^27.5.1" 377 | "@types/node" "*" 378 | jest-mock "^27.5.1" 379 | 380 | "@jest/fake-timers@^27.5.1": 381 | version "27.5.1" 382 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74" 383 | integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== 384 | dependencies: 385 | "@jest/types" "^27.5.1" 386 | "@sinonjs/fake-timers" "^8.0.1" 387 | "@types/node" "*" 388 | jest-message-util "^27.5.1" 389 | jest-mock "^27.5.1" 390 | jest-util "^27.5.1" 391 | 392 | "@jest/globals@^27.5.1": 393 | version "27.5.1" 394 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b" 395 | integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== 396 | dependencies: 397 | "@jest/environment" "^27.5.1" 398 | "@jest/types" "^27.5.1" 399 | expect "^27.5.1" 400 | 401 | "@jest/reporters@^27.5.1": 402 | version "27.5.1" 403 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04" 404 | integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== 405 | dependencies: 406 | "@bcoe/v8-coverage" "^0.2.3" 407 | "@jest/console" "^27.5.1" 408 | "@jest/test-result" "^27.5.1" 409 | "@jest/transform" "^27.5.1" 410 | "@jest/types" "^27.5.1" 411 | "@types/node" "*" 412 | chalk "^4.0.0" 413 | collect-v8-coverage "^1.0.0" 414 | exit "^0.1.2" 415 | glob "^7.1.2" 416 | graceful-fs "^4.2.9" 417 | istanbul-lib-coverage "^3.0.0" 418 | istanbul-lib-instrument "^5.1.0" 419 | istanbul-lib-report "^3.0.0" 420 | istanbul-lib-source-maps "^4.0.0" 421 | istanbul-reports "^3.1.3" 422 | jest-haste-map "^27.5.1" 423 | jest-resolve "^27.5.1" 424 | jest-util "^27.5.1" 425 | jest-worker "^27.5.1" 426 | slash "^3.0.0" 427 | source-map "^0.6.0" 428 | string-length "^4.0.1" 429 | terminal-link "^2.0.0" 430 | v8-to-istanbul "^8.1.0" 431 | 432 | "@jest/source-map@^27.5.1": 433 | version "27.5.1" 434 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf" 435 | integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== 436 | dependencies: 437 | callsites "^3.0.0" 438 | graceful-fs "^4.2.9" 439 | source-map "^0.6.0" 440 | 441 | "@jest/test-result@^27.5.1": 442 | version "27.5.1" 443 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb" 444 | integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== 445 | dependencies: 446 | "@jest/console" "^27.5.1" 447 | "@jest/types" "^27.5.1" 448 | "@types/istanbul-lib-coverage" "^2.0.0" 449 | collect-v8-coverage "^1.0.0" 450 | 451 | "@jest/test-sequencer@^27.5.1": 452 | version "27.5.1" 453 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b" 454 | integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== 455 | dependencies: 456 | "@jest/test-result" "^27.5.1" 457 | graceful-fs "^4.2.9" 458 | jest-haste-map "^27.5.1" 459 | jest-runtime "^27.5.1" 460 | 461 | "@jest/transform@^27.5.1": 462 | version "27.5.1" 463 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409" 464 | integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== 465 | dependencies: 466 | "@babel/core" "^7.1.0" 467 | "@jest/types" "^27.5.1" 468 | babel-plugin-istanbul "^6.1.1" 469 | chalk "^4.0.0" 470 | convert-source-map "^1.4.0" 471 | fast-json-stable-stringify "^2.0.0" 472 | graceful-fs "^4.2.9" 473 | jest-haste-map "^27.5.1" 474 | jest-regex-util "^27.5.1" 475 | jest-util "^27.5.1" 476 | micromatch "^4.0.4" 477 | pirates "^4.0.4" 478 | slash "^3.0.0" 479 | source-map "^0.6.1" 480 | write-file-atomic "^3.0.0" 481 | 482 | "@jest/types@^27.5.1": 483 | version "27.5.1" 484 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" 485 | integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== 486 | dependencies: 487 | "@types/istanbul-lib-coverage" "^2.0.0" 488 | "@types/istanbul-reports" "^3.0.0" 489 | "@types/node" "*" 490 | "@types/yargs" "^16.0.0" 491 | chalk "^4.0.0" 492 | 493 | "@jridgewell/resolve-uri@^3.0.3": 494 | version "3.0.5" 495 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c" 496 | integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew== 497 | 498 | "@jridgewell/sourcemap-codec@^1.4.10": 499 | version "1.4.11" 500 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec" 501 | integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg== 502 | 503 | "@jridgewell/trace-mapping@^0.3.0": 504 | version "0.3.4" 505 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz#f6a0832dffd5b8a6aaa633b7d9f8e8e94c83a0c3" 506 | integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ== 507 | dependencies: 508 | "@jridgewell/resolve-uri" "^3.0.3" 509 | "@jridgewell/sourcemap-codec" "^1.4.10" 510 | 511 | "@sinonjs/commons@^1.7.0": 512 | version "1.8.3" 513 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 514 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 515 | dependencies: 516 | type-detect "4.0.8" 517 | 518 | "@sinonjs/fake-timers@^8.0.1": 519 | version "8.1.0" 520 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7" 521 | integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== 522 | dependencies: 523 | "@sinonjs/commons" "^1.7.0" 524 | 525 | "@tootallnate/once@1": 526 | version "1.1.2" 527 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 528 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 529 | 530 | "@tsconfig/node10@^1.0.7": 531 | version "1.0.8" 532 | resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" 533 | integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== 534 | 535 | "@tsconfig/node12@^1.0.7": 536 | version "1.0.9" 537 | resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.9.tgz#62c1f6dee2ebd9aead80dc3afa56810e58e1a04c" 538 | integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== 539 | 540 | "@tsconfig/node14@^1.0.0": 541 | version "1.0.1" 542 | resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" 543 | integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== 544 | 545 | "@tsconfig/node16@^1.0.2": 546 | version "1.0.2" 547 | resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" 548 | integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== 549 | 550 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 551 | version "7.1.18" 552 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" 553 | integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== 554 | dependencies: 555 | "@babel/parser" "^7.1.0" 556 | "@babel/types" "^7.0.0" 557 | "@types/babel__generator" "*" 558 | "@types/babel__template" "*" 559 | "@types/babel__traverse" "*" 560 | 561 | "@types/babel__generator@*": 562 | version "7.6.4" 563 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" 564 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 565 | dependencies: 566 | "@babel/types" "^7.0.0" 567 | 568 | "@types/babel__template@*": 569 | version "7.4.1" 570 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 571 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 572 | dependencies: 573 | "@babel/parser" "^7.1.0" 574 | "@babel/types" "^7.0.0" 575 | 576 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 577 | version "7.14.2" 578 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 579 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 580 | dependencies: 581 | "@babel/types" "^7.3.0" 582 | 583 | "@types/graceful-fs@^4.1.2": 584 | version "4.1.5" 585 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 586 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 587 | dependencies: 588 | "@types/node" "*" 589 | 590 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 591 | version "2.0.4" 592 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" 593 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 594 | 595 | "@types/istanbul-lib-report@*": 596 | version "3.0.0" 597 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 598 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 599 | dependencies: 600 | "@types/istanbul-lib-coverage" "*" 601 | 602 | "@types/istanbul-reports@^3.0.0": 603 | version "3.0.1" 604 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 605 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 606 | dependencies: 607 | "@types/istanbul-lib-report" "*" 608 | 609 | "@types/jest@^27.4.1": 610 | version "27.4.1" 611 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.4.1.tgz#185cbe2926eaaf9662d340cc02e548ce9e11ab6d" 612 | integrity sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw== 613 | dependencies: 614 | jest-matcher-utils "^27.0.0" 615 | pretty-format "^27.0.0" 616 | 617 | "@types/node@*", "@types/node@^17.0.21": 618 | version "17.0.21" 619 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644" 620 | integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ== 621 | 622 | "@types/prettier@^2.1.5": 623 | version "2.4.4" 624 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.4.tgz#5d9b63132df54d8909fce1c3f8ca260fdd693e17" 625 | integrity sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA== 626 | 627 | "@types/stack-utils@^2.0.0": 628 | version "2.0.1" 629 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 630 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 631 | 632 | "@types/yargs-parser@*": 633 | version "21.0.0" 634 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 635 | integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 636 | 637 | "@types/yargs@^16.0.0": 638 | version "16.0.4" 639 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 640 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 641 | dependencies: 642 | "@types/yargs-parser" "*" 643 | 644 | abab@^2.0.3, abab@^2.0.5: 645 | version "2.0.5" 646 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 647 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 648 | 649 | acorn-globals@^6.0.0: 650 | version "6.0.0" 651 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 652 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 653 | dependencies: 654 | acorn "^7.1.1" 655 | acorn-walk "^7.1.1" 656 | 657 | acorn-walk@^7.1.1: 658 | version "7.2.0" 659 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 660 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 661 | 662 | acorn-walk@^8.1.1: 663 | version "8.2.0" 664 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" 665 | integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== 666 | 667 | acorn@^7.1.1: 668 | version "7.4.1" 669 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 670 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 671 | 672 | acorn@^8.2.4, acorn@^8.4.1: 673 | version "8.7.0" 674 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" 675 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 676 | 677 | agent-base@6: 678 | version "6.0.2" 679 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 680 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 681 | dependencies: 682 | debug "4" 683 | 684 | ansi-escapes@^4.2.1: 685 | version "4.3.2" 686 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 687 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 688 | dependencies: 689 | type-fest "^0.21.3" 690 | 691 | ansi-regex@^5.0.1: 692 | version "5.0.1" 693 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 694 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 695 | 696 | ansi-styles@^3.2.1: 697 | version "3.2.1" 698 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 699 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 700 | dependencies: 701 | color-convert "^1.9.0" 702 | 703 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 704 | version "4.3.0" 705 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 706 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 707 | dependencies: 708 | color-convert "^2.0.1" 709 | 710 | ansi-styles@^5.0.0: 711 | version "5.2.0" 712 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 713 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 714 | 715 | anymatch@^3.0.3: 716 | version "3.1.2" 717 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 718 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 719 | dependencies: 720 | normalize-path "^3.0.0" 721 | picomatch "^2.0.4" 722 | 723 | arg@^4.1.0: 724 | version "4.1.3" 725 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 726 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 727 | 728 | argparse@^1.0.7: 729 | version "1.0.10" 730 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 731 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 732 | dependencies: 733 | sprintf-js "~1.0.2" 734 | 735 | asynckit@^0.4.0: 736 | version "0.4.0" 737 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 738 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 739 | 740 | babel-jest@^27.5.1: 741 | version "27.5.1" 742 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444" 743 | integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== 744 | dependencies: 745 | "@jest/transform" "^27.5.1" 746 | "@jest/types" "^27.5.1" 747 | "@types/babel__core" "^7.1.14" 748 | babel-plugin-istanbul "^6.1.1" 749 | babel-preset-jest "^27.5.1" 750 | chalk "^4.0.0" 751 | graceful-fs "^4.2.9" 752 | slash "^3.0.0" 753 | 754 | babel-plugin-istanbul@^6.1.1: 755 | version "6.1.1" 756 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 757 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 758 | dependencies: 759 | "@babel/helper-plugin-utils" "^7.0.0" 760 | "@istanbuljs/load-nyc-config" "^1.0.0" 761 | "@istanbuljs/schema" "^0.1.2" 762 | istanbul-lib-instrument "^5.0.4" 763 | test-exclude "^6.0.0" 764 | 765 | babel-plugin-jest-hoist@^27.5.1: 766 | version "27.5.1" 767 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e" 768 | integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== 769 | dependencies: 770 | "@babel/template" "^7.3.3" 771 | "@babel/types" "^7.3.3" 772 | "@types/babel__core" "^7.0.0" 773 | "@types/babel__traverse" "^7.0.6" 774 | 775 | babel-preset-current-node-syntax@^1.0.0: 776 | version "1.0.1" 777 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 778 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 779 | dependencies: 780 | "@babel/plugin-syntax-async-generators" "^7.8.4" 781 | "@babel/plugin-syntax-bigint" "^7.8.3" 782 | "@babel/plugin-syntax-class-properties" "^7.8.3" 783 | "@babel/plugin-syntax-import-meta" "^7.8.3" 784 | "@babel/plugin-syntax-json-strings" "^7.8.3" 785 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 786 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 787 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 788 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 789 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 790 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 791 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 792 | 793 | babel-preset-jest@^27.5.1: 794 | version "27.5.1" 795 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81" 796 | integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== 797 | dependencies: 798 | babel-plugin-jest-hoist "^27.5.1" 799 | babel-preset-current-node-syntax "^1.0.0" 800 | 801 | balanced-match@^1.0.0: 802 | version "1.0.2" 803 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 804 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 805 | 806 | brace-expansion@^1.1.7: 807 | version "1.1.11" 808 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 809 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 810 | dependencies: 811 | balanced-match "^1.0.0" 812 | concat-map "0.0.1" 813 | 814 | brace-expansion@^2.0.1: 815 | version "2.0.1" 816 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 817 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 818 | dependencies: 819 | balanced-match "^1.0.0" 820 | 821 | braces@^3.0.1: 822 | version "3.0.2" 823 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 824 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 825 | dependencies: 826 | fill-range "^7.0.1" 827 | 828 | browser-process-hrtime@^1.0.0: 829 | version "1.0.0" 830 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 831 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 832 | 833 | browserslist@^4.17.5: 834 | version "4.20.0" 835 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.0.tgz#35951e3541078c125d36df76056e94738a52ebe9" 836 | integrity sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ== 837 | dependencies: 838 | caniuse-lite "^1.0.30001313" 839 | electron-to-chromium "^1.4.76" 840 | escalade "^3.1.1" 841 | node-releases "^2.0.2" 842 | picocolors "^1.0.0" 843 | 844 | bs-logger@0.x: 845 | version "0.2.6" 846 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 847 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 848 | dependencies: 849 | fast-json-stable-stringify "2.x" 850 | 851 | bser@2.1.1: 852 | version "2.1.1" 853 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 854 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 855 | dependencies: 856 | node-int64 "^0.4.0" 857 | 858 | buffer-from@^1.0.0: 859 | version "1.1.2" 860 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 861 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 862 | 863 | callsites@^3.0.0: 864 | version "3.1.0" 865 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 866 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 867 | 868 | camelcase@^5.3.1: 869 | version "5.3.1" 870 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 871 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 872 | 873 | camelcase@^6.2.0: 874 | version "6.3.0" 875 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 876 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 877 | 878 | caniuse-lite@^1.0.30001313: 879 | version "1.0.30001314" 880 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz#65c7f9fb7e4594fca0a333bec1d8939662377596" 881 | integrity sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw== 882 | 883 | chalk@^2.0.0: 884 | version "2.4.2" 885 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 886 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 887 | dependencies: 888 | ansi-styles "^3.2.1" 889 | escape-string-regexp "^1.0.5" 890 | supports-color "^5.3.0" 891 | 892 | chalk@^4.0.0: 893 | version "4.1.2" 894 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 895 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 896 | dependencies: 897 | ansi-styles "^4.1.0" 898 | supports-color "^7.1.0" 899 | 900 | char-regex@^1.0.2: 901 | version "1.0.2" 902 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 903 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 904 | 905 | ci-info@^3.2.0: 906 | version "3.3.0" 907 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" 908 | integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== 909 | 910 | cjs-module-lexer@^1.0.0: 911 | version "1.2.2" 912 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 913 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 914 | 915 | cliui@^7.0.2: 916 | version "7.0.4" 917 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 918 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 919 | dependencies: 920 | string-width "^4.2.0" 921 | strip-ansi "^6.0.0" 922 | wrap-ansi "^7.0.0" 923 | 924 | co@^4.6.0: 925 | version "4.6.0" 926 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 927 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 928 | 929 | collect-v8-coverage@^1.0.0: 930 | version "1.0.1" 931 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 932 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 933 | 934 | color-convert@^1.9.0: 935 | version "1.9.3" 936 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 937 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 938 | dependencies: 939 | color-name "1.1.3" 940 | 941 | color-convert@^2.0.1: 942 | version "2.0.1" 943 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 944 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 945 | dependencies: 946 | color-name "~1.1.4" 947 | 948 | color-name@1.1.3: 949 | version "1.1.3" 950 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 951 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 952 | 953 | color-name@~1.1.4: 954 | version "1.1.4" 955 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 956 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 957 | 958 | combined-stream@^1.0.8: 959 | version "1.0.8" 960 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 961 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 962 | dependencies: 963 | delayed-stream "~1.0.0" 964 | 965 | concat-map@0.0.1: 966 | version "0.0.1" 967 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 968 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 969 | 970 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 971 | version "1.8.0" 972 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 973 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 974 | dependencies: 975 | safe-buffer "~5.1.1" 976 | 977 | create-require@^1.1.0: 978 | version "1.1.1" 979 | resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 980 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 981 | 982 | cross-spawn@^7.0.3: 983 | version "7.0.3" 984 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 985 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 986 | dependencies: 987 | path-key "^3.1.0" 988 | shebang-command "^2.0.0" 989 | which "^2.0.1" 990 | 991 | cssom@^0.4.4: 992 | version "0.4.4" 993 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 994 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 995 | 996 | cssom@~0.3.6: 997 | version "0.3.8" 998 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 999 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1000 | 1001 | cssstyle@^2.3.0: 1002 | version "2.3.0" 1003 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1004 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1005 | dependencies: 1006 | cssom "~0.3.6" 1007 | 1008 | data-urls@^2.0.0: 1009 | version "2.0.0" 1010 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1011 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1012 | dependencies: 1013 | abab "^2.0.3" 1014 | whatwg-mimetype "^2.3.0" 1015 | whatwg-url "^8.0.0" 1016 | 1017 | debug@4, debug@^4.1.0, debug@^4.1.1: 1018 | version "4.3.3" 1019 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 1020 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 1021 | dependencies: 1022 | ms "2.1.2" 1023 | 1024 | decimal.js@^10.2.1: 1025 | version "10.3.1" 1026 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1027 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1028 | 1029 | dedent@^0.7.0: 1030 | version "0.7.0" 1031 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1032 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1033 | 1034 | deep-is@~0.1.3: 1035 | version "0.1.4" 1036 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1037 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1038 | 1039 | deepmerge@^4.2.2: 1040 | version "4.2.2" 1041 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1042 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1043 | 1044 | delayed-stream@~1.0.0: 1045 | version "1.0.0" 1046 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1047 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1048 | 1049 | detect-newline@^3.0.0: 1050 | version "3.1.0" 1051 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1052 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1053 | 1054 | diff-sequences@^27.5.1: 1055 | version "27.5.1" 1056 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" 1057 | integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== 1058 | 1059 | diff@^4.0.1: 1060 | version "4.0.2" 1061 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 1062 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 1063 | 1064 | domexception@^2.0.1: 1065 | version "2.0.1" 1066 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1067 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1068 | dependencies: 1069 | webidl-conversions "^5.0.0" 1070 | 1071 | electron-to-chromium@^1.4.76: 1072 | version "1.4.82" 1073 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.82.tgz#51e123ca434b1eba8c434ece2b54f095b304a651" 1074 | integrity sha512-Ks+ANzLoIrFDUOJdjxYMH6CMKB8UQo5modAwvSZTxgF+vEs/U7G5IbWFUp6dS4klPkTDVdxbORuk8xAXXhMsWw== 1075 | 1076 | emittery@^0.8.1: 1077 | version "0.8.1" 1078 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1079 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1080 | 1081 | emoji-regex@^8.0.0: 1082 | version "8.0.0" 1083 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1084 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1085 | 1086 | error-ex@^1.3.1: 1087 | version "1.3.2" 1088 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1089 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1090 | dependencies: 1091 | is-arrayish "^0.2.1" 1092 | 1093 | escalade@^3.1.1: 1094 | version "3.1.1" 1095 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1096 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1097 | 1098 | escape-string-regexp@^1.0.5: 1099 | version "1.0.5" 1100 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1101 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1102 | 1103 | escape-string-regexp@^2.0.0: 1104 | version "2.0.0" 1105 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1106 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1107 | 1108 | escodegen@^2.0.0: 1109 | version "2.0.0" 1110 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1111 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1112 | dependencies: 1113 | esprima "^4.0.1" 1114 | estraverse "^5.2.0" 1115 | esutils "^2.0.2" 1116 | optionator "^0.8.1" 1117 | optionalDependencies: 1118 | source-map "~0.6.1" 1119 | 1120 | esprima@^4.0.0, esprima@^4.0.1: 1121 | version "4.0.1" 1122 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1123 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1124 | 1125 | estraverse@^5.2.0: 1126 | version "5.3.0" 1127 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1128 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1129 | 1130 | esutils@^2.0.2: 1131 | version "2.0.3" 1132 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1133 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1134 | 1135 | execa@^5.0.0: 1136 | version "5.1.1" 1137 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1138 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1139 | dependencies: 1140 | cross-spawn "^7.0.3" 1141 | get-stream "^6.0.0" 1142 | human-signals "^2.1.0" 1143 | is-stream "^2.0.0" 1144 | merge-stream "^2.0.0" 1145 | npm-run-path "^4.0.1" 1146 | onetime "^5.1.2" 1147 | signal-exit "^3.0.3" 1148 | strip-final-newline "^2.0.0" 1149 | 1150 | exit@^0.1.2: 1151 | version "0.1.2" 1152 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1153 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1154 | 1155 | expect@^27.5.1: 1156 | version "27.5.1" 1157 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.5.1.tgz#83ce59f1e5bdf5f9d2b94b61d2050db48f3fef74" 1158 | integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== 1159 | dependencies: 1160 | "@jest/types" "^27.5.1" 1161 | jest-get-type "^27.5.1" 1162 | jest-matcher-utils "^27.5.1" 1163 | jest-message-util "^27.5.1" 1164 | 1165 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1166 | version "2.1.0" 1167 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1168 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1169 | 1170 | fast-levenshtein@~2.0.6: 1171 | version "2.0.6" 1172 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1173 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1174 | 1175 | fb-watchman@^2.0.0: 1176 | version "2.0.1" 1177 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1178 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1179 | dependencies: 1180 | bser "2.1.1" 1181 | 1182 | fill-range@^7.0.1: 1183 | version "7.0.1" 1184 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1185 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1186 | dependencies: 1187 | to-regex-range "^5.0.1" 1188 | 1189 | find-up@^4.0.0, find-up@^4.1.0: 1190 | version "4.1.0" 1191 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1192 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1193 | dependencies: 1194 | locate-path "^5.0.0" 1195 | path-exists "^4.0.0" 1196 | 1197 | form-data@^3.0.0: 1198 | version "3.0.1" 1199 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1200 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1201 | dependencies: 1202 | asynckit "^0.4.0" 1203 | combined-stream "^1.0.8" 1204 | mime-types "^2.1.12" 1205 | 1206 | fs.realpath@^1.0.0: 1207 | version "1.0.0" 1208 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1209 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1210 | 1211 | fsevents@^2.3.2: 1212 | version "2.3.2" 1213 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1214 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1215 | 1216 | function-bind@^1.1.1: 1217 | version "1.1.1" 1218 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1219 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1220 | 1221 | gensync@^1.0.0-beta.2: 1222 | version "1.0.0-beta.2" 1223 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1224 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1225 | 1226 | get-caller-file@^2.0.5: 1227 | version "2.0.5" 1228 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1229 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1230 | 1231 | get-package-type@^0.1.0: 1232 | version "0.1.0" 1233 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1234 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1235 | 1236 | get-stream@^6.0.0: 1237 | version "6.0.1" 1238 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1239 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1240 | 1241 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0: 1242 | version "7.2.0" 1243 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1244 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1245 | dependencies: 1246 | fs.realpath "^1.0.0" 1247 | inflight "^1.0.4" 1248 | inherits "2" 1249 | minimatch "^3.0.4" 1250 | once "^1.3.0" 1251 | path-is-absolute "^1.0.0" 1252 | 1253 | globals@^11.1.0: 1254 | version "11.12.0" 1255 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1256 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1257 | 1258 | graceful-fs@^4.2.9: 1259 | version "4.2.9" 1260 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96" 1261 | integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== 1262 | 1263 | handlebars@^4.7.7: 1264 | version "4.7.7" 1265 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1266 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 1267 | dependencies: 1268 | minimist "^1.2.5" 1269 | neo-async "^2.6.0" 1270 | source-map "^0.6.1" 1271 | wordwrap "^1.0.0" 1272 | optionalDependencies: 1273 | uglify-js "^3.1.4" 1274 | 1275 | has-flag@^3.0.0: 1276 | version "3.0.0" 1277 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1278 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1279 | 1280 | has-flag@^4.0.0: 1281 | version "4.0.0" 1282 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1283 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1284 | 1285 | has@^1.0.3: 1286 | version "1.0.3" 1287 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1288 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1289 | dependencies: 1290 | function-bind "^1.1.1" 1291 | 1292 | html-encoding-sniffer@^2.0.1: 1293 | version "2.0.1" 1294 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1295 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1296 | dependencies: 1297 | whatwg-encoding "^1.0.5" 1298 | 1299 | html-escaper@^2.0.0: 1300 | version "2.0.2" 1301 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1302 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1303 | 1304 | http-proxy-agent@^4.0.1: 1305 | version "4.0.1" 1306 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1307 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1308 | dependencies: 1309 | "@tootallnate/once" "1" 1310 | agent-base "6" 1311 | debug "4" 1312 | 1313 | https-proxy-agent@^5.0.0: 1314 | version "5.0.0" 1315 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1316 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1317 | dependencies: 1318 | agent-base "6" 1319 | debug "4" 1320 | 1321 | human-signals@^2.1.0: 1322 | version "2.1.0" 1323 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1324 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1325 | 1326 | iconv-lite@0.4.24: 1327 | version "0.4.24" 1328 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1329 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1330 | dependencies: 1331 | safer-buffer ">= 2.1.2 < 3" 1332 | 1333 | import-local@^3.0.2: 1334 | version "3.1.0" 1335 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 1336 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1337 | dependencies: 1338 | pkg-dir "^4.2.0" 1339 | resolve-cwd "^3.0.0" 1340 | 1341 | imurmurhash@^0.1.4: 1342 | version "0.1.4" 1343 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1344 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1345 | 1346 | inflight@^1.0.4: 1347 | version "1.0.6" 1348 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1349 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1350 | dependencies: 1351 | once "^1.3.0" 1352 | wrappy "1" 1353 | 1354 | inherits@2: 1355 | version "2.0.4" 1356 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1357 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1358 | 1359 | is-arrayish@^0.2.1: 1360 | version "0.2.1" 1361 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1362 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1363 | 1364 | is-core-module@^2.8.1: 1365 | version "2.8.1" 1366 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 1367 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 1368 | dependencies: 1369 | has "^1.0.3" 1370 | 1371 | is-fullwidth-code-point@^3.0.0: 1372 | version "3.0.0" 1373 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1374 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1375 | 1376 | is-generator-fn@^2.0.0: 1377 | version "2.1.0" 1378 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1379 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1380 | 1381 | is-number@^7.0.0: 1382 | version "7.0.0" 1383 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1384 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1385 | 1386 | is-potential-custom-element-name@^1.0.1: 1387 | version "1.0.1" 1388 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 1389 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 1390 | 1391 | is-stream@^2.0.0: 1392 | version "2.0.1" 1393 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1394 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1395 | 1396 | is-typedarray@^1.0.0: 1397 | version "1.0.0" 1398 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1399 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1400 | 1401 | isexe@^2.0.0: 1402 | version "2.0.0" 1403 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1404 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1405 | 1406 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1407 | version "3.2.0" 1408 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 1409 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 1410 | 1411 | istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: 1412 | version "5.1.0" 1413 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" 1414 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 1415 | dependencies: 1416 | "@babel/core" "^7.12.3" 1417 | "@babel/parser" "^7.14.7" 1418 | "@istanbuljs/schema" "^0.1.2" 1419 | istanbul-lib-coverage "^3.2.0" 1420 | semver "^6.3.0" 1421 | 1422 | istanbul-lib-report@^3.0.0: 1423 | version "3.0.0" 1424 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 1425 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1426 | dependencies: 1427 | istanbul-lib-coverage "^3.0.0" 1428 | make-dir "^3.0.0" 1429 | supports-color "^7.1.0" 1430 | 1431 | istanbul-lib-source-maps@^4.0.0: 1432 | version "4.0.1" 1433 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1434 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1435 | dependencies: 1436 | debug "^4.1.1" 1437 | istanbul-lib-coverage "^3.0.0" 1438 | source-map "^0.6.1" 1439 | 1440 | istanbul-reports@^3.1.3: 1441 | version "3.1.4" 1442 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" 1443 | integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== 1444 | dependencies: 1445 | html-escaper "^2.0.0" 1446 | istanbul-lib-report "^3.0.0" 1447 | 1448 | jest-changed-files@^27.5.1: 1449 | version "27.5.1" 1450 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz#a348aed00ec9bf671cc58a66fcbe7c3dfd6a68f5" 1451 | integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== 1452 | dependencies: 1453 | "@jest/types" "^27.5.1" 1454 | execa "^5.0.0" 1455 | throat "^6.0.1" 1456 | 1457 | jest-circus@^27.5.1: 1458 | version "27.5.1" 1459 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.5.1.tgz#37a5a4459b7bf4406e53d637b49d22c65d125ecc" 1460 | integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== 1461 | dependencies: 1462 | "@jest/environment" "^27.5.1" 1463 | "@jest/test-result" "^27.5.1" 1464 | "@jest/types" "^27.5.1" 1465 | "@types/node" "*" 1466 | chalk "^4.0.0" 1467 | co "^4.6.0" 1468 | dedent "^0.7.0" 1469 | expect "^27.5.1" 1470 | is-generator-fn "^2.0.0" 1471 | jest-each "^27.5.1" 1472 | jest-matcher-utils "^27.5.1" 1473 | jest-message-util "^27.5.1" 1474 | jest-runtime "^27.5.1" 1475 | jest-snapshot "^27.5.1" 1476 | jest-util "^27.5.1" 1477 | pretty-format "^27.5.1" 1478 | slash "^3.0.0" 1479 | stack-utils "^2.0.3" 1480 | throat "^6.0.1" 1481 | 1482 | jest-cli@^27.5.1: 1483 | version "27.5.1" 1484 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.5.1.tgz#278794a6e6458ea8029547e6c6cbf673bd30b145" 1485 | integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== 1486 | dependencies: 1487 | "@jest/core" "^27.5.1" 1488 | "@jest/test-result" "^27.5.1" 1489 | "@jest/types" "^27.5.1" 1490 | chalk "^4.0.0" 1491 | exit "^0.1.2" 1492 | graceful-fs "^4.2.9" 1493 | import-local "^3.0.2" 1494 | jest-config "^27.5.1" 1495 | jest-util "^27.5.1" 1496 | jest-validate "^27.5.1" 1497 | prompts "^2.0.1" 1498 | yargs "^16.2.0" 1499 | 1500 | jest-config@^27.5.1: 1501 | version "27.5.1" 1502 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.5.1.tgz#5c387de33dca3f99ad6357ddeccd91bf3a0e4a41" 1503 | integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== 1504 | dependencies: 1505 | "@babel/core" "^7.8.0" 1506 | "@jest/test-sequencer" "^27.5.1" 1507 | "@jest/types" "^27.5.1" 1508 | babel-jest "^27.5.1" 1509 | chalk "^4.0.0" 1510 | ci-info "^3.2.0" 1511 | deepmerge "^4.2.2" 1512 | glob "^7.1.1" 1513 | graceful-fs "^4.2.9" 1514 | jest-circus "^27.5.1" 1515 | jest-environment-jsdom "^27.5.1" 1516 | jest-environment-node "^27.5.1" 1517 | jest-get-type "^27.5.1" 1518 | jest-jasmine2 "^27.5.1" 1519 | jest-regex-util "^27.5.1" 1520 | jest-resolve "^27.5.1" 1521 | jest-runner "^27.5.1" 1522 | jest-util "^27.5.1" 1523 | jest-validate "^27.5.1" 1524 | micromatch "^4.0.4" 1525 | parse-json "^5.2.0" 1526 | pretty-format "^27.5.1" 1527 | slash "^3.0.0" 1528 | strip-json-comments "^3.1.1" 1529 | 1530 | jest-diff@^27.5.1: 1531 | version "27.5.1" 1532 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" 1533 | integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== 1534 | dependencies: 1535 | chalk "^4.0.0" 1536 | diff-sequences "^27.5.1" 1537 | jest-get-type "^27.5.1" 1538 | pretty-format "^27.5.1" 1539 | 1540 | jest-docblock@^27.5.1: 1541 | version "27.5.1" 1542 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.5.1.tgz#14092f364a42c6108d42c33c8cf30e058e25f6c0" 1543 | integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== 1544 | dependencies: 1545 | detect-newline "^3.0.0" 1546 | 1547 | jest-each@^27.5.1: 1548 | version "27.5.1" 1549 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.5.1.tgz#5bc87016f45ed9507fed6e4702a5b468a5b2c44e" 1550 | integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== 1551 | dependencies: 1552 | "@jest/types" "^27.5.1" 1553 | chalk "^4.0.0" 1554 | jest-get-type "^27.5.1" 1555 | jest-util "^27.5.1" 1556 | pretty-format "^27.5.1" 1557 | 1558 | jest-environment-jsdom@^27.5.1: 1559 | version "27.5.1" 1560 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz#ea9ccd1fc610209655a77898f86b2b559516a546" 1561 | integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== 1562 | dependencies: 1563 | "@jest/environment" "^27.5.1" 1564 | "@jest/fake-timers" "^27.5.1" 1565 | "@jest/types" "^27.5.1" 1566 | "@types/node" "*" 1567 | jest-mock "^27.5.1" 1568 | jest-util "^27.5.1" 1569 | jsdom "^16.6.0" 1570 | 1571 | jest-environment-node@^27.5.1: 1572 | version "27.5.1" 1573 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz#dedc2cfe52fab6b8f5714b4808aefa85357a365e" 1574 | integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== 1575 | dependencies: 1576 | "@jest/environment" "^27.5.1" 1577 | "@jest/fake-timers" "^27.5.1" 1578 | "@jest/types" "^27.5.1" 1579 | "@types/node" "*" 1580 | jest-mock "^27.5.1" 1581 | jest-util "^27.5.1" 1582 | 1583 | jest-get-type@^27.5.1: 1584 | version "27.5.1" 1585 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" 1586 | integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== 1587 | 1588 | jest-haste-map@^27.5.1: 1589 | version "27.5.1" 1590 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f" 1591 | integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== 1592 | dependencies: 1593 | "@jest/types" "^27.5.1" 1594 | "@types/graceful-fs" "^4.1.2" 1595 | "@types/node" "*" 1596 | anymatch "^3.0.3" 1597 | fb-watchman "^2.0.0" 1598 | graceful-fs "^4.2.9" 1599 | jest-regex-util "^27.5.1" 1600 | jest-serializer "^27.5.1" 1601 | jest-util "^27.5.1" 1602 | jest-worker "^27.5.1" 1603 | micromatch "^4.0.4" 1604 | walker "^1.0.7" 1605 | optionalDependencies: 1606 | fsevents "^2.3.2" 1607 | 1608 | jest-jasmine2@^27.5.1: 1609 | version "27.5.1" 1610 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz#a037b0034ef49a9f3d71c4375a796f3b230d1ac4" 1611 | integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== 1612 | dependencies: 1613 | "@jest/environment" "^27.5.1" 1614 | "@jest/source-map" "^27.5.1" 1615 | "@jest/test-result" "^27.5.1" 1616 | "@jest/types" "^27.5.1" 1617 | "@types/node" "*" 1618 | chalk "^4.0.0" 1619 | co "^4.6.0" 1620 | expect "^27.5.1" 1621 | is-generator-fn "^2.0.0" 1622 | jest-each "^27.5.1" 1623 | jest-matcher-utils "^27.5.1" 1624 | jest-message-util "^27.5.1" 1625 | jest-runtime "^27.5.1" 1626 | jest-snapshot "^27.5.1" 1627 | jest-util "^27.5.1" 1628 | pretty-format "^27.5.1" 1629 | throat "^6.0.1" 1630 | 1631 | jest-leak-detector@^27.5.1: 1632 | version "27.5.1" 1633 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz#6ec9d54c3579dd6e3e66d70e3498adf80fde3fb8" 1634 | integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== 1635 | dependencies: 1636 | jest-get-type "^27.5.1" 1637 | pretty-format "^27.5.1" 1638 | 1639 | jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1: 1640 | version "27.5.1" 1641 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" 1642 | integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== 1643 | dependencies: 1644 | chalk "^4.0.0" 1645 | jest-diff "^27.5.1" 1646 | jest-get-type "^27.5.1" 1647 | pretty-format "^27.5.1" 1648 | 1649 | jest-message-util@^27.5.1: 1650 | version "27.5.1" 1651 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf" 1652 | integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== 1653 | dependencies: 1654 | "@babel/code-frame" "^7.12.13" 1655 | "@jest/types" "^27.5.1" 1656 | "@types/stack-utils" "^2.0.0" 1657 | chalk "^4.0.0" 1658 | graceful-fs "^4.2.9" 1659 | micromatch "^4.0.4" 1660 | pretty-format "^27.5.1" 1661 | slash "^3.0.0" 1662 | stack-utils "^2.0.3" 1663 | 1664 | jest-mock@^27.5.1: 1665 | version "27.5.1" 1666 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" 1667 | integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== 1668 | dependencies: 1669 | "@jest/types" "^27.5.1" 1670 | "@types/node" "*" 1671 | 1672 | jest-pnp-resolver@^1.2.2: 1673 | version "1.2.2" 1674 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 1675 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 1676 | 1677 | jest-regex-util@^27.5.1: 1678 | version "27.5.1" 1679 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95" 1680 | integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== 1681 | 1682 | jest-resolve-dependencies@^27.5.1: 1683 | version "27.5.1" 1684 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz#d811ecc8305e731cc86dd79741ee98fed06f1da8" 1685 | integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== 1686 | dependencies: 1687 | "@jest/types" "^27.5.1" 1688 | jest-regex-util "^27.5.1" 1689 | jest-snapshot "^27.5.1" 1690 | 1691 | jest-resolve@^27.5.1: 1692 | version "27.5.1" 1693 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.5.1.tgz#a2f1c5a0796ec18fe9eb1536ac3814c23617b384" 1694 | integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== 1695 | dependencies: 1696 | "@jest/types" "^27.5.1" 1697 | chalk "^4.0.0" 1698 | graceful-fs "^4.2.9" 1699 | jest-haste-map "^27.5.1" 1700 | jest-pnp-resolver "^1.2.2" 1701 | jest-util "^27.5.1" 1702 | jest-validate "^27.5.1" 1703 | resolve "^1.20.0" 1704 | resolve.exports "^1.1.0" 1705 | slash "^3.0.0" 1706 | 1707 | jest-runner@^27.5.1: 1708 | version "27.5.1" 1709 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.5.1.tgz#071b27c1fa30d90540805c5645a0ec167c7b62e5" 1710 | integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== 1711 | dependencies: 1712 | "@jest/console" "^27.5.1" 1713 | "@jest/environment" "^27.5.1" 1714 | "@jest/test-result" "^27.5.1" 1715 | "@jest/transform" "^27.5.1" 1716 | "@jest/types" "^27.5.1" 1717 | "@types/node" "*" 1718 | chalk "^4.0.0" 1719 | emittery "^0.8.1" 1720 | graceful-fs "^4.2.9" 1721 | jest-docblock "^27.5.1" 1722 | jest-environment-jsdom "^27.5.1" 1723 | jest-environment-node "^27.5.1" 1724 | jest-haste-map "^27.5.1" 1725 | jest-leak-detector "^27.5.1" 1726 | jest-message-util "^27.5.1" 1727 | jest-resolve "^27.5.1" 1728 | jest-runtime "^27.5.1" 1729 | jest-util "^27.5.1" 1730 | jest-worker "^27.5.1" 1731 | source-map-support "^0.5.6" 1732 | throat "^6.0.1" 1733 | 1734 | jest-runtime@^27.5.1: 1735 | version "27.5.1" 1736 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.5.1.tgz#4896003d7a334f7e8e4a53ba93fb9bcd3db0a1af" 1737 | integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== 1738 | dependencies: 1739 | "@jest/environment" "^27.5.1" 1740 | "@jest/fake-timers" "^27.5.1" 1741 | "@jest/globals" "^27.5.1" 1742 | "@jest/source-map" "^27.5.1" 1743 | "@jest/test-result" "^27.5.1" 1744 | "@jest/transform" "^27.5.1" 1745 | "@jest/types" "^27.5.1" 1746 | chalk "^4.0.0" 1747 | cjs-module-lexer "^1.0.0" 1748 | collect-v8-coverage "^1.0.0" 1749 | execa "^5.0.0" 1750 | glob "^7.1.3" 1751 | graceful-fs "^4.2.9" 1752 | jest-haste-map "^27.5.1" 1753 | jest-message-util "^27.5.1" 1754 | jest-mock "^27.5.1" 1755 | jest-regex-util "^27.5.1" 1756 | jest-resolve "^27.5.1" 1757 | jest-snapshot "^27.5.1" 1758 | jest-util "^27.5.1" 1759 | slash "^3.0.0" 1760 | strip-bom "^4.0.0" 1761 | 1762 | jest-serializer@^27.5.1: 1763 | version "27.5.1" 1764 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64" 1765 | integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== 1766 | dependencies: 1767 | "@types/node" "*" 1768 | graceful-fs "^4.2.9" 1769 | 1770 | jest-snapshot@^27.5.1: 1771 | version "27.5.1" 1772 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz#b668d50d23d38054a51b42c4039cab59ae6eb6a1" 1773 | integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== 1774 | dependencies: 1775 | "@babel/core" "^7.7.2" 1776 | "@babel/generator" "^7.7.2" 1777 | "@babel/plugin-syntax-typescript" "^7.7.2" 1778 | "@babel/traverse" "^7.7.2" 1779 | "@babel/types" "^7.0.0" 1780 | "@jest/transform" "^27.5.1" 1781 | "@jest/types" "^27.5.1" 1782 | "@types/babel__traverse" "^7.0.4" 1783 | "@types/prettier" "^2.1.5" 1784 | babel-preset-current-node-syntax "^1.0.0" 1785 | chalk "^4.0.0" 1786 | expect "^27.5.1" 1787 | graceful-fs "^4.2.9" 1788 | jest-diff "^27.5.1" 1789 | jest-get-type "^27.5.1" 1790 | jest-haste-map "^27.5.1" 1791 | jest-matcher-utils "^27.5.1" 1792 | jest-message-util "^27.5.1" 1793 | jest-util "^27.5.1" 1794 | natural-compare "^1.4.0" 1795 | pretty-format "^27.5.1" 1796 | semver "^7.3.2" 1797 | 1798 | jest-util@^27.0.0, jest-util@^27.5.1: 1799 | version "27.5.1" 1800 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9" 1801 | integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== 1802 | dependencies: 1803 | "@jest/types" "^27.5.1" 1804 | "@types/node" "*" 1805 | chalk "^4.0.0" 1806 | ci-info "^3.2.0" 1807 | graceful-fs "^4.2.9" 1808 | picomatch "^2.2.3" 1809 | 1810 | jest-validate@^27.5.1: 1811 | version "27.5.1" 1812 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.5.1.tgz#9197d54dc0bdb52260b8db40b46ae668e04df067" 1813 | integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== 1814 | dependencies: 1815 | "@jest/types" "^27.5.1" 1816 | camelcase "^6.2.0" 1817 | chalk "^4.0.0" 1818 | jest-get-type "^27.5.1" 1819 | leven "^3.1.0" 1820 | pretty-format "^27.5.1" 1821 | 1822 | jest-watcher@^27.5.1: 1823 | version "27.5.1" 1824 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2" 1825 | integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== 1826 | dependencies: 1827 | "@jest/test-result" "^27.5.1" 1828 | "@jest/types" "^27.5.1" 1829 | "@types/node" "*" 1830 | ansi-escapes "^4.2.1" 1831 | chalk "^4.0.0" 1832 | jest-util "^27.5.1" 1833 | string-length "^4.0.1" 1834 | 1835 | jest-worker@^27.5.1: 1836 | version "27.5.1" 1837 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" 1838 | integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== 1839 | dependencies: 1840 | "@types/node" "*" 1841 | merge-stream "^2.0.0" 1842 | supports-color "^8.0.0" 1843 | 1844 | jest@^27.5.1: 1845 | version "27.5.1" 1846 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.5.1.tgz#dadf33ba70a779be7a6fc33015843b51494f63fc" 1847 | integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== 1848 | dependencies: 1849 | "@jest/core" "^27.5.1" 1850 | import-local "^3.0.2" 1851 | jest-cli "^27.5.1" 1852 | 1853 | js-tokens@^4.0.0: 1854 | version "4.0.0" 1855 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1856 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1857 | 1858 | js-yaml@^3.13.1: 1859 | version "3.14.1" 1860 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1861 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1862 | dependencies: 1863 | argparse "^1.0.7" 1864 | esprima "^4.0.0" 1865 | 1866 | jsdom@^16.6.0: 1867 | version "16.7.0" 1868 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 1869 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 1870 | dependencies: 1871 | abab "^2.0.5" 1872 | acorn "^8.2.4" 1873 | acorn-globals "^6.0.0" 1874 | cssom "^0.4.4" 1875 | cssstyle "^2.3.0" 1876 | data-urls "^2.0.0" 1877 | decimal.js "^10.2.1" 1878 | domexception "^2.0.1" 1879 | escodegen "^2.0.0" 1880 | form-data "^3.0.0" 1881 | html-encoding-sniffer "^2.0.1" 1882 | http-proxy-agent "^4.0.1" 1883 | https-proxy-agent "^5.0.0" 1884 | is-potential-custom-element-name "^1.0.1" 1885 | nwsapi "^2.2.0" 1886 | parse5 "6.0.1" 1887 | saxes "^5.0.1" 1888 | symbol-tree "^3.2.4" 1889 | tough-cookie "^4.0.0" 1890 | w3c-hr-time "^1.0.2" 1891 | w3c-xmlserializer "^2.0.0" 1892 | webidl-conversions "^6.1.0" 1893 | whatwg-encoding "^1.0.5" 1894 | whatwg-mimetype "^2.3.0" 1895 | whatwg-url "^8.5.0" 1896 | ws "^7.4.6" 1897 | xml-name-validator "^3.0.0" 1898 | 1899 | jsesc@^2.5.1: 1900 | version "2.5.2" 1901 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1902 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1903 | 1904 | json-parse-even-better-errors@^2.3.0: 1905 | version "2.3.1" 1906 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1907 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1908 | 1909 | json5@2.x, json5@^2.1.2: 1910 | version "2.2.0" 1911 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1912 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1913 | dependencies: 1914 | minimist "^1.2.5" 1915 | 1916 | jsonc-parser@^3.0.0: 1917 | version "3.0.0" 1918 | resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22" 1919 | integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== 1920 | 1921 | kleur@^3.0.3: 1922 | version "3.0.3" 1923 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 1924 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 1925 | 1926 | leven@^3.1.0: 1927 | version "3.1.0" 1928 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1929 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1930 | 1931 | levn@~0.3.0: 1932 | version "0.3.0" 1933 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1934 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1935 | dependencies: 1936 | prelude-ls "~1.1.2" 1937 | type-check "~0.3.2" 1938 | 1939 | lines-and-columns@^1.1.6: 1940 | version "1.2.4" 1941 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1942 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1943 | 1944 | locate-path@^5.0.0: 1945 | version "5.0.0" 1946 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1947 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1948 | dependencies: 1949 | p-locate "^4.1.0" 1950 | 1951 | lodash.memoize@4.x: 1952 | version "4.1.2" 1953 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1954 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 1955 | 1956 | lodash@^4.7.0: 1957 | version "4.17.21" 1958 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1959 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1960 | 1961 | lru-cache@^6.0.0: 1962 | version "6.0.0" 1963 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1964 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1965 | dependencies: 1966 | yallist "^4.0.0" 1967 | 1968 | lunr@^2.3.9: 1969 | version "2.3.9" 1970 | resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" 1971 | integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== 1972 | 1973 | make-dir@^3.0.0: 1974 | version "3.1.0" 1975 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1976 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1977 | dependencies: 1978 | semver "^6.0.0" 1979 | 1980 | make-error@1.x, make-error@^1.1.1: 1981 | version "1.3.6" 1982 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1983 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1984 | 1985 | makeerror@1.0.12: 1986 | version "1.0.12" 1987 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 1988 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 1989 | dependencies: 1990 | tmpl "1.0.5" 1991 | 1992 | marked@^4.0.12: 1993 | version "4.0.12" 1994 | resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.12.tgz#2262a4e6fd1afd2f13557726238b69a48b982f7d" 1995 | integrity sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ== 1996 | 1997 | merge-stream@^2.0.0: 1998 | version "2.0.0" 1999 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2000 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2001 | 2002 | micromatch@^4.0.4: 2003 | version "4.0.4" 2004 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 2005 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2006 | dependencies: 2007 | braces "^3.0.1" 2008 | picomatch "^2.2.3" 2009 | 2010 | mime-db@1.52.0: 2011 | version "1.52.0" 2012 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 2013 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 2014 | 2015 | mime-types@^2.1.12: 2016 | version "2.1.35" 2017 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 2018 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 2019 | dependencies: 2020 | mime-db "1.52.0" 2021 | 2022 | mimic-fn@^2.1.0: 2023 | version "2.1.0" 2024 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2025 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2026 | 2027 | minimatch@^3.0.4: 2028 | version "3.1.2" 2029 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2030 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2031 | dependencies: 2032 | brace-expansion "^1.1.7" 2033 | 2034 | minimatch@^5.0.1: 2035 | version "5.0.1" 2036 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b" 2037 | integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g== 2038 | dependencies: 2039 | brace-expansion "^2.0.1" 2040 | 2041 | minimist@^1.2.5: 2042 | version "1.2.5" 2043 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2044 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2045 | 2046 | ms@2.1.2: 2047 | version "2.1.2" 2048 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2049 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2050 | 2051 | natural-compare@^1.4.0: 2052 | version "1.4.0" 2053 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2054 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2055 | 2056 | neo-async@^2.6.0: 2057 | version "2.6.2" 2058 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2059 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 2060 | 2061 | node-int64@^0.4.0: 2062 | version "0.4.0" 2063 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2064 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2065 | 2066 | node-releases@^2.0.2: 2067 | version "2.0.2" 2068 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz#7139fe71e2f4f11b47d4d2986aaf8c48699e0c01" 2069 | integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg== 2070 | 2071 | normalize-path@^3.0.0: 2072 | version "3.0.0" 2073 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2074 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2075 | 2076 | npm-run-path@^4.0.1: 2077 | version "4.0.1" 2078 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2079 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2080 | dependencies: 2081 | path-key "^3.0.0" 2082 | 2083 | nwsapi@^2.2.0: 2084 | version "2.2.0" 2085 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2086 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2087 | 2088 | once@^1.3.0: 2089 | version "1.4.0" 2090 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2091 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2092 | dependencies: 2093 | wrappy "1" 2094 | 2095 | onetime@^5.1.2: 2096 | version "5.1.2" 2097 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2098 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2099 | dependencies: 2100 | mimic-fn "^2.1.0" 2101 | 2102 | optionator@^0.8.1: 2103 | version "0.8.3" 2104 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2105 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2106 | dependencies: 2107 | deep-is "~0.1.3" 2108 | fast-levenshtein "~2.0.6" 2109 | levn "~0.3.0" 2110 | prelude-ls "~1.1.2" 2111 | type-check "~0.3.2" 2112 | word-wrap "~1.2.3" 2113 | 2114 | p-limit@^2.2.0: 2115 | version "2.3.0" 2116 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2117 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2118 | dependencies: 2119 | p-try "^2.0.0" 2120 | 2121 | p-locate@^4.1.0: 2122 | version "4.1.0" 2123 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2124 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2125 | dependencies: 2126 | p-limit "^2.2.0" 2127 | 2128 | p-try@^2.0.0: 2129 | version "2.2.0" 2130 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2131 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2132 | 2133 | parse-json@^5.2.0: 2134 | version "5.2.0" 2135 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2136 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2137 | dependencies: 2138 | "@babel/code-frame" "^7.0.0" 2139 | error-ex "^1.3.1" 2140 | json-parse-even-better-errors "^2.3.0" 2141 | lines-and-columns "^1.1.6" 2142 | 2143 | parse5@6.0.1: 2144 | version "6.0.1" 2145 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2146 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2147 | 2148 | path-exists@^4.0.0: 2149 | version "4.0.0" 2150 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2151 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2152 | 2153 | path-is-absolute@^1.0.0: 2154 | version "1.0.1" 2155 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2156 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2157 | 2158 | path-key@^3.0.0, path-key@^3.1.0: 2159 | version "3.1.1" 2160 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2161 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2162 | 2163 | path-parse@^1.0.7: 2164 | version "1.0.7" 2165 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2166 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2167 | 2168 | picocolors@^1.0.0: 2169 | version "1.0.0" 2170 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2171 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2172 | 2173 | picomatch@^2.0.4, picomatch@^2.2.3: 2174 | version "2.3.1" 2175 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 2176 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2177 | 2178 | pirates@^4.0.4: 2179 | version "4.0.5" 2180 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" 2181 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 2182 | 2183 | pkg-dir@^4.2.0: 2184 | version "4.2.0" 2185 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2186 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2187 | dependencies: 2188 | find-up "^4.0.0" 2189 | 2190 | prelude-ls@~1.1.2: 2191 | version "1.1.2" 2192 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2193 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2194 | 2195 | pretty-format@^27.0.0, pretty-format@^27.5.1: 2196 | version "27.5.1" 2197 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" 2198 | integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== 2199 | dependencies: 2200 | ansi-regex "^5.0.1" 2201 | ansi-styles "^5.0.0" 2202 | react-is "^17.0.1" 2203 | 2204 | prompts@^2.0.1: 2205 | version "2.4.2" 2206 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2207 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2208 | dependencies: 2209 | kleur "^3.0.3" 2210 | sisteransi "^1.0.5" 2211 | 2212 | psl@^1.1.33: 2213 | version "1.8.0" 2214 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2215 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2216 | 2217 | punycode@^2.1.1: 2218 | version "2.1.1" 2219 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2220 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2221 | 2222 | react-is@^17.0.1: 2223 | version "17.0.2" 2224 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2225 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2226 | 2227 | require-directory@^2.1.1: 2228 | version "2.1.1" 2229 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2230 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2231 | 2232 | resolve-cwd@^3.0.0: 2233 | version "3.0.0" 2234 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2235 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2236 | dependencies: 2237 | resolve-from "^5.0.0" 2238 | 2239 | resolve-from@^5.0.0: 2240 | version "5.0.0" 2241 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2242 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2243 | 2244 | resolve.exports@^1.1.0: 2245 | version "1.1.0" 2246 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" 2247 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== 2248 | 2249 | resolve@^1.20.0: 2250 | version "1.22.0" 2251 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 2252 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 2253 | dependencies: 2254 | is-core-module "^2.8.1" 2255 | path-parse "^1.0.7" 2256 | supports-preserve-symlinks-flag "^1.0.0" 2257 | 2258 | rimraf@^3.0.0: 2259 | version "3.0.2" 2260 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2261 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2262 | dependencies: 2263 | glob "^7.1.3" 2264 | 2265 | safe-buffer@~5.1.1: 2266 | version "5.1.2" 2267 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2268 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2269 | 2270 | "safer-buffer@>= 2.1.2 < 3": 2271 | version "2.1.2" 2272 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2273 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2274 | 2275 | saxes@^5.0.1: 2276 | version "5.0.1" 2277 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2278 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2279 | dependencies: 2280 | xmlchars "^2.2.0" 2281 | 2282 | semver@7.x, semver@^7.3.2: 2283 | version "7.3.5" 2284 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 2285 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 2286 | dependencies: 2287 | lru-cache "^6.0.0" 2288 | 2289 | semver@^6.0.0, semver@^6.3.0: 2290 | version "6.3.0" 2291 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2292 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2293 | 2294 | shebang-command@^2.0.0: 2295 | version "2.0.0" 2296 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2297 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2298 | dependencies: 2299 | shebang-regex "^3.0.0" 2300 | 2301 | shebang-regex@^3.0.0: 2302 | version "3.0.0" 2303 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2304 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2305 | 2306 | shiki@^0.10.1: 2307 | version "0.10.1" 2308 | resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.10.1.tgz#6f9a16205a823b56c072d0f1a0bcd0f2646bef14" 2309 | integrity sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng== 2310 | dependencies: 2311 | jsonc-parser "^3.0.0" 2312 | vscode-oniguruma "^1.6.1" 2313 | vscode-textmate "5.2.0" 2314 | 2315 | signal-exit@^3.0.2, signal-exit@^3.0.3: 2316 | version "3.0.7" 2317 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2318 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2319 | 2320 | sisteransi@^1.0.5: 2321 | version "1.0.5" 2322 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2323 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2324 | 2325 | slash@^3.0.0: 2326 | version "3.0.0" 2327 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2328 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2329 | 2330 | source-map-support@^0.5.6: 2331 | version "0.5.21" 2332 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 2333 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 2334 | dependencies: 2335 | buffer-from "^1.0.0" 2336 | source-map "^0.6.0" 2337 | 2338 | source-map@^0.5.0: 2339 | version "0.5.7" 2340 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2341 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2342 | 2343 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2344 | version "0.6.1" 2345 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2346 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2347 | 2348 | source-map@^0.7.3: 2349 | version "0.7.3" 2350 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2351 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2352 | 2353 | sprintf-js@~1.0.2: 2354 | version "1.0.3" 2355 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2356 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2357 | 2358 | stack-utils@^2.0.3: 2359 | version "2.0.5" 2360 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 2361 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 2362 | dependencies: 2363 | escape-string-regexp "^2.0.0" 2364 | 2365 | string-length@^4.0.1: 2366 | version "4.0.2" 2367 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2368 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2369 | dependencies: 2370 | char-regex "^1.0.2" 2371 | strip-ansi "^6.0.0" 2372 | 2373 | string-width@^4.1.0, string-width@^4.2.0: 2374 | version "4.2.3" 2375 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2376 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2377 | dependencies: 2378 | emoji-regex "^8.0.0" 2379 | is-fullwidth-code-point "^3.0.0" 2380 | strip-ansi "^6.0.1" 2381 | 2382 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2383 | version "6.0.1" 2384 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2385 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2386 | dependencies: 2387 | ansi-regex "^5.0.1" 2388 | 2389 | strip-bom@^4.0.0: 2390 | version "4.0.0" 2391 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2392 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2393 | 2394 | strip-final-newline@^2.0.0: 2395 | version "2.0.0" 2396 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2397 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2398 | 2399 | strip-json-comments@^3.1.1: 2400 | version "3.1.1" 2401 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2402 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2403 | 2404 | supports-color@^5.3.0: 2405 | version "5.5.0" 2406 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2407 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2408 | dependencies: 2409 | has-flag "^3.0.0" 2410 | 2411 | supports-color@^7.0.0, supports-color@^7.1.0: 2412 | version "7.2.0" 2413 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2414 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2415 | dependencies: 2416 | has-flag "^4.0.0" 2417 | 2418 | supports-color@^8.0.0: 2419 | version "8.1.1" 2420 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2421 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2422 | dependencies: 2423 | has-flag "^4.0.0" 2424 | 2425 | supports-hyperlinks@^2.0.0: 2426 | version "2.2.0" 2427 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 2428 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 2429 | dependencies: 2430 | has-flag "^4.0.0" 2431 | supports-color "^7.0.0" 2432 | 2433 | supports-preserve-symlinks-flag@^1.0.0: 2434 | version "1.0.0" 2435 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2436 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2437 | 2438 | symbol-tree@^3.2.4: 2439 | version "3.2.4" 2440 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 2441 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 2442 | 2443 | terminal-link@^2.0.0: 2444 | version "2.1.1" 2445 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 2446 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 2447 | dependencies: 2448 | ansi-escapes "^4.2.1" 2449 | supports-hyperlinks "^2.0.0" 2450 | 2451 | test-exclude@^6.0.0: 2452 | version "6.0.0" 2453 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2454 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2455 | dependencies: 2456 | "@istanbuljs/schema" "^0.1.2" 2457 | glob "^7.1.4" 2458 | minimatch "^3.0.4" 2459 | 2460 | throat@^6.0.1: 2461 | version "6.0.1" 2462 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 2463 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 2464 | 2465 | tmpl@1.0.5: 2466 | version "1.0.5" 2467 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2468 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2469 | 2470 | to-fast-properties@^2.0.0: 2471 | version "2.0.0" 2472 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2473 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2474 | 2475 | to-regex-range@^5.0.1: 2476 | version "5.0.1" 2477 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2478 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2479 | dependencies: 2480 | is-number "^7.0.0" 2481 | 2482 | tough-cookie@^4.0.0: 2483 | version "4.0.0" 2484 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 2485 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 2486 | dependencies: 2487 | psl "^1.1.33" 2488 | punycode "^2.1.1" 2489 | universalify "^0.1.2" 2490 | 2491 | tr46@^2.1.0: 2492 | version "2.1.0" 2493 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 2494 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 2495 | dependencies: 2496 | punycode "^2.1.1" 2497 | 2498 | ts-jest@^27.1.3: 2499 | version "27.1.3" 2500 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.1.3.tgz#1f723e7e74027c4da92c0ffbd73287e8af2b2957" 2501 | integrity sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA== 2502 | dependencies: 2503 | bs-logger "0.x" 2504 | fast-json-stable-stringify "2.x" 2505 | jest-util "^27.0.0" 2506 | json5 "2.x" 2507 | lodash.memoize "4.x" 2508 | make-error "1.x" 2509 | semver "7.x" 2510 | yargs-parser "20.x" 2511 | 2512 | ts-node@^10.7.0: 2513 | version "10.7.0" 2514 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" 2515 | integrity sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A== 2516 | dependencies: 2517 | "@cspotcode/source-map-support" "0.7.0" 2518 | "@tsconfig/node10" "^1.0.7" 2519 | "@tsconfig/node12" "^1.0.7" 2520 | "@tsconfig/node14" "^1.0.0" 2521 | "@tsconfig/node16" "^1.0.2" 2522 | acorn "^8.4.1" 2523 | acorn-walk "^8.1.1" 2524 | arg "^4.1.0" 2525 | create-require "^1.1.0" 2526 | diff "^4.0.1" 2527 | make-error "^1.1.1" 2528 | v8-compile-cache-lib "^3.0.0" 2529 | yn "3.1.1" 2530 | 2531 | type-check@~0.3.2: 2532 | version "0.3.2" 2533 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2534 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 2535 | dependencies: 2536 | prelude-ls "~1.1.2" 2537 | 2538 | type-detect@4.0.8: 2539 | version "4.0.8" 2540 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2541 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2542 | 2543 | type-fest@^0.21.3: 2544 | version "0.21.3" 2545 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2546 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2547 | 2548 | typedarray-to-buffer@^3.1.5: 2549 | version "3.1.5" 2550 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2551 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2552 | dependencies: 2553 | is-typedarray "^1.0.0" 2554 | 2555 | typedoc-plugin-markdown@^3.11.14: 2556 | version "3.11.14" 2557 | resolved "https://registry.yarnpkg.com/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.14.tgz#2a7a04abd50b8f1e5d46793061d70229d504d2cd" 2558 | integrity sha512-lh47OQvl0079nB18YL9wuTRRhMpjo300SZKfx/xpQY8qG+GINeSxTod95QBELeI0NP81sNtUbemRDrn5nyef4Q== 2559 | dependencies: 2560 | handlebars "^4.7.7" 2561 | 2562 | typedoc@^0.22.13: 2563 | version "0.22.13" 2564 | resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.22.13.tgz#d061f8f0fb7c9d686e48814f245bddeea4564e66" 2565 | integrity sha512-NHNI7Dr6JHa/I3+c62gdRNXBIyX7P33O9TafGLd07ur3MqzcKgwTvpg18EtvCLHJyfeSthAtCLpM7WkStUmDuQ== 2566 | dependencies: 2567 | glob "^7.2.0" 2568 | lunr "^2.3.9" 2569 | marked "^4.0.12" 2570 | minimatch "^5.0.1" 2571 | shiki "^0.10.1" 2572 | 2573 | typescript@^4.6.2: 2574 | version "4.6.2" 2575 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4" 2576 | integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg== 2577 | 2578 | uglify-js@^3.1.4: 2579 | version "3.15.3" 2580 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.15.3.tgz#9aa82ca22419ba4c0137642ba0df800cb06e0471" 2581 | integrity sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg== 2582 | 2583 | universalify@^0.1.2: 2584 | version "0.1.2" 2585 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2586 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 2587 | 2588 | v8-compile-cache-lib@^3.0.0: 2589 | version "3.0.0" 2590 | resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz#0582bcb1c74f3a2ee46487ceecf372e46bce53e8" 2591 | integrity sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA== 2592 | 2593 | v8-to-istanbul@^8.1.0: 2594 | version "8.1.1" 2595 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz#77b752fd3975e31bbcef938f85e9bd1c7a8d60ed" 2596 | integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== 2597 | dependencies: 2598 | "@types/istanbul-lib-coverage" "^2.0.1" 2599 | convert-source-map "^1.6.0" 2600 | source-map "^0.7.3" 2601 | 2602 | vscode-oniguruma@^1.6.1: 2603 | version "1.6.2" 2604 | resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz#aeb9771a2f1dbfc9083c8a7fdd9cccaa3f386607" 2605 | integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== 2606 | 2607 | vscode-textmate@5.2.0: 2608 | version "5.2.0" 2609 | resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" 2610 | integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== 2611 | 2612 | w3c-hr-time@^1.0.2: 2613 | version "1.0.2" 2614 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 2615 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 2616 | dependencies: 2617 | browser-process-hrtime "^1.0.0" 2618 | 2619 | w3c-xmlserializer@^2.0.0: 2620 | version "2.0.0" 2621 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 2622 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 2623 | dependencies: 2624 | xml-name-validator "^3.0.0" 2625 | 2626 | walker@^1.0.7: 2627 | version "1.0.8" 2628 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 2629 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 2630 | dependencies: 2631 | makeerror "1.0.12" 2632 | 2633 | webidl-conversions@^5.0.0: 2634 | version "5.0.0" 2635 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 2636 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 2637 | 2638 | webidl-conversions@^6.1.0: 2639 | version "6.1.0" 2640 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 2641 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 2642 | 2643 | whatwg-encoding@^1.0.5: 2644 | version "1.0.5" 2645 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 2646 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 2647 | dependencies: 2648 | iconv-lite "0.4.24" 2649 | 2650 | whatwg-mimetype@^2.3.0: 2651 | version "2.3.0" 2652 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 2653 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 2654 | 2655 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 2656 | version "8.7.0" 2657 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 2658 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 2659 | dependencies: 2660 | lodash "^4.7.0" 2661 | tr46 "^2.1.0" 2662 | webidl-conversions "^6.1.0" 2663 | 2664 | which@^2.0.1: 2665 | version "2.0.2" 2666 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2667 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2668 | dependencies: 2669 | isexe "^2.0.0" 2670 | 2671 | word-wrap@~1.2.3: 2672 | version "1.2.3" 2673 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2674 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2675 | 2676 | wordwrap@^1.0.0: 2677 | version "1.0.0" 2678 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2679 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2680 | 2681 | wrap-ansi@^7.0.0: 2682 | version "7.0.0" 2683 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2684 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2685 | dependencies: 2686 | ansi-styles "^4.0.0" 2687 | string-width "^4.1.0" 2688 | strip-ansi "^6.0.0" 2689 | 2690 | wrappy@1: 2691 | version "1.0.2" 2692 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2693 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2694 | 2695 | write-file-atomic@^3.0.0: 2696 | version "3.0.3" 2697 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2698 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2699 | dependencies: 2700 | imurmurhash "^0.1.4" 2701 | is-typedarray "^1.0.0" 2702 | signal-exit "^3.0.2" 2703 | typedarray-to-buffer "^3.1.5" 2704 | 2705 | ws@^7.4.6: 2706 | version "7.5.7" 2707 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67" 2708 | integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== 2709 | 2710 | xml-name-validator@^3.0.0: 2711 | version "3.0.0" 2712 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 2713 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 2714 | 2715 | xmlchars@^2.2.0: 2716 | version "2.2.0" 2717 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 2718 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 2719 | 2720 | y18n@^5.0.5: 2721 | version "5.0.8" 2722 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2723 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2724 | 2725 | yallist@^4.0.0: 2726 | version "4.0.0" 2727 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2728 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2729 | 2730 | yargs-parser@20.x, yargs-parser@^20.2.2: 2731 | version "20.2.9" 2732 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2733 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2734 | 2735 | yargs@^16.2.0: 2736 | version "16.2.0" 2737 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2738 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2739 | dependencies: 2740 | cliui "^7.0.2" 2741 | escalade "^3.1.1" 2742 | get-caller-file "^2.0.5" 2743 | require-directory "^2.1.1" 2744 | string-width "^4.2.0" 2745 | y18n "^5.0.5" 2746 | yargs-parser "^20.2.2" 2747 | 2748 | yn@3.1.1: 2749 | version "3.1.1" 2750 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 2751 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 2752 | --------------------------------------------------------------------------------