├── .gitignore ├── README.MD ├── package-lock.json ├── package.json ├── packages ├── README.MD ├── reactivity │ ├── babel.config.js │ ├── dist │ │ ├── reactivity.cjs-bundler.js │ │ ├── reactivity.cjs-bundler.js.map │ │ ├── reactivity.esm-bundler.js │ │ ├── reactivity.esm-bundler.js.map │ │ ├── reactivity.global-bundler.js │ │ └── reactivity.global-bundler.js.map │ ├── package.json │ ├── src │ │ ├── baseHandlers.ts │ │ ├── effect.ts │ │ ├── index.ts │ │ └── reactive.ts │ └── tests │ │ ├── effect.spec.ts │ │ ├── index.spec.ts │ │ ├── reactive.spec.ts │ │ └── readonly.spec.ts └── shared │ ├── dist │ ├── shared.cjs-bundler.js │ ├── shared.cjs-bundler.js.map │ ├── shared.esm-bundler.js │ └── shared.esm-bundler.js.map │ ├── package.json │ └── src │ └── index.ts ├── rollup.config.js ├── scripts ├── build.js └── dev.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # Implement mini-vue3 2 | 3 | ## tasking 4 | 5 | - [ ] reactivity 6 | 7 | - [ ] reactive 8 | 9 | - [ ] reactive support dep collect 10 | - [ ] proxy object 11 | - [ ] proxy array 12 | 13 | - [ ] readonly 14 | 15 | - [ ] ref 16 | 17 | - [ ] effect 18 | 19 | - [ ] computed 20 | 21 | - [ ] watch 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "workspaces": [ 4 | "packages/*" 5 | ], 6 | "name": "sun-vue3", 7 | "version": "1.0.0", 8 | "main": "index.js", 9 | "scripts": { 10 | "dev": "node scripts/dev.js", 11 | "build": "node scripts/build.js" 12 | }, 13 | "license": "MIT", 14 | "devDependencies": { 15 | "@babel/core": "^7.17.5", 16 | "@babel/preset-env": "^7.16.11", 17 | "@babel/preset-typescript": "^7.16.7", 18 | "@rollup/plugin-json": "^4.1.0", 19 | "@rollup/plugin-node-resolve": "^13.1.3", 20 | "@rollup/plugin-replace": "^4.0.0", 21 | "@types/jest": "^27.4.1", 22 | "babel-jest": "^27.5.1", 23 | "execa": "^4.0.2", 24 | "jest": "^27.5.1", 25 | "rollup": "^2.69.2", 26 | "rollup-plugin-serve": "^1.1.0", 27 | "rollup-plugin-typescript2": "^0.31.2", 28 | "typescript": "^4.6.2" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /packages/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundada88/sun-vue3/5f8d5a06f2cf127a7b3aaab5bc273e8994a7bd3f/packages/README.MD -------------------------------------------------------------------------------- /packages/reactivity/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | ['@babel/preset-env', { targets: { node: 'current' } }], 4 | '@babel/preset-typescript' 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.cjs-bundler.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | const Reactivity = {}; 6 | 7 | exports.Reactivity = Reactivity; 8 | //# sourceMappingURL=reactivity.cjs-bundler.js.map 9 | -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.cjs-bundler.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"reactivity.cjs-bundler.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"} -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.esm-bundler.js: -------------------------------------------------------------------------------- 1 | const Reactivity = {}; 2 | 3 | export { Reactivity }; 4 | //# sourceMappingURL=reactivity.esm-bundler.js.map 5 | -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.esm-bundler.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"reactivity.esm-bundler.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"} -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.global-bundler.js: -------------------------------------------------------------------------------- 1 | (function (exports) { 2 | 'use strict'; 3 | 4 | const Reactivity = {}; 5 | 6 | exports.Reactivity = Reactivity; 7 | 8 | Object.defineProperty(exports, '__esModule', { value: true }); 9 | 10 | return exports; 11 | 12 | })({}); 13 | //# sourceMappingURL=reactivity.global-bundler.js.map 14 | -------------------------------------------------------------------------------- /packages/reactivity/dist/reactivity.global-bundler.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"reactivity.global-bundler.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"} -------------------------------------------------------------------------------- /packages/reactivity/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vue/reactivity", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "module": "dist/reactivity.esm-bundler.js", 6 | "license": "MIT", 7 | "scripts": { 8 | "test": "jest" 9 | }, 10 | "buildOptions": { 11 | "name": "VueReactivity", 12 | "formats": [ 13 | "esm-bundler", 14 | "cjs", 15 | "global" 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /packages/reactivity/src/baseHandlers.ts: -------------------------------------------------------------------------------- 1 | import { isObject } from "../../shared/src/index" 2 | import { track, trigger } from "./effect" 3 | import { reactive, ReactiveFlags, readonly } from "./reactive" 4 | 5 | function createGetter(isReadonly, shallow) { 6 | return function get(target, key, receiver) { 7 | if (key === ReactiveFlags.IS_REACTIVE) { 8 | return !isReadonly 9 | } else if (key === ReactiveFlags.IS_READONLY) { 10 | return isReadonly 11 | } 12 | const res = Reflect.get(target, key, receiver) 13 | // TODO: track 14 | if (!isReadonly) { 15 | track(target, key) 16 | } 17 | if (shallow) return res 18 | if (isObject(res)) return isReadonly ? readonly(res) : reactive(res) 19 | return res 20 | } 21 | } 22 | 23 | function createSetter() { 24 | return function set(target, key, value, receiver) { 25 | const res = Reflect.set(target, key, value, receiver) 26 | // TODO: trigger 27 | trigger(target, key) 28 | return res 29 | } 30 | } 31 | 32 | const get = createGetter(false, false) 33 | const readonlyGet = createGetter(true, false) 34 | const shallowReactiveGet = createGetter(false, true) 35 | const shallowReadonlyGet = createGetter(true, true) 36 | const set = createSetter() 37 | // reactive 需要的代理参数 38 | export const mutableHandlers = { 39 | get, 40 | set 41 | } 42 | 43 | export const shallowReactiveHandlers = { 44 | get: shallowReactiveGet, 45 | set 46 | } 47 | 48 | // readonly 需要的代理参数 49 | export const readonlyHandlers = { 50 | get: readonlyGet, 51 | set(target, key) { 52 | console.warn(`because this is a readonly object, so ${key} can't be set`) 53 | return true 54 | } 55 | } 56 | 57 | export const shallowReadonlyHandlers = { 58 | get: shallowReadonlyGet, 59 | set(target, key) { 60 | console.warn(`because this is a readonly object, so ${key} can't be set`) 61 | return true 62 | } 63 | } -------------------------------------------------------------------------------- /packages/reactivity/src/effect.ts: -------------------------------------------------------------------------------- 1 | const targetMap = new WeakMap() 2 | let activeEffect 3 | 4 | // 收集依赖 5 | export function track(target, key) { 6 | let depsMap = targetMap.get(target) 7 | if (!depsMap) { 8 | targetMap.set(target, (depsMap = new Map())) 9 | } 10 | let deps = depsMap.get(key) 11 | if (!deps) { 12 | depsMap.set(key, (deps = new Set())) 13 | } 14 | deps.add(activeEffect) 15 | } 16 | 17 | // 触发依赖 18 | export function trigger(target, key) { 19 | let depsMap = targetMap.get(target) 20 | if (!depsMap) return 21 | let deps = depsMap.get(key) 22 | if (!deps) return 23 | deps.forEach(fn => { 24 | fn() 25 | }) 26 | } 27 | 28 | export function effect(fn) { 29 | activeEffect = fn 30 | fn() 31 | } 32 | -------------------------------------------------------------------------------- /packages/reactivity/src/index.ts: -------------------------------------------------------------------------------- 1 | 2 | const Reactivity = {} 3 | 4 | 5 | export { 6 | Reactivity 7 | } -------------------------------------------------------------------------------- /packages/reactivity/src/reactive.ts: -------------------------------------------------------------------------------- 1 | import { mutableHandlers, readonlyHandlers, shallowReactiveHandlers, shallowReadonlyHandlers } from './baseHandlers' 2 | 3 | export const enum ReactiveFlags { 4 | SKIP = '__v_skip', 5 | IS_REACTIVE = '__v_isReactive', 6 | IS_READONLY = '__v_isReadonly', 7 | IS_SHALLOW = '__v_isShallow', 8 | RAW = '__v_raw' 9 | } 10 | 11 | function createReactiveObject(target, isReactive, baseHandlers) { 12 | const proxy = new Proxy(target, baseHandlers) 13 | return proxy 14 | } 15 | 16 | export function reactive(target) { 17 | return createReactiveObject(target, false, mutableHandlers) 18 | } 19 | 20 | export function shallowReactive(target) { 21 | return createReactiveObject(target, false, shallowReactiveHandlers) 22 | } 23 | 24 | export function readonly(target) { 25 | return createReactiveObject(target, true, readonlyHandlers) 26 | } 27 | 28 | 29 | export function shallowReadonly(target) { 30 | return createReactiveObject(target, true, shallowReadonlyHandlers) 31 | } 32 | 33 | export function isReactive(value) { 34 | return !!value[ReactiveFlags.IS_REACTIVE] 35 | } 36 | 37 | export function isReadonly(value) { 38 | return !!value[ReactiveFlags.IS_READONLY] 39 | } 40 | 41 | export function isProxy(value) { 42 | return isReactive(value) || isReadonly(value) 43 | } -------------------------------------------------------------------------------- /packages/reactivity/tests/effect.spec.ts: -------------------------------------------------------------------------------- 1 | import { effect } from '../src/effect' 2 | import { reactive } from '../src/reactive' 3 | 4 | describe('effect', () => { 5 | it('happy path', () => { 6 | const obj = reactive({ foo: 1 }) 7 | const fn = jest.fn(() => obj.foo) 8 | effect(fn) 9 | expect(fn).toHaveBeenCalledTimes(1) 10 | obj.foo = 2 11 | expect(fn).toHaveBeenCalledTimes(2) 12 | }) 13 | }) 14 | -------------------------------------------------------------------------------- /packages/reactivity/tests/index.spec.ts: -------------------------------------------------------------------------------- 1 | describe('init', () => { 2 | it('happy path', () => { 3 | expect(1).toBe(1) 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /packages/reactivity/tests/reactive.spec.ts: -------------------------------------------------------------------------------- 1 | import { isProxy, isReactive, reactive, shallowReactive } from '../src/reactive' 2 | 3 | describe('reactive', () => { 4 | it('happy path', () => { 5 | const origin = { foo: 'bar' } 6 | const obj = reactive(origin) 7 | expect(origin).not.toBe(obj) 8 | expect(obj.foo).toBe('bar') 9 | expect(isProxy(obj)).toBe(true) 10 | }) 11 | test('Object', () => { 12 | const original = { 13 | foo: 1, bar: { 14 | foo: 123 15 | } 16 | } 17 | const observed = reactive(original) 18 | expect(observed).not.toBe(original) 19 | expect(isReactive(observed)).toBe(true) 20 | expect(isReactive(observed.bar)).toBe(true) 21 | expect(isReactive(original)).toBe(false) 22 | const shallowObj = shallowReactive(original) 23 | expect(isReactive(shallowObj)).toBe(true) 24 | expect(isReactive(shallowObj.bar)).toBe(false) 25 | // // get 26 | // expect(observed.foo).toBe(1) 27 | // // has 28 | // expect('foo' in observed).toBe(true) 29 | // // ownKeys 30 | // expect(Object.keys(observed)).toEqual(['foo']) 31 | }) 32 | }) 33 | -------------------------------------------------------------------------------- /packages/reactivity/tests/readonly.spec.ts: -------------------------------------------------------------------------------- 1 | import { effect } from "../src/effect" 2 | import { isProxy, isReadonly, readonly, shallowReadonly } from "../src/reactive" 3 | 4 | describe('readonly', () => { 5 | it('happy path', () => { 6 | const obj = readonly({ foo: 1 }) 7 | console.warn = jest.fn() 8 | expect(obj.foo).toBe(1) 9 | obj.foo = 2 10 | expect(console.warn).toBeCalledTimes(1) 11 | expect(isReadonly(obj)).toBe(true) 12 | expect(isProxy(obj)).toBe(true) 13 | }) 14 | it('test shallowReadonly', () => { 15 | const obj = readonly({ 16 | foo: 1, bar: { 17 | foo: 1 18 | } 19 | }) 20 | expect(isReadonly(obj)).toBe(true) 21 | expect(isReadonly(obj.bar)).toBe(true) 22 | 23 | 24 | const shallowObj = shallowReadonly({ 25 | foo: 1, bar: { 26 | foo: 1 27 | } 28 | }) 29 | 30 | expect(isReadonly(shallowObj)).toBe(true) 31 | expect(isReadonly(shallowObj.bar)).toBe(false) 32 | 33 | }) 34 | }) -------------------------------------------------------------------------------- /packages/shared/dist/shared.cjs-bundler.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | const isObject = (val) => val !== null && typeof val === 'object'; 6 | 7 | exports.isObject = isObject; 8 | //# sourceMappingURL=shared.cjs-bundler.js.map 9 | -------------------------------------------------------------------------------- /packages/shared/dist/shared.cjs-bundler.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"shared.cjs-bundler.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"} -------------------------------------------------------------------------------- /packages/shared/dist/shared.esm-bundler.js: -------------------------------------------------------------------------------- 1 | const isObject = (val) => val !== null && typeof val === 'object'; 2 | 3 | export { isObject }; 4 | //# sourceMappingURL=shared.esm-bundler.js.map 5 | -------------------------------------------------------------------------------- /packages/shared/dist/shared.esm-bundler.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"shared.esm-bundler.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"} -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vue/shared", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "module": "dist/shared.esm-bundler.js", 6 | "license": "MIT", 7 | "buildOptions": { 8 | "name": "VueReactivity", 9 | "formats": [ 10 | "esm-bundler", 11 | "cjs" 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /packages/shared/src/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export const isObject = (val: unknown): val is Record => 3 | val !== null && typeof val === 'object' -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | // console.log("process.env.TARGET", process.env.TARGET); 2 | 3 | import path, { dirname } from "path"; 4 | import json from "@rollup/plugin-json"; 5 | import resolvePlugin from "@rollup/plugin-node-resolve"; 6 | import ts from "rollup-plugin-typescript2"; 7 | 8 | // 根据环境变量中的target属性,获取对应模块中的 package.json 9 | const packagesDir = path.resolve(__dirname, "packages"); 10 | 11 | const packageDir = path.resolve(packagesDir, process.env.TARGET); 12 | 13 | console.log("packageDir", packageDir); 14 | 15 | const resolve = (p) => path.resolve(packageDir, p); 16 | 17 | const pkg = require(resolve("package.json")); 18 | const name = path.basename(packageDir); 19 | 20 | // console.log("pkg ===> ", pkg); 21 | 22 | // 对打包类型,先做一个映射表,根据你提供的 formats 来格式化需要打包的内容 23 | 24 | const outputConfig = { 25 | "esm-bundler": { 26 | file: resolve(`dist/${name}.esm-bundler.js`), 27 | format: "es", 28 | }, 29 | cjs: { 30 | file: resolve(`dist/${name}.cjs-bundler.js`), 31 | format: "cjs", 32 | }, 33 | global: { 34 | file: resolve(`dist/${name}.global-bundler.js`), 35 | format: "iife", 36 | }, 37 | }; 38 | 39 | const options = pkg.buildOptions; // 自己在 package.json 中定义的 40 | 41 | function createConfig(options, output) { 42 | output.name = options.name; 43 | output.sourcemap = true; 44 | 45 | // 生成 rollup 配置 46 | 47 | return { 48 | input: resolve(`src/index.ts`), 49 | output, 50 | plugins: [ 51 | json(), 52 | ts({ 53 | // ts 插件 54 | tsconfig: path.resolve(__dirname, "tsconfig.json"), 55 | }), 56 | resolvePlugin(), // 解析第三方插件 57 | ], 58 | }; 59 | } 60 | 61 | export default options.formats.map((format) => 62 | createConfig(format, outputConfig[format]) 63 | ); 64 | -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- 1 | // 吧 package 下的所有包都打包 2 | const fs = require("fs"); 3 | const execa = require("execa"); 4 | // const execa = require("execa"); // 开启子进程进行打包,还是调用rollup 5 | 6 | const targets = fs 7 | .readdirSync("packages") 8 | .filter((f) => fs.statSync(`packages/${f}`).isDirectory()); 9 | console.log(targets); 10 | 11 | // 对目标进行并行打包,并行打包 12 | async function build(source) { 13 | // console.log(source); 14 | // rollup -c --environment TARGET:shared 15 | await execa("rollup", ["-c", "--environment", `TARGET:${source}`], { 16 | stdio: "inherit", // 将子进程打包信息共享给父进程 17 | }); 18 | } 19 | 20 | function runParallel(targets, iteratorFn) { 21 | const res = []; 22 | for (const item of targets) { 23 | const p = iteratorFn(item); 24 | res.push(p); 25 | } 26 | return Promise.all(res); 27 | } 28 | 29 | runParallel(targets, build); 30 | -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- 1 | // 只针对具体的某个包打包 2 | 3 | // 吧 package 下的所有包都打包 4 | const fs = require("fs"); 5 | const execa = require("execa"); 6 | // const execa = require("execa"); // 开启子进程进行打包,还是调用rollup 7 | 8 | const targets = fs 9 | .readdirSync("packages") 10 | .filter((f) => fs.statSync(`packages/${f}`).isDirectory()); 11 | console.log(targets); 12 | 13 | // 对目标进行并行打包,并行打包 14 | async function build(source) { 15 | // console.log(source); 16 | // rollup -c --environment TARGET:shared 17 | await execa("rollup", ["-c", "--environment", `TARGET:${source}`], { 18 | stdio: "inherit", // 将子进程打包信息共享给父进程 19 | }); 20 | } 21 | 22 | build("reactivity"); 23 | -------------------------------------------------------------------------------- /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": "ESNEXT" /* 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": "ESNEXT" /* 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": ["jest"], /* 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": "./", /* 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": false /* Enable all strict type-checking options. */, 78 | "noImplicitAny": false, /* 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 | "moduleResolution": "node", 101 | "baseUrl": ".", 102 | "paths": { 103 | "@vue/*": ["packages/*/src"] 104 | } 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /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.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz" 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.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz" 15 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 16 | dependencies: 17 | "@babel/highlight" "^7.16.7" 18 | 19 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0": 20 | version "7.17.0" 21 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz" 22 | integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng== 23 | 24 | "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.17.5", "@babel/core@^7.7.2", "@babel/core@^7.8.0": 25 | version "7.17.5" 26 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.17.5.tgz" 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.npmjs.org/@babel/generator/-/generator-7.17.3.tgz" 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-annotate-as-pure@^7.16.7": 55 | version "7.16.7" 56 | resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz" 57 | integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== 58 | dependencies: 59 | "@babel/types" "^7.16.7" 60 | 61 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": 62 | version "7.16.7" 63 | resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz" 64 | integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA== 65 | dependencies: 66 | "@babel/helper-explode-assignable-expression" "^7.16.7" 67 | "@babel/types" "^7.16.7" 68 | 69 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7": 70 | version "7.16.7" 71 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz" 72 | integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== 73 | dependencies: 74 | "@babel/compat-data" "^7.16.4" 75 | "@babel/helper-validator-option" "^7.16.7" 76 | browserslist "^4.17.5" 77 | semver "^6.3.0" 78 | 79 | "@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7", "@babel/helper-create-class-features-plugin@^7.17.6": 80 | version "7.17.6" 81 | resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz" 82 | integrity sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg== 83 | dependencies: 84 | "@babel/helper-annotate-as-pure" "^7.16.7" 85 | "@babel/helper-environment-visitor" "^7.16.7" 86 | "@babel/helper-function-name" "^7.16.7" 87 | "@babel/helper-member-expression-to-functions" "^7.16.7" 88 | "@babel/helper-optimise-call-expression" "^7.16.7" 89 | "@babel/helper-replace-supers" "^7.16.7" 90 | "@babel/helper-split-export-declaration" "^7.16.7" 91 | 92 | "@babel/helper-create-regexp-features-plugin@^7.16.7": 93 | version "7.17.0" 94 | resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz" 95 | integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA== 96 | dependencies: 97 | "@babel/helper-annotate-as-pure" "^7.16.7" 98 | regexpu-core "^5.0.1" 99 | 100 | "@babel/helper-define-polyfill-provider@^0.3.1": 101 | version "0.3.1" 102 | resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz" 103 | integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA== 104 | dependencies: 105 | "@babel/helper-compilation-targets" "^7.13.0" 106 | "@babel/helper-module-imports" "^7.12.13" 107 | "@babel/helper-plugin-utils" "^7.13.0" 108 | "@babel/traverse" "^7.13.0" 109 | debug "^4.1.1" 110 | lodash.debounce "^4.0.8" 111 | resolve "^1.14.2" 112 | semver "^6.1.2" 113 | 114 | "@babel/helper-environment-visitor@^7.16.7": 115 | version "7.16.7" 116 | resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz" 117 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== 118 | dependencies: 119 | "@babel/types" "^7.16.7" 120 | 121 | "@babel/helper-explode-assignable-expression@^7.16.7": 122 | version "7.16.7" 123 | resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz" 124 | integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ== 125 | dependencies: 126 | "@babel/types" "^7.16.7" 127 | 128 | "@babel/helper-function-name@^7.16.7": 129 | version "7.16.7" 130 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz" 131 | integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== 132 | dependencies: 133 | "@babel/helper-get-function-arity" "^7.16.7" 134 | "@babel/template" "^7.16.7" 135 | "@babel/types" "^7.16.7" 136 | 137 | "@babel/helper-get-function-arity@^7.16.7": 138 | version "7.16.7" 139 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz" 140 | integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== 141 | dependencies: 142 | "@babel/types" "^7.16.7" 143 | 144 | "@babel/helper-hoist-variables@^7.16.7": 145 | version "7.16.7" 146 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz" 147 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 148 | dependencies: 149 | "@babel/types" "^7.16.7" 150 | 151 | "@babel/helper-member-expression-to-functions@^7.16.7": 152 | version "7.16.7" 153 | resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz" 154 | integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q== 155 | dependencies: 156 | "@babel/types" "^7.16.7" 157 | 158 | "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7": 159 | version "7.16.7" 160 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz" 161 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 162 | dependencies: 163 | "@babel/types" "^7.16.7" 164 | 165 | "@babel/helper-module-transforms@^7.16.7": 166 | version "7.17.6" 167 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz" 168 | integrity sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA== 169 | dependencies: 170 | "@babel/helper-environment-visitor" "^7.16.7" 171 | "@babel/helper-module-imports" "^7.16.7" 172 | "@babel/helper-simple-access" "^7.16.7" 173 | "@babel/helper-split-export-declaration" "^7.16.7" 174 | "@babel/helper-validator-identifier" "^7.16.7" 175 | "@babel/template" "^7.16.7" 176 | "@babel/traverse" "^7.17.3" 177 | "@babel/types" "^7.17.0" 178 | 179 | "@babel/helper-optimise-call-expression@^7.16.7": 180 | version "7.16.7" 181 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz" 182 | integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== 183 | dependencies: 184 | "@babel/types" "^7.16.7" 185 | 186 | "@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.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 187 | version "7.16.7" 188 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz" 189 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== 190 | 191 | "@babel/helper-remap-async-to-generator@^7.16.8": 192 | version "7.16.8" 193 | resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz" 194 | integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw== 195 | dependencies: 196 | "@babel/helper-annotate-as-pure" "^7.16.7" 197 | "@babel/helper-wrap-function" "^7.16.8" 198 | "@babel/types" "^7.16.8" 199 | 200 | "@babel/helper-replace-supers@^7.16.7": 201 | version "7.16.7" 202 | resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz" 203 | integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw== 204 | dependencies: 205 | "@babel/helper-environment-visitor" "^7.16.7" 206 | "@babel/helper-member-expression-to-functions" "^7.16.7" 207 | "@babel/helper-optimise-call-expression" "^7.16.7" 208 | "@babel/traverse" "^7.16.7" 209 | "@babel/types" "^7.16.7" 210 | 211 | "@babel/helper-simple-access@^7.16.7": 212 | version "7.16.7" 213 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz" 214 | integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== 215 | dependencies: 216 | "@babel/types" "^7.16.7" 217 | 218 | "@babel/helper-skip-transparent-expression-wrappers@^7.16.0": 219 | version "7.16.0" 220 | resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz" 221 | integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== 222 | dependencies: 223 | "@babel/types" "^7.16.0" 224 | 225 | "@babel/helper-split-export-declaration@^7.16.7": 226 | version "7.16.7" 227 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz" 228 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 229 | dependencies: 230 | "@babel/types" "^7.16.7" 231 | 232 | "@babel/helper-validator-identifier@^7.16.7": 233 | version "7.16.7" 234 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz" 235 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 236 | 237 | "@babel/helper-validator-option@^7.16.7": 238 | version "7.16.7" 239 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz" 240 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 241 | 242 | "@babel/helper-wrap-function@^7.16.8": 243 | version "7.16.8" 244 | resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz" 245 | integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw== 246 | dependencies: 247 | "@babel/helper-function-name" "^7.16.7" 248 | "@babel/template" "^7.16.7" 249 | "@babel/traverse" "^7.16.8" 250 | "@babel/types" "^7.16.8" 251 | 252 | "@babel/helpers@^7.17.2": 253 | version "7.17.2" 254 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz" 255 | integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ== 256 | dependencies: 257 | "@babel/template" "^7.16.7" 258 | "@babel/traverse" "^7.17.0" 259 | "@babel/types" "^7.17.0" 260 | 261 | "@babel/highlight@^7.16.7": 262 | version "7.16.10" 263 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz" 264 | integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw== 265 | dependencies: 266 | "@babel/helper-validator-identifier" "^7.16.7" 267 | chalk "^2.0.0" 268 | js-tokens "^4.0.0" 269 | 270 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3": 271 | version "7.17.3" 272 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.17.3.tgz" 273 | integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA== 274 | 275 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7": 276 | version "7.16.7" 277 | resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz" 278 | integrity sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg== 279 | dependencies: 280 | "@babel/helper-plugin-utils" "^7.16.7" 281 | 282 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7": 283 | version "7.16.7" 284 | resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz" 285 | integrity sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw== 286 | dependencies: 287 | "@babel/helper-plugin-utils" "^7.16.7" 288 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 289 | "@babel/plugin-proposal-optional-chaining" "^7.16.7" 290 | 291 | "@babel/plugin-proposal-async-generator-functions@^7.16.8": 292 | version "7.16.8" 293 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz" 294 | integrity sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ== 295 | dependencies: 296 | "@babel/helper-plugin-utils" "^7.16.7" 297 | "@babel/helper-remap-async-to-generator" "^7.16.8" 298 | "@babel/plugin-syntax-async-generators" "^7.8.4" 299 | 300 | "@babel/plugin-proposal-class-properties@^7.16.7": 301 | version "7.16.7" 302 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz" 303 | integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww== 304 | dependencies: 305 | "@babel/helper-create-class-features-plugin" "^7.16.7" 306 | "@babel/helper-plugin-utils" "^7.16.7" 307 | 308 | "@babel/plugin-proposal-class-static-block@^7.16.7": 309 | version "7.17.6" 310 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz" 311 | integrity sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA== 312 | dependencies: 313 | "@babel/helper-create-class-features-plugin" "^7.17.6" 314 | "@babel/helper-plugin-utils" "^7.16.7" 315 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 316 | 317 | "@babel/plugin-proposal-dynamic-import@^7.16.7": 318 | version "7.16.7" 319 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz" 320 | integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg== 321 | dependencies: 322 | "@babel/helper-plugin-utils" "^7.16.7" 323 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 324 | 325 | "@babel/plugin-proposal-export-namespace-from@^7.16.7": 326 | version "7.16.7" 327 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz" 328 | integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA== 329 | dependencies: 330 | "@babel/helper-plugin-utils" "^7.16.7" 331 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 332 | 333 | "@babel/plugin-proposal-json-strings@^7.16.7": 334 | version "7.16.7" 335 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz" 336 | integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ== 337 | dependencies: 338 | "@babel/helper-plugin-utils" "^7.16.7" 339 | "@babel/plugin-syntax-json-strings" "^7.8.3" 340 | 341 | "@babel/plugin-proposal-logical-assignment-operators@^7.16.7": 342 | version "7.16.7" 343 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz" 344 | integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg== 345 | dependencies: 346 | "@babel/helper-plugin-utils" "^7.16.7" 347 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 348 | 349 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": 350 | version "7.16.7" 351 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz" 352 | integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ== 353 | dependencies: 354 | "@babel/helper-plugin-utils" "^7.16.7" 355 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 356 | 357 | "@babel/plugin-proposal-numeric-separator@^7.16.7": 358 | version "7.16.7" 359 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz" 360 | integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw== 361 | dependencies: 362 | "@babel/helper-plugin-utils" "^7.16.7" 363 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 364 | 365 | "@babel/plugin-proposal-object-rest-spread@^7.16.7": 366 | version "7.17.3" 367 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz" 368 | integrity sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw== 369 | dependencies: 370 | "@babel/compat-data" "^7.17.0" 371 | "@babel/helper-compilation-targets" "^7.16.7" 372 | "@babel/helper-plugin-utils" "^7.16.7" 373 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 374 | "@babel/plugin-transform-parameters" "^7.16.7" 375 | 376 | "@babel/plugin-proposal-optional-catch-binding@^7.16.7": 377 | version "7.16.7" 378 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz" 379 | integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA== 380 | dependencies: 381 | "@babel/helper-plugin-utils" "^7.16.7" 382 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 383 | 384 | "@babel/plugin-proposal-optional-chaining@^7.16.7": 385 | version "7.16.7" 386 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz" 387 | integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA== 388 | dependencies: 389 | "@babel/helper-plugin-utils" "^7.16.7" 390 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 391 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 392 | 393 | "@babel/plugin-proposal-private-methods@^7.16.11": 394 | version "7.16.11" 395 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz" 396 | integrity sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw== 397 | dependencies: 398 | "@babel/helper-create-class-features-plugin" "^7.16.10" 399 | "@babel/helper-plugin-utils" "^7.16.7" 400 | 401 | "@babel/plugin-proposal-private-property-in-object@^7.16.7": 402 | version "7.16.7" 403 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz" 404 | integrity sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ== 405 | dependencies: 406 | "@babel/helper-annotate-as-pure" "^7.16.7" 407 | "@babel/helper-create-class-features-plugin" "^7.16.7" 408 | "@babel/helper-plugin-utils" "^7.16.7" 409 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 410 | 411 | "@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 412 | version "7.16.7" 413 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz" 414 | integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg== 415 | dependencies: 416 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 417 | "@babel/helper-plugin-utils" "^7.16.7" 418 | 419 | "@babel/plugin-syntax-async-generators@^7.8.4": 420 | version "7.8.4" 421 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" 422 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 423 | dependencies: 424 | "@babel/helper-plugin-utils" "^7.8.0" 425 | 426 | "@babel/plugin-syntax-bigint@^7.8.3": 427 | version "7.8.3" 428 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" 429 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 430 | dependencies: 431 | "@babel/helper-plugin-utils" "^7.8.0" 432 | 433 | "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": 434 | version "7.12.13" 435 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" 436 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 437 | dependencies: 438 | "@babel/helper-plugin-utils" "^7.12.13" 439 | 440 | "@babel/plugin-syntax-class-static-block@^7.14.5": 441 | version "7.14.5" 442 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" 443 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== 444 | dependencies: 445 | "@babel/helper-plugin-utils" "^7.14.5" 446 | 447 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 448 | version "7.8.3" 449 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" 450 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 451 | dependencies: 452 | "@babel/helper-plugin-utils" "^7.8.0" 453 | 454 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 455 | version "7.8.3" 456 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" 457 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 458 | dependencies: 459 | "@babel/helper-plugin-utils" "^7.8.3" 460 | 461 | "@babel/plugin-syntax-import-meta@^7.8.3": 462 | version "7.10.4" 463 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" 464 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 465 | dependencies: 466 | "@babel/helper-plugin-utils" "^7.10.4" 467 | 468 | "@babel/plugin-syntax-json-strings@^7.8.3": 469 | version "7.8.3" 470 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" 471 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 472 | dependencies: 473 | "@babel/helper-plugin-utils" "^7.8.0" 474 | 475 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 476 | version "7.10.4" 477 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" 478 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 479 | dependencies: 480 | "@babel/helper-plugin-utils" "^7.10.4" 481 | 482 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 483 | version "7.8.3" 484 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" 485 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 486 | dependencies: 487 | "@babel/helper-plugin-utils" "^7.8.0" 488 | 489 | "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": 490 | version "7.10.4" 491 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" 492 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 493 | dependencies: 494 | "@babel/helper-plugin-utils" "^7.10.4" 495 | 496 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 497 | version "7.8.3" 498 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" 499 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 500 | dependencies: 501 | "@babel/helper-plugin-utils" "^7.8.0" 502 | 503 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 504 | version "7.8.3" 505 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" 506 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 507 | dependencies: 508 | "@babel/helper-plugin-utils" "^7.8.0" 509 | 510 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 511 | version "7.8.3" 512 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" 513 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 514 | dependencies: 515 | "@babel/helper-plugin-utils" "^7.8.0" 516 | 517 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 518 | version "7.14.5" 519 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" 520 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== 521 | dependencies: 522 | "@babel/helper-plugin-utils" "^7.14.5" 523 | 524 | "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": 525 | version "7.14.5" 526 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" 527 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 528 | dependencies: 529 | "@babel/helper-plugin-utils" "^7.14.5" 530 | 531 | "@babel/plugin-syntax-typescript@^7.16.7", "@babel/plugin-syntax-typescript@^7.7.2": 532 | version "7.16.7" 533 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz" 534 | integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A== 535 | dependencies: 536 | "@babel/helper-plugin-utils" "^7.16.7" 537 | 538 | "@babel/plugin-transform-arrow-functions@^7.16.7": 539 | version "7.16.7" 540 | resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz" 541 | integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ== 542 | dependencies: 543 | "@babel/helper-plugin-utils" "^7.16.7" 544 | 545 | "@babel/plugin-transform-async-to-generator@^7.16.8": 546 | version "7.16.8" 547 | resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz" 548 | integrity sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg== 549 | dependencies: 550 | "@babel/helper-module-imports" "^7.16.7" 551 | "@babel/helper-plugin-utils" "^7.16.7" 552 | "@babel/helper-remap-async-to-generator" "^7.16.8" 553 | 554 | "@babel/plugin-transform-block-scoped-functions@^7.16.7": 555 | version "7.16.7" 556 | resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz" 557 | integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== 558 | dependencies: 559 | "@babel/helper-plugin-utils" "^7.16.7" 560 | 561 | "@babel/plugin-transform-block-scoping@^7.16.7": 562 | version "7.16.7" 563 | resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz" 564 | integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ== 565 | dependencies: 566 | "@babel/helper-plugin-utils" "^7.16.7" 567 | 568 | "@babel/plugin-transform-classes@^7.16.7": 569 | version "7.16.7" 570 | resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz" 571 | integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ== 572 | dependencies: 573 | "@babel/helper-annotate-as-pure" "^7.16.7" 574 | "@babel/helper-environment-visitor" "^7.16.7" 575 | "@babel/helper-function-name" "^7.16.7" 576 | "@babel/helper-optimise-call-expression" "^7.16.7" 577 | "@babel/helper-plugin-utils" "^7.16.7" 578 | "@babel/helper-replace-supers" "^7.16.7" 579 | "@babel/helper-split-export-declaration" "^7.16.7" 580 | globals "^11.1.0" 581 | 582 | "@babel/plugin-transform-computed-properties@^7.16.7": 583 | version "7.16.7" 584 | resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz" 585 | integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw== 586 | dependencies: 587 | "@babel/helper-plugin-utils" "^7.16.7" 588 | 589 | "@babel/plugin-transform-destructuring@^7.16.7": 590 | version "7.17.3" 591 | resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz" 592 | integrity sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg== 593 | dependencies: 594 | "@babel/helper-plugin-utils" "^7.16.7" 595 | 596 | "@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4": 597 | version "7.16.7" 598 | resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz" 599 | integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ== 600 | dependencies: 601 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 602 | "@babel/helper-plugin-utils" "^7.16.7" 603 | 604 | "@babel/plugin-transform-duplicate-keys@^7.16.7": 605 | version "7.16.7" 606 | resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz" 607 | integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw== 608 | dependencies: 609 | "@babel/helper-plugin-utils" "^7.16.7" 610 | 611 | "@babel/plugin-transform-exponentiation-operator@^7.16.7": 612 | version "7.16.7" 613 | resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz" 614 | integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA== 615 | dependencies: 616 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" 617 | "@babel/helper-plugin-utils" "^7.16.7" 618 | 619 | "@babel/plugin-transform-for-of@^7.16.7": 620 | version "7.16.7" 621 | resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz" 622 | integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg== 623 | dependencies: 624 | "@babel/helper-plugin-utils" "^7.16.7" 625 | 626 | "@babel/plugin-transform-function-name@^7.16.7": 627 | version "7.16.7" 628 | resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz" 629 | integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== 630 | dependencies: 631 | "@babel/helper-compilation-targets" "^7.16.7" 632 | "@babel/helper-function-name" "^7.16.7" 633 | "@babel/helper-plugin-utils" "^7.16.7" 634 | 635 | "@babel/plugin-transform-literals@^7.16.7": 636 | version "7.16.7" 637 | resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz" 638 | integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ== 639 | dependencies: 640 | "@babel/helper-plugin-utils" "^7.16.7" 641 | 642 | "@babel/plugin-transform-member-expression-literals@^7.16.7": 643 | version "7.16.7" 644 | resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz" 645 | integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== 646 | dependencies: 647 | "@babel/helper-plugin-utils" "^7.16.7" 648 | 649 | "@babel/plugin-transform-modules-amd@^7.16.7": 650 | version "7.16.7" 651 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz" 652 | integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g== 653 | dependencies: 654 | "@babel/helper-module-transforms" "^7.16.7" 655 | "@babel/helper-plugin-utils" "^7.16.7" 656 | babel-plugin-dynamic-import-node "^2.3.3" 657 | 658 | "@babel/plugin-transform-modules-commonjs@^7.16.8": 659 | version "7.16.8" 660 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz" 661 | integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA== 662 | dependencies: 663 | "@babel/helper-module-transforms" "^7.16.7" 664 | "@babel/helper-plugin-utils" "^7.16.7" 665 | "@babel/helper-simple-access" "^7.16.7" 666 | babel-plugin-dynamic-import-node "^2.3.3" 667 | 668 | "@babel/plugin-transform-modules-systemjs@^7.16.7": 669 | version "7.16.7" 670 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz" 671 | integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw== 672 | dependencies: 673 | "@babel/helper-hoist-variables" "^7.16.7" 674 | "@babel/helper-module-transforms" "^7.16.7" 675 | "@babel/helper-plugin-utils" "^7.16.7" 676 | "@babel/helper-validator-identifier" "^7.16.7" 677 | babel-plugin-dynamic-import-node "^2.3.3" 678 | 679 | "@babel/plugin-transform-modules-umd@^7.16.7": 680 | version "7.16.7" 681 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz" 682 | integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ== 683 | dependencies: 684 | "@babel/helper-module-transforms" "^7.16.7" 685 | "@babel/helper-plugin-utils" "^7.16.7" 686 | 687 | "@babel/plugin-transform-named-capturing-groups-regex@^7.16.8": 688 | version "7.16.8" 689 | resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz" 690 | integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw== 691 | dependencies: 692 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 693 | 694 | "@babel/plugin-transform-new-target@^7.16.7": 695 | version "7.16.7" 696 | resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz" 697 | integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg== 698 | dependencies: 699 | "@babel/helper-plugin-utils" "^7.16.7" 700 | 701 | "@babel/plugin-transform-object-super@^7.16.7": 702 | version "7.16.7" 703 | resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz" 704 | integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== 705 | dependencies: 706 | "@babel/helper-plugin-utils" "^7.16.7" 707 | "@babel/helper-replace-supers" "^7.16.7" 708 | 709 | "@babel/plugin-transform-parameters@^7.16.7": 710 | version "7.16.7" 711 | resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz" 712 | integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw== 713 | dependencies: 714 | "@babel/helper-plugin-utils" "^7.16.7" 715 | 716 | "@babel/plugin-transform-property-literals@^7.16.7": 717 | version "7.16.7" 718 | resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz" 719 | integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== 720 | dependencies: 721 | "@babel/helper-plugin-utils" "^7.16.7" 722 | 723 | "@babel/plugin-transform-regenerator@^7.16.7": 724 | version "7.16.7" 725 | resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz" 726 | integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q== 727 | dependencies: 728 | regenerator-transform "^0.14.2" 729 | 730 | "@babel/plugin-transform-reserved-words@^7.16.7": 731 | version "7.16.7" 732 | resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz" 733 | integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg== 734 | dependencies: 735 | "@babel/helper-plugin-utils" "^7.16.7" 736 | 737 | "@babel/plugin-transform-shorthand-properties@^7.16.7": 738 | version "7.16.7" 739 | resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz" 740 | integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== 741 | dependencies: 742 | "@babel/helper-plugin-utils" "^7.16.7" 743 | 744 | "@babel/plugin-transform-spread@^7.16.7": 745 | version "7.16.7" 746 | resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz" 747 | integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg== 748 | dependencies: 749 | "@babel/helper-plugin-utils" "^7.16.7" 750 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 751 | 752 | "@babel/plugin-transform-sticky-regex@^7.16.7": 753 | version "7.16.7" 754 | resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz" 755 | integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw== 756 | dependencies: 757 | "@babel/helper-plugin-utils" "^7.16.7" 758 | 759 | "@babel/plugin-transform-template-literals@^7.16.7": 760 | version "7.16.7" 761 | resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz" 762 | integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA== 763 | dependencies: 764 | "@babel/helper-plugin-utils" "^7.16.7" 765 | 766 | "@babel/plugin-transform-typeof-symbol@^7.16.7": 767 | version "7.16.7" 768 | resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz" 769 | integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ== 770 | dependencies: 771 | "@babel/helper-plugin-utils" "^7.16.7" 772 | 773 | "@babel/plugin-transform-typescript@^7.16.7": 774 | version "7.16.8" 775 | resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz" 776 | integrity sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ== 777 | dependencies: 778 | "@babel/helper-create-class-features-plugin" "^7.16.7" 779 | "@babel/helper-plugin-utils" "^7.16.7" 780 | "@babel/plugin-syntax-typescript" "^7.16.7" 781 | 782 | "@babel/plugin-transform-unicode-escapes@^7.16.7": 783 | version "7.16.7" 784 | resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz" 785 | integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q== 786 | dependencies: 787 | "@babel/helper-plugin-utils" "^7.16.7" 788 | 789 | "@babel/plugin-transform-unicode-regex@^7.16.7": 790 | version "7.16.7" 791 | resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz" 792 | integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q== 793 | dependencies: 794 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 795 | "@babel/helper-plugin-utils" "^7.16.7" 796 | 797 | "@babel/preset-env@^7.16.11": 798 | version "7.16.11" 799 | resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz" 800 | integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g== 801 | dependencies: 802 | "@babel/compat-data" "^7.16.8" 803 | "@babel/helper-compilation-targets" "^7.16.7" 804 | "@babel/helper-plugin-utils" "^7.16.7" 805 | "@babel/helper-validator-option" "^7.16.7" 806 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7" 807 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7" 808 | "@babel/plugin-proposal-async-generator-functions" "^7.16.8" 809 | "@babel/plugin-proposal-class-properties" "^7.16.7" 810 | "@babel/plugin-proposal-class-static-block" "^7.16.7" 811 | "@babel/plugin-proposal-dynamic-import" "^7.16.7" 812 | "@babel/plugin-proposal-export-namespace-from" "^7.16.7" 813 | "@babel/plugin-proposal-json-strings" "^7.16.7" 814 | "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7" 815 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7" 816 | "@babel/plugin-proposal-numeric-separator" "^7.16.7" 817 | "@babel/plugin-proposal-object-rest-spread" "^7.16.7" 818 | "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" 819 | "@babel/plugin-proposal-optional-chaining" "^7.16.7" 820 | "@babel/plugin-proposal-private-methods" "^7.16.11" 821 | "@babel/plugin-proposal-private-property-in-object" "^7.16.7" 822 | "@babel/plugin-proposal-unicode-property-regex" "^7.16.7" 823 | "@babel/plugin-syntax-async-generators" "^7.8.4" 824 | "@babel/plugin-syntax-class-properties" "^7.12.13" 825 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 826 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 827 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 828 | "@babel/plugin-syntax-json-strings" "^7.8.3" 829 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 830 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 831 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 832 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 833 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 834 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 835 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 836 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 837 | "@babel/plugin-transform-arrow-functions" "^7.16.7" 838 | "@babel/plugin-transform-async-to-generator" "^7.16.8" 839 | "@babel/plugin-transform-block-scoped-functions" "^7.16.7" 840 | "@babel/plugin-transform-block-scoping" "^7.16.7" 841 | "@babel/plugin-transform-classes" "^7.16.7" 842 | "@babel/plugin-transform-computed-properties" "^7.16.7" 843 | "@babel/plugin-transform-destructuring" "^7.16.7" 844 | "@babel/plugin-transform-dotall-regex" "^7.16.7" 845 | "@babel/plugin-transform-duplicate-keys" "^7.16.7" 846 | "@babel/plugin-transform-exponentiation-operator" "^7.16.7" 847 | "@babel/plugin-transform-for-of" "^7.16.7" 848 | "@babel/plugin-transform-function-name" "^7.16.7" 849 | "@babel/plugin-transform-literals" "^7.16.7" 850 | "@babel/plugin-transform-member-expression-literals" "^7.16.7" 851 | "@babel/plugin-transform-modules-amd" "^7.16.7" 852 | "@babel/plugin-transform-modules-commonjs" "^7.16.8" 853 | "@babel/plugin-transform-modules-systemjs" "^7.16.7" 854 | "@babel/plugin-transform-modules-umd" "^7.16.7" 855 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8" 856 | "@babel/plugin-transform-new-target" "^7.16.7" 857 | "@babel/plugin-transform-object-super" "^7.16.7" 858 | "@babel/plugin-transform-parameters" "^7.16.7" 859 | "@babel/plugin-transform-property-literals" "^7.16.7" 860 | "@babel/plugin-transform-regenerator" "^7.16.7" 861 | "@babel/plugin-transform-reserved-words" "^7.16.7" 862 | "@babel/plugin-transform-shorthand-properties" "^7.16.7" 863 | "@babel/plugin-transform-spread" "^7.16.7" 864 | "@babel/plugin-transform-sticky-regex" "^7.16.7" 865 | "@babel/plugin-transform-template-literals" "^7.16.7" 866 | "@babel/plugin-transform-typeof-symbol" "^7.16.7" 867 | "@babel/plugin-transform-unicode-escapes" "^7.16.7" 868 | "@babel/plugin-transform-unicode-regex" "^7.16.7" 869 | "@babel/preset-modules" "^0.1.5" 870 | "@babel/types" "^7.16.8" 871 | babel-plugin-polyfill-corejs2 "^0.3.0" 872 | babel-plugin-polyfill-corejs3 "^0.5.0" 873 | babel-plugin-polyfill-regenerator "^0.3.0" 874 | core-js-compat "^3.20.2" 875 | semver "^6.3.0" 876 | 877 | "@babel/preset-modules@^0.1.5": 878 | version "0.1.5" 879 | resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" 880 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== 881 | dependencies: 882 | "@babel/helper-plugin-utils" "^7.0.0" 883 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 884 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 885 | "@babel/types" "^7.4.4" 886 | esutils "^2.0.2" 887 | 888 | "@babel/preset-typescript@^7.16.7": 889 | version "7.16.7" 890 | resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz" 891 | integrity sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ== 892 | dependencies: 893 | "@babel/helper-plugin-utils" "^7.16.7" 894 | "@babel/helper-validator-option" "^7.16.7" 895 | "@babel/plugin-transform-typescript" "^7.16.7" 896 | 897 | "@babel/runtime@^7.8.4": 898 | version "7.17.2" 899 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.2.tgz" 900 | integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw== 901 | dependencies: 902 | regenerator-runtime "^0.13.4" 903 | 904 | "@babel/template@^7.16.7", "@babel/template@^7.3.3": 905 | version "7.16.7" 906 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz" 907 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 908 | dependencies: 909 | "@babel/code-frame" "^7.16.7" 910 | "@babel/parser" "^7.16.7" 911 | "@babel/types" "^7.16.7" 912 | 913 | "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.0", "@babel/traverse@^7.17.3", "@babel/traverse@^7.7.2": 914 | version "7.17.3" 915 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz" 916 | integrity sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw== 917 | dependencies: 918 | "@babel/code-frame" "^7.16.7" 919 | "@babel/generator" "^7.17.3" 920 | "@babel/helper-environment-visitor" "^7.16.7" 921 | "@babel/helper-function-name" "^7.16.7" 922 | "@babel/helper-hoist-variables" "^7.16.7" 923 | "@babel/helper-split-export-declaration" "^7.16.7" 924 | "@babel/parser" "^7.17.3" 925 | "@babel/types" "^7.17.0" 926 | debug "^4.1.0" 927 | globals "^11.1.0" 928 | 929 | "@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": 930 | version "7.17.0" 931 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz" 932 | integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== 933 | dependencies: 934 | "@babel/helper-validator-identifier" "^7.16.7" 935 | to-fast-properties "^2.0.0" 936 | 937 | "@bcoe/v8-coverage@^0.2.3": 938 | version "0.2.3" 939 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" 940 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 941 | 942 | "@istanbuljs/load-nyc-config@^1.0.0": 943 | version "1.1.0" 944 | resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" 945 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 946 | dependencies: 947 | camelcase "^5.3.1" 948 | find-up "^4.1.0" 949 | get-package-type "^0.1.0" 950 | js-yaml "^3.13.1" 951 | resolve-from "^5.0.0" 952 | 953 | "@istanbuljs/schema@^0.1.2": 954 | version "0.1.3" 955 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" 956 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 957 | 958 | "@jest/console@^27.5.1": 959 | version "27.5.1" 960 | resolved "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz" 961 | integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== 962 | dependencies: 963 | "@jest/types" "^27.5.1" 964 | "@types/node" "*" 965 | chalk "^4.0.0" 966 | jest-message-util "^27.5.1" 967 | jest-util "^27.5.1" 968 | slash "^3.0.0" 969 | 970 | "@jest/core@^27.5.1": 971 | version "27.5.1" 972 | resolved "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz" 973 | integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== 974 | dependencies: 975 | "@jest/console" "^27.5.1" 976 | "@jest/reporters" "^27.5.1" 977 | "@jest/test-result" "^27.5.1" 978 | "@jest/transform" "^27.5.1" 979 | "@jest/types" "^27.5.1" 980 | "@types/node" "*" 981 | ansi-escapes "^4.2.1" 982 | chalk "^4.0.0" 983 | emittery "^0.8.1" 984 | exit "^0.1.2" 985 | graceful-fs "^4.2.9" 986 | jest-changed-files "^27.5.1" 987 | jest-config "^27.5.1" 988 | jest-haste-map "^27.5.1" 989 | jest-message-util "^27.5.1" 990 | jest-regex-util "^27.5.1" 991 | jest-resolve "^27.5.1" 992 | jest-resolve-dependencies "^27.5.1" 993 | jest-runner "^27.5.1" 994 | jest-runtime "^27.5.1" 995 | jest-snapshot "^27.5.1" 996 | jest-util "^27.5.1" 997 | jest-validate "^27.5.1" 998 | jest-watcher "^27.5.1" 999 | micromatch "^4.0.4" 1000 | rimraf "^3.0.0" 1001 | slash "^3.0.0" 1002 | strip-ansi "^6.0.0" 1003 | 1004 | "@jest/environment@^27.5.1": 1005 | version "27.5.1" 1006 | resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz" 1007 | integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== 1008 | dependencies: 1009 | "@jest/fake-timers" "^27.5.1" 1010 | "@jest/types" "^27.5.1" 1011 | "@types/node" "*" 1012 | jest-mock "^27.5.1" 1013 | 1014 | "@jest/fake-timers@^27.5.1": 1015 | version "27.5.1" 1016 | resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz" 1017 | integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== 1018 | dependencies: 1019 | "@jest/types" "^27.5.1" 1020 | "@sinonjs/fake-timers" "^8.0.1" 1021 | "@types/node" "*" 1022 | jest-message-util "^27.5.1" 1023 | jest-mock "^27.5.1" 1024 | jest-util "^27.5.1" 1025 | 1026 | "@jest/globals@^27.5.1": 1027 | version "27.5.1" 1028 | resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz" 1029 | integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== 1030 | dependencies: 1031 | "@jest/environment" "^27.5.1" 1032 | "@jest/types" "^27.5.1" 1033 | expect "^27.5.1" 1034 | 1035 | "@jest/reporters@^27.5.1": 1036 | version "27.5.1" 1037 | resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz" 1038 | integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== 1039 | dependencies: 1040 | "@bcoe/v8-coverage" "^0.2.3" 1041 | "@jest/console" "^27.5.1" 1042 | "@jest/test-result" "^27.5.1" 1043 | "@jest/transform" "^27.5.1" 1044 | "@jest/types" "^27.5.1" 1045 | "@types/node" "*" 1046 | chalk "^4.0.0" 1047 | collect-v8-coverage "^1.0.0" 1048 | exit "^0.1.2" 1049 | glob "^7.1.2" 1050 | graceful-fs "^4.2.9" 1051 | istanbul-lib-coverage "^3.0.0" 1052 | istanbul-lib-instrument "^5.1.0" 1053 | istanbul-lib-report "^3.0.0" 1054 | istanbul-lib-source-maps "^4.0.0" 1055 | istanbul-reports "^3.1.3" 1056 | jest-haste-map "^27.5.1" 1057 | jest-resolve "^27.5.1" 1058 | jest-util "^27.5.1" 1059 | jest-worker "^27.5.1" 1060 | slash "^3.0.0" 1061 | source-map "^0.6.0" 1062 | string-length "^4.0.1" 1063 | terminal-link "^2.0.0" 1064 | v8-to-istanbul "^8.1.0" 1065 | 1066 | "@jest/source-map@^27.5.1": 1067 | version "27.5.1" 1068 | resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz" 1069 | integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== 1070 | dependencies: 1071 | callsites "^3.0.0" 1072 | graceful-fs "^4.2.9" 1073 | source-map "^0.6.0" 1074 | 1075 | "@jest/test-result@^27.5.1": 1076 | version "27.5.1" 1077 | resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz" 1078 | integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== 1079 | dependencies: 1080 | "@jest/console" "^27.5.1" 1081 | "@jest/types" "^27.5.1" 1082 | "@types/istanbul-lib-coverage" "^2.0.0" 1083 | collect-v8-coverage "^1.0.0" 1084 | 1085 | "@jest/test-sequencer@^27.5.1": 1086 | version "27.5.1" 1087 | resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz" 1088 | integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== 1089 | dependencies: 1090 | "@jest/test-result" "^27.5.1" 1091 | graceful-fs "^4.2.9" 1092 | jest-haste-map "^27.5.1" 1093 | jest-runtime "^27.5.1" 1094 | 1095 | "@jest/transform@^27.5.1": 1096 | version "27.5.1" 1097 | resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz" 1098 | integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== 1099 | dependencies: 1100 | "@babel/core" "^7.1.0" 1101 | "@jest/types" "^27.5.1" 1102 | babel-plugin-istanbul "^6.1.1" 1103 | chalk "^4.0.0" 1104 | convert-source-map "^1.4.0" 1105 | fast-json-stable-stringify "^2.0.0" 1106 | graceful-fs "^4.2.9" 1107 | jest-haste-map "^27.5.1" 1108 | jest-regex-util "^27.5.1" 1109 | jest-util "^27.5.1" 1110 | micromatch "^4.0.4" 1111 | pirates "^4.0.4" 1112 | slash "^3.0.0" 1113 | source-map "^0.6.1" 1114 | write-file-atomic "^3.0.0" 1115 | 1116 | "@jest/types@^27.5.1": 1117 | version "27.5.1" 1118 | resolved "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz" 1119 | integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== 1120 | dependencies: 1121 | "@types/istanbul-lib-coverage" "^2.0.0" 1122 | "@types/istanbul-reports" "^3.0.0" 1123 | "@types/node" "*" 1124 | "@types/yargs" "^16.0.0" 1125 | chalk "^4.0.0" 1126 | 1127 | "@jridgewell/resolve-uri@^3.0.3": 1128 | version "3.0.5" 1129 | resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz" 1130 | integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew== 1131 | 1132 | "@jridgewell/sourcemap-codec@^1.4.10": 1133 | version "1.4.11" 1134 | resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz" 1135 | integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg== 1136 | 1137 | "@jridgewell/trace-mapping@^0.3.0": 1138 | version "0.3.4" 1139 | resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz" 1140 | integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ== 1141 | dependencies: 1142 | "@jridgewell/resolve-uri" "^3.0.3" 1143 | "@jridgewell/sourcemap-codec" "^1.4.10" 1144 | 1145 | "@rollup/plugin-json@^4.1.0": 1146 | version "4.1.0" 1147 | resolved "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz" 1148 | integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== 1149 | dependencies: 1150 | "@rollup/pluginutils" "^3.0.8" 1151 | 1152 | "@rollup/plugin-node-resolve@^13.1.3": 1153 | version "13.1.3" 1154 | resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.3.tgz" 1155 | integrity sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ== 1156 | dependencies: 1157 | "@rollup/pluginutils" "^3.1.0" 1158 | "@types/resolve" "1.17.1" 1159 | builtin-modules "^3.1.0" 1160 | deepmerge "^4.2.2" 1161 | is-module "^1.0.0" 1162 | resolve "^1.19.0" 1163 | 1164 | "@rollup/plugin-replace@^4.0.0": 1165 | version "4.0.0" 1166 | resolved "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-4.0.0.tgz" 1167 | integrity sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g== 1168 | dependencies: 1169 | "@rollup/pluginutils" "^3.1.0" 1170 | magic-string "^0.25.7" 1171 | 1172 | "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": 1173 | version "3.1.0" 1174 | resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz" 1175 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 1176 | dependencies: 1177 | "@types/estree" "0.0.39" 1178 | estree-walker "^1.0.1" 1179 | picomatch "^2.2.2" 1180 | 1181 | "@rollup/pluginutils@^4.1.2": 1182 | version "4.1.2" 1183 | resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.2.tgz" 1184 | integrity sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ== 1185 | dependencies: 1186 | estree-walker "^2.0.1" 1187 | picomatch "^2.2.2" 1188 | 1189 | "@sinonjs/commons@^1.7.0": 1190 | version "1.8.3" 1191 | resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz" 1192 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 1193 | dependencies: 1194 | type-detect "4.0.8" 1195 | 1196 | "@sinonjs/fake-timers@^8.0.1": 1197 | version "8.1.0" 1198 | resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz" 1199 | integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== 1200 | dependencies: 1201 | "@sinonjs/commons" "^1.7.0" 1202 | 1203 | "@tootallnate/once@1": 1204 | version "1.1.2" 1205 | resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" 1206 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 1207 | 1208 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 1209 | version "7.1.18" 1210 | resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz" 1211 | integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== 1212 | dependencies: 1213 | "@babel/parser" "^7.1.0" 1214 | "@babel/types" "^7.0.0" 1215 | "@types/babel__generator" "*" 1216 | "@types/babel__template" "*" 1217 | "@types/babel__traverse" "*" 1218 | 1219 | "@types/babel__generator@*": 1220 | version "7.6.4" 1221 | resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz" 1222 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 1223 | dependencies: 1224 | "@babel/types" "^7.0.0" 1225 | 1226 | "@types/babel__template@*": 1227 | version "7.4.1" 1228 | resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" 1229 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 1230 | dependencies: 1231 | "@babel/parser" "^7.1.0" 1232 | "@babel/types" "^7.0.0" 1233 | 1234 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 1235 | version "7.14.2" 1236 | resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz" 1237 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 1238 | dependencies: 1239 | "@babel/types" "^7.3.0" 1240 | 1241 | "@types/estree@0.0.39": 1242 | version "0.0.39" 1243 | resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" 1244 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1245 | 1246 | "@types/graceful-fs@^4.1.2": 1247 | version "4.1.5" 1248 | resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" 1249 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 1250 | dependencies: 1251 | "@types/node" "*" 1252 | 1253 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1254 | version "2.0.4" 1255 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz" 1256 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 1257 | 1258 | "@types/istanbul-lib-report@*": 1259 | version "3.0.0" 1260 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 1261 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 1262 | dependencies: 1263 | "@types/istanbul-lib-coverage" "*" 1264 | 1265 | "@types/istanbul-reports@^3.0.0": 1266 | version "3.0.1" 1267 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz" 1268 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 1269 | dependencies: 1270 | "@types/istanbul-lib-report" "*" 1271 | 1272 | "@types/jest@^27.4.1": 1273 | version "27.4.1" 1274 | resolved "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz" 1275 | integrity sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw== 1276 | dependencies: 1277 | jest-matcher-utils "^27.0.0" 1278 | pretty-format "^27.0.0" 1279 | 1280 | "@types/node@*": 1281 | version "17.0.21" 1282 | resolved "https://registry.npmjs.org/@types/node/-/node-17.0.21.tgz" 1283 | integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ== 1284 | 1285 | "@types/prettier@^2.1.5": 1286 | version "2.4.4" 1287 | resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz" 1288 | integrity sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA== 1289 | 1290 | "@types/resolve@1.17.1": 1291 | version "1.17.1" 1292 | resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz" 1293 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 1294 | dependencies: 1295 | "@types/node" "*" 1296 | 1297 | "@types/stack-utils@^2.0.0": 1298 | version "2.0.1" 1299 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz" 1300 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 1301 | 1302 | "@types/yargs-parser@*": 1303 | version "21.0.0" 1304 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz" 1305 | integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 1306 | 1307 | "@types/yargs@^16.0.0": 1308 | version "16.0.4" 1309 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz" 1310 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 1311 | dependencies: 1312 | "@types/yargs-parser" "*" 1313 | 1314 | "@yarn-tool/resolve-package@^1.0.40": 1315 | version "1.0.45" 1316 | resolved "https://registry.npmjs.org/@yarn-tool/resolve-package/-/resolve-package-1.0.45.tgz" 1317 | integrity sha512-xnfY8JceApkSTliZtr7X6yl1wZYhGbRp0beBMi1OtmvTVTm/ZSt3881Fw1M3ZwhHqr7OEfl8828LJK2q62BvoQ== 1318 | dependencies: 1319 | pkg-dir "< 6 >= 5" 1320 | tslib "^2.3.1" 1321 | upath2 "^3.1.12" 1322 | 1323 | abab@^2.0.3, abab@^2.0.5: 1324 | version "2.0.5" 1325 | resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" 1326 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 1327 | 1328 | acorn-globals@^6.0.0: 1329 | version "6.0.0" 1330 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" 1331 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 1332 | dependencies: 1333 | acorn "^7.1.1" 1334 | acorn-walk "^7.1.1" 1335 | 1336 | acorn-walk@^7.1.1: 1337 | version "7.2.0" 1338 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" 1339 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1340 | 1341 | acorn@^7.1.1: 1342 | version "7.4.1" 1343 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" 1344 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1345 | 1346 | acorn@^8.2.4: 1347 | version "8.7.0" 1348 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz" 1349 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 1350 | 1351 | agent-base@6: 1352 | version "6.0.2" 1353 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" 1354 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 1355 | dependencies: 1356 | debug "4" 1357 | 1358 | ansi-escapes@^4.2.1: 1359 | version "4.3.2" 1360 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" 1361 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 1362 | dependencies: 1363 | type-fest "^0.21.3" 1364 | 1365 | ansi-regex@^5.0.1: 1366 | version "5.0.1" 1367 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 1368 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1369 | 1370 | ansi-styles@^3.2.1: 1371 | version "3.2.1" 1372 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 1373 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1374 | dependencies: 1375 | color-convert "^1.9.0" 1376 | 1377 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1378 | version "4.3.0" 1379 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 1380 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1381 | dependencies: 1382 | color-convert "^2.0.1" 1383 | 1384 | ansi-styles@^5.0.0: 1385 | version "5.2.0" 1386 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" 1387 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 1388 | 1389 | anymatch@^3.0.3: 1390 | version "3.1.2" 1391 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" 1392 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 1393 | dependencies: 1394 | normalize-path "^3.0.0" 1395 | picomatch "^2.0.4" 1396 | 1397 | argparse@^1.0.7: 1398 | version "1.0.10" 1399 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" 1400 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1401 | dependencies: 1402 | sprintf-js "~1.0.2" 1403 | 1404 | asynckit@^0.4.0: 1405 | version "0.4.0" 1406 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" 1407 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1408 | 1409 | babel-jest@^27.5.1: 1410 | version "27.5.1" 1411 | resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz" 1412 | integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== 1413 | dependencies: 1414 | "@jest/transform" "^27.5.1" 1415 | "@jest/types" "^27.5.1" 1416 | "@types/babel__core" "^7.1.14" 1417 | babel-plugin-istanbul "^6.1.1" 1418 | babel-preset-jest "^27.5.1" 1419 | chalk "^4.0.0" 1420 | graceful-fs "^4.2.9" 1421 | slash "^3.0.0" 1422 | 1423 | babel-plugin-dynamic-import-node@^2.3.3: 1424 | version "2.3.3" 1425 | resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" 1426 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1427 | dependencies: 1428 | object.assign "^4.1.0" 1429 | 1430 | babel-plugin-istanbul@^6.1.1: 1431 | version "6.1.1" 1432 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" 1433 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 1434 | dependencies: 1435 | "@babel/helper-plugin-utils" "^7.0.0" 1436 | "@istanbuljs/load-nyc-config" "^1.0.0" 1437 | "@istanbuljs/schema" "^0.1.2" 1438 | istanbul-lib-instrument "^5.0.4" 1439 | test-exclude "^6.0.0" 1440 | 1441 | babel-plugin-jest-hoist@^27.5.1: 1442 | version "27.5.1" 1443 | resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz" 1444 | integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== 1445 | dependencies: 1446 | "@babel/template" "^7.3.3" 1447 | "@babel/types" "^7.3.3" 1448 | "@types/babel__core" "^7.0.0" 1449 | "@types/babel__traverse" "^7.0.6" 1450 | 1451 | babel-plugin-polyfill-corejs2@^0.3.0: 1452 | version "0.3.1" 1453 | resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz" 1454 | integrity sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w== 1455 | dependencies: 1456 | "@babel/compat-data" "^7.13.11" 1457 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1458 | semver "^6.1.1" 1459 | 1460 | babel-plugin-polyfill-corejs3@^0.5.0: 1461 | version "0.5.2" 1462 | resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz" 1463 | integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ== 1464 | dependencies: 1465 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1466 | core-js-compat "^3.21.0" 1467 | 1468 | babel-plugin-polyfill-regenerator@^0.3.0: 1469 | version "0.3.1" 1470 | resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz" 1471 | integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== 1472 | dependencies: 1473 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1474 | 1475 | babel-preset-current-node-syntax@^1.0.0: 1476 | version "1.0.1" 1477 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" 1478 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 1479 | dependencies: 1480 | "@babel/plugin-syntax-async-generators" "^7.8.4" 1481 | "@babel/plugin-syntax-bigint" "^7.8.3" 1482 | "@babel/plugin-syntax-class-properties" "^7.8.3" 1483 | "@babel/plugin-syntax-import-meta" "^7.8.3" 1484 | "@babel/plugin-syntax-json-strings" "^7.8.3" 1485 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1486 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1487 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1488 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1489 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1490 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1491 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 1492 | 1493 | babel-preset-jest@^27.5.1: 1494 | version "27.5.1" 1495 | resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz" 1496 | integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== 1497 | dependencies: 1498 | babel-plugin-jest-hoist "^27.5.1" 1499 | babel-preset-current-node-syntax "^1.0.0" 1500 | 1501 | balanced-match@^1.0.0: 1502 | version "1.0.2" 1503 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 1504 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1505 | 1506 | brace-expansion@^1.1.7: 1507 | version "1.1.11" 1508 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 1509 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1510 | dependencies: 1511 | balanced-match "^1.0.0" 1512 | concat-map "0.0.1" 1513 | 1514 | braces@^3.0.1: 1515 | version "3.0.2" 1516 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 1517 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1518 | dependencies: 1519 | fill-range "^7.0.1" 1520 | 1521 | browser-process-hrtime@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" 1524 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1525 | 1526 | browserslist@^4.17.5, browserslist@^4.19.1: 1527 | version "4.20.0" 1528 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.20.0.tgz" 1529 | integrity sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ== 1530 | dependencies: 1531 | caniuse-lite "^1.0.30001313" 1532 | electron-to-chromium "^1.4.76" 1533 | escalade "^3.1.1" 1534 | node-releases "^2.0.2" 1535 | picocolors "^1.0.0" 1536 | 1537 | bser@2.1.1: 1538 | version "2.1.1" 1539 | resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" 1540 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1541 | dependencies: 1542 | node-int64 "^0.4.0" 1543 | 1544 | buffer-from@^1.0.0: 1545 | version "1.1.2" 1546 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" 1547 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1548 | 1549 | builtin-modules@^3.1.0: 1550 | version "3.2.0" 1551 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz" 1552 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== 1553 | 1554 | call-bind@^1.0.0: 1555 | version "1.0.2" 1556 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 1557 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1558 | dependencies: 1559 | function-bind "^1.1.1" 1560 | get-intrinsic "^1.0.2" 1561 | 1562 | callsites@^3.0.0: 1563 | version "3.1.0" 1564 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 1565 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1566 | 1567 | camelcase@^5.3.1: 1568 | version "5.3.1" 1569 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" 1570 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1571 | 1572 | camelcase@^6.2.0: 1573 | version "6.3.0" 1574 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" 1575 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 1576 | 1577 | caniuse-lite@^1.0.30001313: 1578 | version "1.0.30001314" 1579 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz" 1580 | integrity sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw== 1581 | 1582 | chalk@^2.0.0: 1583 | version "2.4.2" 1584 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 1585 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1586 | dependencies: 1587 | ansi-styles "^3.2.1" 1588 | escape-string-regexp "^1.0.5" 1589 | supports-color "^5.3.0" 1590 | 1591 | chalk@^4.0.0: 1592 | version "4.1.2" 1593 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 1594 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1595 | dependencies: 1596 | ansi-styles "^4.1.0" 1597 | supports-color "^7.1.0" 1598 | 1599 | char-regex@^1.0.2: 1600 | version "1.0.2" 1601 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" 1602 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1603 | 1604 | ci-info@^3.2.0: 1605 | version "3.3.0" 1606 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz" 1607 | integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== 1608 | 1609 | cjs-module-lexer@^1.0.0: 1610 | version "1.2.2" 1611 | resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz" 1612 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 1613 | 1614 | cliui@^7.0.2: 1615 | version "7.0.4" 1616 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" 1617 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 1618 | dependencies: 1619 | string-width "^4.2.0" 1620 | strip-ansi "^6.0.0" 1621 | wrap-ansi "^7.0.0" 1622 | 1623 | co@^4.6.0: 1624 | version "4.6.0" 1625 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" 1626 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1627 | 1628 | collect-v8-coverage@^1.0.0: 1629 | version "1.0.1" 1630 | resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" 1631 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 1632 | 1633 | color-convert@^1.9.0: 1634 | version "1.9.3" 1635 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 1636 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1637 | dependencies: 1638 | color-name "1.1.3" 1639 | 1640 | color-convert@^2.0.1: 1641 | version "2.0.1" 1642 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 1643 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1644 | dependencies: 1645 | color-name "~1.1.4" 1646 | 1647 | color-name@1.1.3: 1648 | version "1.1.3" 1649 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 1650 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1651 | 1652 | color-name@~1.1.4: 1653 | version "1.1.4" 1654 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1655 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1656 | 1657 | combined-stream@^1.0.8: 1658 | version "1.0.8" 1659 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" 1660 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1661 | dependencies: 1662 | delayed-stream "~1.0.0" 1663 | 1664 | commondir@^1.0.1: 1665 | version "1.0.1" 1666 | resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" 1667 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1668 | 1669 | concat-map@0.0.1: 1670 | version "0.0.1" 1671 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 1672 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1673 | 1674 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1675 | version "1.8.0" 1676 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" 1677 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1678 | dependencies: 1679 | safe-buffer "~5.1.1" 1680 | 1681 | core-js-compat@^3.20.2, core-js-compat@^3.21.0: 1682 | version "3.21.1" 1683 | resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz" 1684 | integrity sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g== 1685 | dependencies: 1686 | browserslist "^4.19.1" 1687 | semver "7.0.0" 1688 | 1689 | cross-spawn@^7.0.0, cross-spawn@^7.0.3: 1690 | version "7.0.3" 1691 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 1692 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1693 | dependencies: 1694 | path-key "^3.1.0" 1695 | shebang-command "^2.0.0" 1696 | which "^2.0.1" 1697 | 1698 | cssom@^0.4.4: 1699 | version "0.4.4" 1700 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" 1701 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 1702 | 1703 | cssom@~0.3.6: 1704 | version "0.3.8" 1705 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" 1706 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1707 | 1708 | cssstyle@^2.3.0: 1709 | version "2.3.0" 1710 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" 1711 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1712 | dependencies: 1713 | cssom "~0.3.6" 1714 | 1715 | data-urls@^2.0.0: 1716 | version "2.0.0" 1717 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" 1718 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1719 | dependencies: 1720 | abab "^2.0.3" 1721 | whatwg-mimetype "^2.3.0" 1722 | whatwg-url "^8.0.0" 1723 | 1724 | debug@4, debug@^4.1.0, debug@^4.1.1: 1725 | version "4.3.3" 1726 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz" 1727 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 1728 | dependencies: 1729 | ms "2.1.2" 1730 | 1731 | decimal.js@^10.2.1: 1732 | version "10.3.1" 1733 | resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz" 1734 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1735 | 1736 | dedent@^0.7.0: 1737 | version "0.7.0" 1738 | resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz" 1739 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1740 | 1741 | deep-is@~0.1.3: 1742 | version "0.1.4" 1743 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1744 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1745 | 1746 | deepmerge@^4.2.2: 1747 | version "4.2.2" 1748 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" 1749 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1750 | 1751 | define-properties@^1.1.3: 1752 | version "1.1.3" 1753 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" 1754 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1755 | dependencies: 1756 | object-keys "^1.0.12" 1757 | 1758 | delayed-stream@~1.0.0: 1759 | version "1.0.0" 1760 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" 1761 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1762 | 1763 | detect-newline@^3.0.0: 1764 | version "3.1.0" 1765 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" 1766 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1767 | 1768 | diff-sequences@^27.5.1: 1769 | version "27.5.1" 1770 | resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz" 1771 | integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== 1772 | 1773 | domexception@^2.0.1: 1774 | version "2.0.1" 1775 | resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" 1776 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1777 | dependencies: 1778 | webidl-conversions "^5.0.0" 1779 | 1780 | electron-to-chromium@^1.4.76: 1781 | version "1.4.77" 1782 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.77.tgz" 1783 | integrity sha512-fiDxw8mO9Ph1Z0bjX2sFTPpi0J0QkOiwOJF+5Q0J0baNc/F9lLePAvDPlnoxvbUYYMizqrKPeotRRkJ9LtxAew== 1784 | 1785 | emittery@^0.8.1: 1786 | version "0.8.1" 1787 | resolved "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz" 1788 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1789 | 1790 | emoji-regex@^8.0.0: 1791 | version "8.0.0" 1792 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" 1793 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1794 | 1795 | end-of-stream@^1.1.0: 1796 | version "1.4.4" 1797 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" 1798 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1799 | dependencies: 1800 | once "^1.4.0" 1801 | 1802 | error-ex@^1.3.1: 1803 | version "1.3.2" 1804 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 1805 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1806 | dependencies: 1807 | is-arrayish "^0.2.1" 1808 | 1809 | escalade@^3.1.1: 1810 | version "3.1.1" 1811 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1812 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1813 | 1814 | escape-string-regexp@^1.0.5: 1815 | version "1.0.5" 1816 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1817 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1818 | 1819 | escape-string-regexp@^2.0.0: 1820 | version "2.0.0" 1821 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" 1822 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1823 | 1824 | escodegen@^2.0.0: 1825 | version "2.0.0" 1826 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz" 1827 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1828 | dependencies: 1829 | esprima "^4.0.1" 1830 | estraverse "^5.2.0" 1831 | esutils "^2.0.2" 1832 | optionator "^0.8.1" 1833 | optionalDependencies: 1834 | source-map "~0.6.1" 1835 | 1836 | esprima@^4.0.0, esprima@^4.0.1: 1837 | version "4.0.1" 1838 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" 1839 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1840 | 1841 | estraverse@^5.2.0: 1842 | version "5.3.0" 1843 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1844 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1845 | 1846 | estree-walker@^1.0.1: 1847 | version "1.0.1" 1848 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz" 1849 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 1850 | 1851 | estree-walker@^2.0.1: 1852 | version "2.0.2" 1853 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz" 1854 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 1855 | 1856 | esutils@^2.0.2: 1857 | version "2.0.3" 1858 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1859 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1860 | 1861 | execa@^4.0.2: 1862 | version "4.1.0" 1863 | resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz" 1864 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1865 | dependencies: 1866 | cross-spawn "^7.0.0" 1867 | get-stream "^5.0.0" 1868 | human-signals "^1.1.1" 1869 | is-stream "^2.0.0" 1870 | merge-stream "^2.0.0" 1871 | npm-run-path "^4.0.0" 1872 | onetime "^5.1.0" 1873 | signal-exit "^3.0.2" 1874 | strip-final-newline "^2.0.0" 1875 | 1876 | execa@^5.0.0: 1877 | version "5.1.1" 1878 | resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" 1879 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1880 | dependencies: 1881 | cross-spawn "^7.0.3" 1882 | get-stream "^6.0.0" 1883 | human-signals "^2.1.0" 1884 | is-stream "^2.0.0" 1885 | merge-stream "^2.0.0" 1886 | npm-run-path "^4.0.1" 1887 | onetime "^5.1.2" 1888 | signal-exit "^3.0.3" 1889 | strip-final-newline "^2.0.0" 1890 | 1891 | exit@^0.1.2: 1892 | version "0.1.2" 1893 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" 1894 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1895 | 1896 | expect@^27.5.1: 1897 | version "27.5.1" 1898 | resolved "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz" 1899 | integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== 1900 | dependencies: 1901 | "@jest/types" "^27.5.1" 1902 | jest-get-type "^27.5.1" 1903 | jest-matcher-utils "^27.5.1" 1904 | jest-message-util "^27.5.1" 1905 | 1906 | fast-json-stable-stringify@^2.0.0: 1907 | version "2.1.0" 1908 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1909 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1910 | 1911 | fast-levenshtein@~2.0.6: 1912 | version "2.0.6" 1913 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1914 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1915 | 1916 | fb-watchman@^2.0.0: 1917 | version "2.0.1" 1918 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" 1919 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1920 | dependencies: 1921 | bser "2.1.1" 1922 | 1923 | fill-range@^7.0.1: 1924 | version "7.0.1" 1925 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1926 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1927 | dependencies: 1928 | to-regex-range "^5.0.1" 1929 | 1930 | find-cache-dir@^3.3.2: 1931 | version "3.3.2" 1932 | resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz" 1933 | integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== 1934 | dependencies: 1935 | commondir "^1.0.1" 1936 | make-dir "^3.0.2" 1937 | pkg-dir "^4.1.0" 1938 | 1939 | find-up@^4.0.0, find-up@^4.1.0: 1940 | version "4.1.0" 1941 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1942 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1943 | dependencies: 1944 | locate-path "^5.0.0" 1945 | path-exists "^4.0.0" 1946 | 1947 | find-up@^5.0.0: 1948 | version "5.0.0" 1949 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1950 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1951 | dependencies: 1952 | locate-path "^6.0.0" 1953 | path-exists "^4.0.0" 1954 | 1955 | form-data@^3.0.0: 1956 | version "3.0.1" 1957 | resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" 1958 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1959 | dependencies: 1960 | asynckit "^0.4.0" 1961 | combined-stream "^1.0.8" 1962 | mime-types "^2.1.12" 1963 | 1964 | fs-extra@^10.0.0: 1965 | version "10.0.1" 1966 | resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz" 1967 | integrity sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag== 1968 | dependencies: 1969 | graceful-fs "^4.2.0" 1970 | jsonfile "^6.0.1" 1971 | universalify "^2.0.0" 1972 | 1973 | fs.realpath@^1.0.0: 1974 | version "1.0.0" 1975 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1976 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1977 | 1978 | fsevents@^2.3.2, fsevents@~2.3.2: 1979 | version "2.3.2" 1980 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 1981 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1982 | 1983 | function-bind@^1.1.1: 1984 | version "1.1.1" 1985 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1986 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1987 | 1988 | gensync@^1.0.0-beta.2: 1989 | version "1.0.0-beta.2" 1990 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" 1991 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1992 | 1993 | get-caller-file@^2.0.5: 1994 | version "2.0.5" 1995 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 1996 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1997 | 1998 | get-intrinsic@^1.0.2: 1999 | version "1.1.1" 2000 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" 2001 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 2002 | dependencies: 2003 | function-bind "^1.1.1" 2004 | has "^1.0.3" 2005 | has-symbols "^1.0.1" 2006 | 2007 | get-package-type@^0.1.0: 2008 | version "0.1.0" 2009 | resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" 2010 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 2011 | 2012 | get-stream@^5.0.0: 2013 | version "5.2.0" 2014 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" 2015 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 2016 | dependencies: 2017 | pump "^3.0.0" 2018 | 2019 | get-stream@^6.0.0: 2020 | version "6.0.1" 2021 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" 2022 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 2023 | 2024 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 2025 | version "7.2.0" 2026 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" 2027 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 2028 | dependencies: 2029 | fs.realpath "^1.0.0" 2030 | inflight "^1.0.4" 2031 | inherits "2" 2032 | minimatch "^3.0.4" 2033 | once "^1.3.0" 2034 | path-is-absolute "^1.0.0" 2035 | 2036 | globals@^11.1.0: 2037 | version "11.12.0" 2038 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" 2039 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 2040 | 2041 | graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.9: 2042 | version "4.2.9" 2043 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz" 2044 | integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== 2045 | 2046 | has-flag@^3.0.0: 2047 | version "3.0.0" 2048 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 2049 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 2050 | 2051 | has-flag@^4.0.0: 2052 | version "4.0.0" 2053 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 2054 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 2055 | 2056 | has-symbols@^1.0.1: 2057 | version "1.0.3" 2058 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 2059 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 2060 | 2061 | has@^1.0.3: 2062 | version "1.0.3" 2063 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 2064 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 2065 | dependencies: 2066 | function-bind "^1.1.1" 2067 | 2068 | html-encoding-sniffer@^2.0.1: 2069 | version "2.0.1" 2070 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" 2071 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 2072 | dependencies: 2073 | whatwg-encoding "^1.0.5" 2074 | 2075 | html-escaper@^2.0.0: 2076 | version "2.0.2" 2077 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" 2078 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 2079 | 2080 | http-proxy-agent@^4.0.1: 2081 | version "4.0.1" 2082 | resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" 2083 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 2084 | dependencies: 2085 | "@tootallnate/once" "1" 2086 | agent-base "6" 2087 | debug "4" 2088 | 2089 | https-proxy-agent@^5.0.0: 2090 | version "5.0.0" 2091 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" 2092 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 2093 | dependencies: 2094 | agent-base "6" 2095 | debug "4" 2096 | 2097 | human-signals@^1.1.1: 2098 | version "1.1.1" 2099 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" 2100 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 2101 | 2102 | human-signals@^2.1.0: 2103 | version "2.1.0" 2104 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" 2105 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 2106 | 2107 | iconv-lite@0.4.24: 2108 | version "0.4.24" 2109 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" 2110 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 2111 | dependencies: 2112 | safer-buffer ">= 2.1.2 < 3" 2113 | 2114 | import-local@^3.0.2: 2115 | version "3.1.0" 2116 | resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz" 2117 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 2118 | dependencies: 2119 | pkg-dir "^4.2.0" 2120 | resolve-cwd "^3.0.0" 2121 | 2122 | imurmurhash@^0.1.4: 2123 | version "0.1.4" 2124 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 2125 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 2126 | 2127 | inflight@^1.0.4: 2128 | version "1.0.6" 2129 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 2130 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 2131 | dependencies: 2132 | once "^1.3.0" 2133 | wrappy "1" 2134 | 2135 | inherits@2: 2136 | version "2.0.4" 2137 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 2138 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2139 | 2140 | is-arrayish@^0.2.1: 2141 | version "0.2.1" 2142 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 2143 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2144 | 2145 | is-core-module@^2.8.1: 2146 | version "2.8.1" 2147 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz" 2148 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 2149 | dependencies: 2150 | has "^1.0.3" 2151 | 2152 | is-fullwidth-code-point@^3.0.0: 2153 | version "3.0.0" 2154 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" 2155 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 2156 | 2157 | is-generator-fn@^2.0.0: 2158 | version "2.1.0" 2159 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" 2160 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 2161 | 2162 | is-module@^1.0.0: 2163 | version "1.0.0" 2164 | resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz" 2165 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 2166 | 2167 | is-number@^7.0.0: 2168 | version "7.0.0" 2169 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 2170 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2171 | 2172 | is-potential-custom-element-name@^1.0.1: 2173 | version "1.0.1" 2174 | resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" 2175 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 2176 | 2177 | is-stream@^2.0.0: 2178 | version "2.0.1" 2179 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 2180 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 2181 | 2182 | is-typedarray@^1.0.0: 2183 | version "1.0.0" 2184 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" 2185 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 2186 | 2187 | isexe@^2.0.0: 2188 | version "2.0.0" 2189 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 2190 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2191 | 2192 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 2193 | version "3.2.0" 2194 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" 2195 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 2196 | 2197 | istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: 2198 | version "5.1.0" 2199 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz" 2200 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 2201 | dependencies: 2202 | "@babel/core" "^7.12.3" 2203 | "@babel/parser" "^7.14.7" 2204 | "@istanbuljs/schema" "^0.1.2" 2205 | istanbul-lib-coverage "^3.2.0" 2206 | semver "^6.3.0" 2207 | 2208 | istanbul-lib-report@^3.0.0: 2209 | version "3.0.0" 2210 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 2211 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 2212 | dependencies: 2213 | istanbul-lib-coverage "^3.0.0" 2214 | make-dir "^3.0.0" 2215 | supports-color "^7.1.0" 2216 | 2217 | istanbul-lib-source-maps@^4.0.0: 2218 | version "4.0.1" 2219 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" 2220 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 2221 | dependencies: 2222 | debug "^4.1.1" 2223 | istanbul-lib-coverage "^3.0.0" 2224 | source-map "^0.6.1" 2225 | 2226 | istanbul-reports@^3.1.3: 2227 | version "3.1.4" 2228 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz" 2229 | integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== 2230 | dependencies: 2231 | html-escaper "^2.0.0" 2232 | istanbul-lib-report "^3.0.0" 2233 | 2234 | jest-changed-files@^27.5.1: 2235 | version "27.5.1" 2236 | resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz" 2237 | integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== 2238 | dependencies: 2239 | "@jest/types" "^27.5.1" 2240 | execa "^5.0.0" 2241 | throat "^6.0.1" 2242 | 2243 | jest-circus@^27.5.1: 2244 | version "27.5.1" 2245 | resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz" 2246 | integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== 2247 | dependencies: 2248 | "@jest/environment" "^27.5.1" 2249 | "@jest/test-result" "^27.5.1" 2250 | "@jest/types" "^27.5.1" 2251 | "@types/node" "*" 2252 | chalk "^4.0.0" 2253 | co "^4.6.0" 2254 | dedent "^0.7.0" 2255 | expect "^27.5.1" 2256 | is-generator-fn "^2.0.0" 2257 | jest-each "^27.5.1" 2258 | jest-matcher-utils "^27.5.1" 2259 | jest-message-util "^27.5.1" 2260 | jest-runtime "^27.5.1" 2261 | jest-snapshot "^27.5.1" 2262 | jest-util "^27.5.1" 2263 | pretty-format "^27.5.1" 2264 | slash "^3.0.0" 2265 | stack-utils "^2.0.3" 2266 | throat "^6.0.1" 2267 | 2268 | jest-cli@^27.5.1: 2269 | version "27.5.1" 2270 | resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz" 2271 | integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== 2272 | dependencies: 2273 | "@jest/core" "^27.5.1" 2274 | "@jest/test-result" "^27.5.1" 2275 | "@jest/types" "^27.5.1" 2276 | chalk "^4.0.0" 2277 | exit "^0.1.2" 2278 | graceful-fs "^4.2.9" 2279 | import-local "^3.0.2" 2280 | jest-config "^27.5.1" 2281 | jest-util "^27.5.1" 2282 | jest-validate "^27.5.1" 2283 | prompts "^2.0.1" 2284 | yargs "^16.2.0" 2285 | 2286 | jest-config@^27.5.1: 2287 | version "27.5.1" 2288 | resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz" 2289 | integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== 2290 | dependencies: 2291 | "@babel/core" "^7.8.0" 2292 | "@jest/test-sequencer" "^27.5.1" 2293 | "@jest/types" "^27.5.1" 2294 | babel-jest "^27.5.1" 2295 | chalk "^4.0.0" 2296 | ci-info "^3.2.0" 2297 | deepmerge "^4.2.2" 2298 | glob "^7.1.1" 2299 | graceful-fs "^4.2.9" 2300 | jest-circus "^27.5.1" 2301 | jest-environment-jsdom "^27.5.1" 2302 | jest-environment-node "^27.5.1" 2303 | jest-get-type "^27.5.1" 2304 | jest-jasmine2 "^27.5.1" 2305 | jest-regex-util "^27.5.1" 2306 | jest-resolve "^27.5.1" 2307 | jest-runner "^27.5.1" 2308 | jest-util "^27.5.1" 2309 | jest-validate "^27.5.1" 2310 | micromatch "^4.0.4" 2311 | parse-json "^5.2.0" 2312 | pretty-format "^27.5.1" 2313 | slash "^3.0.0" 2314 | strip-json-comments "^3.1.1" 2315 | 2316 | jest-diff@^27.5.1: 2317 | version "27.5.1" 2318 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz" 2319 | integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== 2320 | dependencies: 2321 | chalk "^4.0.0" 2322 | diff-sequences "^27.5.1" 2323 | jest-get-type "^27.5.1" 2324 | pretty-format "^27.5.1" 2325 | 2326 | jest-docblock@^27.5.1: 2327 | version "27.5.1" 2328 | resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz" 2329 | integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== 2330 | dependencies: 2331 | detect-newline "^3.0.0" 2332 | 2333 | jest-each@^27.5.1: 2334 | version "27.5.1" 2335 | resolved "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz" 2336 | integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== 2337 | dependencies: 2338 | "@jest/types" "^27.5.1" 2339 | chalk "^4.0.0" 2340 | jest-get-type "^27.5.1" 2341 | jest-util "^27.5.1" 2342 | pretty-format "^27.5.1" 2343 | 2344 | jest-environment-jsdom@^27.5.1: 2345 | version "27.5.1" 2346 | resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz" 2347 | integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== 2348 | dependencies: 2349 | "@jest/environment" "^27.5.1" 2350 | "@jest/fake-timers" "^27.5.1" 2351 | "@jest/types" "^27.5.1" 2352 | "@types/node" "*" 2353 | jest-mock "^27.5.1" 2354 | jest-util "^27.5.1" 2355 | jsdom "^16.6.0" 2356 | 2357 | jest-environment-node@^27.5.1: 2358 | version "27.5.1" 2359 | resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz" 2360 | integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== 2361 | dependencies: 2362 | "@jest/environment" "^27.5.1" 2363 | "@jest/fake-timers" "^27.5.1" 2364 | "@jest/types" "^27.5.1" 2365 | "@types/node" "*" 2366 | jest-mock "^27.5.1" 2367 | jest-util "^27.5.1" 2368 | 2369 | jest-get-type@^27.5.1: 2370 | version "27.5.1" 2371 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz" 2372 | integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== 2373 | 2374 | jest-haste-map@^27.5.1: 2375 | version "27.5.1" 2376 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz" 2377 | integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== 2378 | dependencies: 2379 | "@jest/types" "^27.5.1" 2380 | "@types/graceful-fs" "^4.1.2" 2381 | "@types/node" "*" 2382 | anymatch "^3.0.3" 2383 | fb-watchman "^2.0.0" 2384 | graceful-fs "^4.2.9" 2385 | jest-regex-util "^27.5.1" 2386 | jest-serializer "^27.5.1" 2387 | jest-util "^27.5.1" 2388 | jest-worker "^27.5.1" 2389 | micromatch "^4.0.4" 2390 | walker "^1.0.7" 2391 | optionalDependencies: 2392 | fsevents "^2.3.2" 2393 | 2394 | jest-jasmine2@^27.5.1: 2395 | version "27.5.1" 2396 | resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz" 2397 | integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== 2398 | dependencies: 2399 | "@jest/environment" "^27.5.1" 2400 | "@jest/source-map" "^27.5.1" 2401 | "@jest/test-result" "^27.5.1" 2402 | "@jest/types" "^27.5.1" 2403 | "@types/node" "*" 2404 | chalk "^4.0.0" 2405 | co "^4.6.0" 2406 | expect "^27.5.1" 2407 | is-generator-fn "^2.0.0" 2408 | jest-each "^27.5.1" 2409 | jest-matcher-utils "^27.5.1" 2410 | jest-message-util "^27.5.1" 2411 | jest-runtime "^27.5.1" 2412 | jest-snapshot "^27.5.1" 2413 | jest-util "^27.5.1" 2414 | pretty-format "^27.5.1" 2415 | throat "^6.0.1" 2416 | 2417 | jest-leak-detector@^27.5.1: 2418 | version "27.5.1" 2419 | resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz" 2420 | integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== 2421 | dependencies: 2422 | jest-get-type "^27.5.1" 2423 | pretty-format "^27.5.1" 2424 | 2425 | jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1: 2426 | version "27.5.1" 2427 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz" 2428 | integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== 2429 | dependencies: 2430 | chalk "^4.0.0" 2431 | jest-diff "^27.5.1" 2432 | jest-get-type "^27.5.1" 2433 | pretty-format "^27.5.1" 2434 | 2435 | jest-message-util@^27.5.1: 2436 | version "27.5.1" 2437 | resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz" 2438 | integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== 2439 | dependencies: 2440 | "@babel/code-frame" "^7.12.13" 2441 | "@jest/types" "^27.5.1" 2442 | "@types/stack-utils" "^2.0.0" 2443 | chalk "^4.0.0" 2444 | graceful-fs "^4.2.9" 2445 | micromatch "^4.0.4" 2446 | pretty-format "^27.5.1" 2447 | slash "^3.0.0" 2448 | stack-utils "^2.0.3" 2449 | 2450 | jest-mock@^27.5.1: 2451 | version "27.5.1" 2452 | resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz" 2453 | integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== 2454 | dependencies: 2455 | "@jest/types" "^27.5.1" 2456 | "@types/node" "*" 2457 | 2458 | jest-pnp-resolver@^1.2.2: 2459 | version "1.2.2" 2460 | resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" 2461 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 2462 | 2463 | jest-regex-util@^27.5.1: 2464 | version "27.5.1" 2465 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz" 2466 | integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== 2467 | 2468 | jest-resolve-dependencies@^27.5.1: 2469 | version "27.5.1" 2470 | resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz" 2471 | integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== 2472 | dependencies: 2473 | "@jest/types" "^27.5.1" 2474 | jest-regex-util "^27.5.1" 2475 | jest-snapshot "^27.5.1" 2476 | 2477 | jest-resolve@^27.5.1: 2478 | version "27.5.1" 2479 | resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz" 2480 | integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== 2481 | dependencies: 2482 | "@jest/types" "^27.5.1" 2483 | chalk "^4.0.0" 2484 | graceful-fs "^4.2.9" 2485 | jest-haste-map "^27.5.1" 2486 | jest-pnp-resolver "^1.2.2" 2487 | jest-util "^27.5.1" 2488 | jest-validate "^27.5.1" 2489 | resolve "^1.20.0" 2490 | resolve.exports "^1.1.0" 2491 | slash "^3.0.0" 2492 | 2493 | jest-runner@^27.5.1: 2494 | version "27.5.1" 2495 | resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz" 2496 | integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== 2497 | dependencies: 2498 | "@jest/console" "^27.5.1" 2499 | "@jest/environment" "^27.5.1" 2500 | "@jest/test-result" "^27.5.1" 2501 | "@jest/transform" "^27.5.1" 2502 | "@jest/types" "^27.5.1" 2503 | "@types/node" "*" 2504 | chalk "^4.0.0" 2505 | emittery "^0.8.1" 2506 | graceful-fs "^4.2.9" 2507 | jest-docblock "^27.5.1" 2508 | jest-environment-jsdom "^27.5.1" 2509 | jest-environment-node "^27.5.1" 2510 | jest-haste-map "^27.5.1" 2511 | jest-leak-detector "^27.5.1" 2512 | jest-message-util "^27.5.1" 2513 | jest-resolve "^27.5.1" 2514 | jest-runtime "^27.5.1" 2515 | jest-util "^27.5.1" 2516 | jest-worker "^27.5.1" 2517 | source-map-support "^0.5.6" 2518 | throat "^6.0.1" 2519 | 2520 | jest-runtime@^27.5.1: 2521 | version "27.5.1" 2522 | resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz" 2523 | integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== 2524 | dependencies: 2525 | "@jest/environment" "^27.5.1" 2526 | "@jest/fake-timers" "^27.5.1" 2527 | "@jest/globals" "^27.5.1" 2528 | "@jest/source-map" "^27.5.1" 2529 | "@jest/test-result" "^27.5.1" 2530 | "@jest/transform" "^27.5.1" 2531 | "@jest/types" "^27.5.1" 2532 | chalk "^4.0.0" 2533 | cjs-module-lexer "^1.0.0" 2534 | collect-v8-coverage "^1.0.0" 2535 | execa "^5.0.0" 2536 | glob "^7.1.3" 2537 | graceful-fs "^4.2.9" 2538 | jest-haste-map "^27.5.1" 2539 | jest-message-util "^27.5.1" 2540 | jest-mock "^27.5.1" 2541 | jest-regex-util "^27.5.1" 2542 | jest-resolve "^27.5.1" 2543 | jest-snapshot "^27.5.1" 2544 | jest-util "^27.5.1" 2545 | slash "^3.0.0" 2546 | strip-bom "^4.0.0" 2547 | 2548 | jest-serializer@^27.5.1: 2549 | version "27.5.1" 2550 | resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz" 2551 | integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== 2552 | dependencies: 2553 | "@types/node" "*" 2554 | graceful-fs "^4.2.9" 2555 | 2556 | jest-snapshot@^27.5.1: 2557 | version "27.5.1" 2558 | resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz" 2559 | integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== 2560 | dependencies: 2561 | "@babel/core" "^7.7.2" 2562 | "@babel/generator" "^7.7.2" 2563 | "@babel/plugin-syntax-typescript" "^7.7.2" 2564 | "@babel/traverse" "^7.7.2" 2565 | "@babel/types" "^7.0.0" 2566 | "@jest/transform" "^27.5.1" 2567 | "@jest/types" "^27.5.1" 2568 | "@types/babel__traverse" "^7.0.4" 2569 | "@types/prettier" "^2.1.5" 2570 | babel-preset-current-node-syntax "^1.0.0" 2571 | chalk "^4.0.0" 2572 | expect "^27.5.1" 2573 | graceful-fs "^4.2.9" 2574 | jest-diff "^27.5.1" 2575 | jest-get-type "^27.5.1" 2576 | jest-haste-map "^27.5.1" 2577 | jest-matcher-utils "^27.5.1" 2578 | jest-message-util "^27.5.1" 2579 | jest-util "^27.5.1" 2580 | natural-compare "^1.4.0" 2581 | pretty-format "^27.5.1" 2582 | semver "^7.3.2" 2583 | 2584 | jest-util@^27.5.1: 2585 | version "27.5.1" 2586 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz" 2587 | integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== 2588 | dependencies: 2589 | "@jest/types" "^27.5.1" 2590 | "@types/node" "*" 2591 | chalk "^4.0.0" 2592 | ci-info "^3.2.0" 2593 | graceful-fs "^4.2.9" 2594 | picomatch "^2.2.3" 2595 | 2596 | jest-validate@^27.5.1: 2597 | version "27.5.1" 2598 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz" 2599 | integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== 2600 | dependencies: 2601 | "@jest/types" "^27.5.1" 2602 | camelcase "^6.2.0" 2603 | chalk "^4.0.0" 2604 | jest-get-type "^27.5.1" 2605 | leven "^3.1.0" 2606 | pretty-format "^27.5.1" 2607 | 2608 | jest-watcher@^27.5.1: 2609 | version "27.5.1" 2610 | resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz" 2611 | integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== 2612 | dependencies: 2613 | "@jest/test-result" "^27.5.1" 2614 | "@jest/types" "^27.5.1" 2615 | "@types/node" "*" 2616 | ansi-escapes "^4.2.1" 2617 | chalk "^4.0.0" 2618 | jest-util "^27.5.1" 2619 | string-length "^4.0.1" 2620 | 2621 | jest-worker@^27.5.1: 2622 | version "27.5.1" 2623 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" 2624 | integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== 2625 | dependencies: 2626 | "@types/node" "*" 2627 | merge-stream "^2.0.0" 2628 | supports-color "^8.0.0" 2629 | 2630 | jest@^27.5.1: 2631 | version "27.5.1" 2632 | resolved "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz" 2633 | integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== 2634 | dependencies: 2635 | "@jest/core" "^27.5.1" 2636 | import-local "^3.0.2" 2637 | jest-cli "^27.5.1" 2638 | 2639 | js-tokens@^4.0.0: 2640 | version "4.0.0" 2641 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 2642 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2643 | 2644 | js-yaml@^3.13.1: 2645 | version "3.14.1" 2646 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" 2647 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2648 | dependencies: 2649 | argparse "^1.0.7" 2650 | esprima "^4.0.0" 2651 | 2652 | jsdom@^16.6.0: 2653 | version "16.7.0" 2654 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz" 2655 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 2656 | dependencies: 2657 | abab "^2.0.5" 2658 | acorn "^8.2.4" 2659 | acorn-globals "^6.0.0" 2660 | cssom "^0.4.4" 2661 | cssstyle "^2.3.0" 2662 | data-urls "^2.0.0" 2663 | decimal.js "^10.2.1" 2664 | domexception "^2.0.1" 2665 | escodegen "^2.0.0" 2666 | form-data "^3.0.0" 2667 | html-encoding-sniffer "^2.0.1" 2668 | http-proxy-agent "^4.0.1" 2669 | https-proxy-agent "^5.0.0" 2670 | is-potential-custom-element-name "^1.0.1" 2671 | nwsapi "^2.2.0" 2672 | parse5 "6.0.1" 2673 | saxes "^5.0.1" 2674 | symbol-tree "^3.2.4" 2675 | tough-cookie "^4.0.0" 2676 | w3c-hr-time "^1.0.2" 2677 | w3c-xmlserializer "^2.0.0" 2678 | webidl-conversions "^6.1.0" 2679 | whatwg-encoding "^1.0.5" 2680 | whatwg-mimetype "^2.3.0" 2681 | whatwg-url "^8.5.0" 2682 | ws "^7.4.6" 2683 | xml-name-validator "^3.0.0" 2684 | 2685 | jsesc@^2.5.1: 2686 | version "2.5.2" 2687 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" 2688 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2689 | 2690 | jsesc@~0.5.0: 2691 | version "0.5.0" 2692 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" 2693 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2694 | 2695 | json-parse-even-better-errors@^2.3.0: 2696 | version "2.3.1" 2697 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 2698 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2699 | 2700 | json5@^2.1.2: 2701 | version "2.2.0" 2702 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz" 2703 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 2704 | dependencies: 2705 | minimist "^1.2.5" 2706 | 2707 | jsonfile@^6.0.1: 2708 | version "6.1.0" 2709 | resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" 2710 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 2711 | dependencies: 2712 | universalify "^2.0.0" 2713 | optionalDependencies: 2714 | graceful-fs "^4.1.6" 2715 | 2716 | kleur@^3.0.3: 2717 | version "3.0.3" 2718 | resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" 2719 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2720 | 2721 | leven@^3.1.0: 2722 | version "3.1.0" 2723 | resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" 2724 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2725 | 2726 | levn@~0.3.0: 2727 | version "0.3.0" 2728 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" 2729 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2730 | dependencies: 2731 | prelude-ls "~1.1.2" 2732 | type-check "~0.3.2" 2733 | 2734 | lines-and-columns@^1.1.6: 2735 | version "1.2.4" 2736 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 2737 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2738 | 2739 | locate-path@^5.0.0: 2740 | version "5.0.0" 2741 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 2742 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2743 | dependencies: 2744 | p-locate "^4.1.0" 2745 | 2746 | locate-path@^6.0.0: 2747 | version "6.0.0" 2748 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 2749 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 2750 | dependencies: 2751 | p-locate "^5.0.0" 2752 | 2753 | lodash.debounce@^4.0.8: 2754 | version "4.0.8" 2755 | resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" 2756 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2757 | 2758 | lodash@^4.7.0: 2759 | version "4.17.21" 2760 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 2761 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2762 | 2763 | lru-cache@^6.0.0: 2764 | version "6.0.0" 2765 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 2766 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2767 | dependencies: 2768 | yallist "^4.0.0" 2769 | 2770 | magic-string@^0.25.7: 2771 | version "0.25.9" 2772 | resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz" 2773 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== 2774 | dependencies: 2775 | sourcemap-codec "^1.4.8" 2776 | 2777 | make-dir@^3.0.0, make-dir@^3.0.2: 2778 | version "3.1.0" 2779 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" 2780 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2781 | dependencies: 2782 | semver "^6.0.0" 2783 | 2784 | makeerror@1.0.12: 2785 | version "1.0.12" 2786 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" 2787 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2788 | dependencies: 2789 | tmpl "1.0.5" 2790 | 2791 | merge-stream@^2.0.0: 2792 | version "2.0.0" 2793 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" 2794 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2795 | 2796 | micromatch@^4.0.4: 2797 | version "4.0.4" 2798 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" 2799 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2800 | dependencies: 2801 | braces "^3.0.1" 2802 | picomatch "^2.2.3" 2803 | 2804 | mime-db@1.51.0: 2805 | version "1.51.0" 2806 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz" 2807 | integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== 2808 | 2809 | mime-types@^2.1.12: 2810 | version "2.1.34" 2811 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz" 2812 | integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== 2813 | dependencies: 2814 | mime-db "1.51.0" 2815 | 2816 | mime@>=2.4.6: 2817 | version "3.0.0" 2818 | resolved "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz" 2819 | integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== 2820 | 2821 | mimic-fn@^2.1.0: 2822 | version "2.1.0" 2823 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" 2824 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2825 | 2826 | minimatch@^3.0.4: 2827 | version "3.1.2" 2828 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 2829 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2830 | dependencies: 2831 | brace-expansion "^1.1.7" 2832 | 2833 | minimist@^1.2.5: 2834 | version "1.2.5" 2835 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" 2836 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2837 | 2838 | ms@2.1.2: 2839 | version "2.1.2" 2840 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 2841 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2842 | 2843 | natural-compare@^1.4.0: 2844 | version "1.4.0" 2845 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 2846 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2847 | 2848 | node-int64@^0.4.0: 2849 | version "0.4.0" 2850 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" 2851 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2852 | 2853 | node-releases@^2.0.2: 2854 | version "2.0.2" 2855 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz" 2856 | integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg== 2857 | 2858 | normalize-path@^3.0.0: 2859 | version "3.0.0" 2860 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 2861 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2862 | 2863 | npm-run-path@^4.0.0, npm-run-path@^4.0.1: 2864 | version "4.0.1" 2865 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" 2866 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2867 | dependencies: 2868 | path-key "^3.0.0" 2869 | 2870 | nwsapi@^2.2.0: 2871 | version "2.2.0" 2872 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" 2873 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2874 | 2875 | object-keys@^1.0.12, object-keys@^1.1.1: 2876 | version "1.1.1" 2877 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 2878 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2879 | 2880 | object.assign@^4.1.0: 2881 | version "4.1.2" 2882 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" 2883 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2884 | dependencies: 2885 | call-bind "^1.0.0" 2886 | define-properties "^1.1.3" 2887 | has-symbols "^1.0.1" 2888 | object-keys "^1.1.1" 2889 | 2890 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2891 | version "1.4.0" 2892 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2893 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2894 | dependencies: 2895 | wrappy "1" 2896 | 2897 | onetime@^5.1.0, onetime@^5.1.2: 2898 | version "5.1.2" 2899 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" 2900 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2901 | dependencies: 2902 | mimic-fn "^2.1.0" 2903 | 2904 | opener@1: 2905 | version "1.5.2" 2906 | resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" 2907 | integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== 2908 | 2909 | optionator@^0.8.1: 2910 | version "0.8.3" 2911 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" 2912 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2913 | dependencies: 2914 | deep-is "~0.1.3" 2915 | fast-levenshtein "~2.0.6" 2916 | levn "~0.3.0" 2917 | prelude-ls "~1.1.2" 2918 | type-check "~0.3.2" 2919 | word-wrap "~1.2.3" 2920 | 2921 | p-limit@^2.2.0: 2922 | version "2.3.0" 2923 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2924 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2925 | dependencies: 2926 | p-try "^2.0.0" 2927 | 2928 | p-limit@^3.0.2: 2929 | version "3.1.0" 2930 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 2931 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2932 | dependencies: 2933 | yocto-queue "^0.1.0" 2934 | 2935 | p-locate@^4.1.0: 2936 | version "4.1.0" 2937 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 2938 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2939 | dependencies: 2940 | p-limit "^2.2.0" 2941 | 2942 | p-locate@^5.0.0: 2943 | version "5.0.0" 2944 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 2945 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2946 | dependencies: 2947 | p-limit "^3.0.2" 2948 | 2949 | p-try@^2.0.0: 2950 | version "2.2.0" 2951 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2952 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2953 | 2954 | parse-json@^5.2.0: 2955 | version "5.2.0" 2956 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2957 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2958 | dependencies: 2959 | "@babel/code-frame" "^7.0.0" 2960 | error-ex "^1.3.1" 2961 | json-parse-even-better-errors "^2.3.0" 2962 | lines-and-columns "^1.1.6" 2963 | 2964 | parse5@6.0.1: 2965 | version "6.0.1" 2966 | resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" 2967 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2968 | 2969 | path-exists@^4.0.0: 2970 | version "4.0.0" 2971 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2972 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2973 | 2974 | path-is-absolute@^1.0.0: 2975 | version "1.0.1" 2976 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2977 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2978 | 2979 | path-is-network-drive@^1.0.13: 2980 | version "1.0.13" 2981 | resolved "https://registry.npmjs.org/path-is-network-drive/-/path-is-network-drive-1.0.13.tgz" 2982 | integrity sha512-Hg74mRN6mmXV+gTm3INjFK40ncAmC/Lo4qoQaSZ+GT3hZzlKdWQSqAjqyPeW0SvObP2W073WyYEBWY9d3wOm3A== 2983 | dependencies: 2984 | tslib "^2.3.1" 2985 | 2986 | path-key@^3.0.0, path-key@^3.1.0: 2987 | version "3.1.1" 2988 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2989 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2990 | 2991 | path-parse@^1.0.7: 2992 | version "1.0.7" 2993 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2994 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2995 | 2996 | path-strip-sep@^1.0.10: 2997 | version "1.0.10" 2998 | resolved "https://registry.npmjs.org/path-strip-sep/-/path-strip-sep-1.0.10.tgz" 2999 | integrity sha512-JpCy+8LAJQQTO1bQsb/84s1g+/Stm3h39aOpPRBQ/paMUGVPPZChLTOTKHoaCkc/6sKuF7yVsnq5Pe1S6xQGcA== 3000 | dependencies: 3001 | tslib "^2.3.1" 3002 | 3003 | picocolors@^1.0.0: 3004 | version "1.0.0" 3005 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 3006 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 3007 | 3008 | picomatch@^2.0.4, picomatch@^2.2.2, picomatch@^2.2.3: 3009 | version "2.3.1" 3010 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 3011 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 3012 | 3013 | pirates@^4.0.4: 3014 | version "4.0.5" 3015 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz" 3016 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 3017 | 3018 | "pkg-dir@< 6 >= 5": 3019 | version "5.0.0" 3020 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz" 3021 | integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== 3022 | dependencies: 3023 | find-up "^5.0.0" 3024 | 3025 | pkg-dir@^4.1.0, pkg-dir@^4.2.0: 3026 | version "4.2.0" 3027 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" 3028 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 3029 | dependencies: 3030 | find-up "^4.0.0" 3031 | 3032 | prelude-ls@~1.1.2: 3033 | version "1.1.2" 3034 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" 3035 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 3036 | 3037 | pretty-format@^27.0.0, pretty-format@^27.5.1: 3038 | version "27.5.1" 3039 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz" 3040 | integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== 3041 | dependencies: 3042 | ansi-regex "^5.0.1" 3043 | ansi-styles "^5.0.0" 3044 | react-is "^17.0.1" 3045 | 3046 | prompts@^2.0.1: 3047 | version "2.4.2" 3048 | resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" 3049 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 3050 | dependencies: 3051 | kleur "^3.0.3" 3052 | sisteransi "^1.0.5" 3053 | 3054 | psl@^1.1.33: 3055 | version "1.8.0" 3056 | resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" 3057 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 3058 | 3059 | pump@^3.0.0: 3060 | version "3.0.0" 3061 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" 3062 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 3063 | dependencies: 3064 | end-of-stream "^1.1.0" 3065 | once "^1.3.1" 3066 | 3067 | punycode@^2.1.1: 3068 | version "2.1.1" 3069 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" 3070 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 3071 | 3072 | react-is@^17.0.1: 3073 | version "17.0.2" 3074 | resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" 3075 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 3076 | 3077 | regenerate-unicode-properties@^10.0.1: 3078 | version "10.0.1" 3079 | resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz" 3080 | integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw== 3081 | dependencies: 3082 | regenerate "^1.4.2" 3083 | 3084 | regenerate@^1.4.2: 3085 | version "1.4.2" 3086 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" 3087 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 3088 | 3089 | regenerator-runtime@^0.13.4: 3090 | version "0.13.9" 3091 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" 3092 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 3093 | 3094 | regenerator-transform@^0.14.2: 3095 | version "0.14.5" 3096 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" 3097 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 3098 | dependencies: 3099 | "@babel/runtime" "^7.8.4" 3100 | 3101 | regexpu-core@^5.0.1: 3102 | version "5.0.1" 3103 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz" 3104 | integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw== 3105 | dependencies: 3106 | regenerate "^1.4.2" 3107 | regenerate-unicode-properties "^10.0.1" 3108 | regjsgen "^0.6.0" 3109 | regjsparser "^0.8.2" 3110 | unicode-match-property-ecmascript "^2.0.0" 3111 | unicode-match-property-value-ecmascript "^2.0.0" 3112 | 3113 | regjsgen@^0.6.0: 3114 | version "0.6.0" 3115 | resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz" 3116 | integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA== 3117 | 3118 | regjsparser@^0.8.2: 3119 | version "0.8.4" 3120 | resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz" 3121 | integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA== 3122 | dependencies: 3123 | jsesc "~0.5.0" 3124 | 3125 | require-directory@^2.1.1: 3126 | version "2.1.1" 3127 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 3128 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 3129 | 3130 | resolve-cwd@^3.0.0: 3131 | version "3.0.0" 3132 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" 3133 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 3134 | dependencies: 3135 | resolve-from "^5.0.0" 3136 | 3137 | resolve-from@^5.0.0: 3138 | version "5.0.0" 3139 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" 3140 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 3141 | 3142 | resolve.exports@^1.1.0: 3143 | version "1.1.0" 3144 | resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz" 3145 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== 3146 | 3147 | resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0: 3148 | version "1.22.0" 3149 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" 3150 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 3151 | dependencies: 3152 | is-core-module "^2.8.1" 3153 | path-parse "^1.0.7" 3154 | supports-preserve-symlinks-flag "^1.0.0" 3155 | 3156 | rimraf@^3.0.0: 3157 | version "3.0.2" 3158 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 3159 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 3160 | dependencies: 3161 | glob "^7.1.3" 3162 | 3163 | rollup-plugin-serve@^1.1.0: 3164 | version "1.1.0" 3165 | resolved "https://registry.npmjs.org/rollup-plugin-serve/-/rollup-plugin-serve-1.1.0.tgz" 3166 | integrity sha512-pYkSsuA0/psKqhhictkJw1c2klya5b+LlCvipWqI9OE1aG2M97mRumZCbBlry5CMEOzYBBgSDgd1694sNbmyIw== 3167 | dependencies: 3168 | mime ">=2.4.6" 3169 | opener "1" 3170 | 3171 | rollup-plugin-typescript2@^0.31.2: 3172 | version "0.31.2" 3173 | resolved "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.31.2.tgz" 3174 | integrity sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q== 3175 | dependencies: 3176 | "@rollup/pluginutils" "^4.1.2" 3177 | "@yarn-tool/resolve-package" "^1.0.40" 3178 | find-cache-dir "^3.3.2" 3179 | fs-extra "^10.0.0" 3180 | resolve "^1.20.0" 3181 | tslib "^2.3.1" 3182 | 3183 | rollup@^2.69.2: 3184 | version "2.69.2" 3185 | resolved "https://registry.npmjs.org/rollup/-/rollup-2.69.2.tgz" 3186 | integrity sha512-KghktpWg3Wd+nYCsx3Griidm2/CKIJYG2yyaaKspo0TXSoGdW+0duwzKl4wWIu62oN3mFg3zCDbwVRPwuNPPlA== 3187 | optionalDependencies: 3188 | fsevents "~2.3.2" 3189 | 3190 | safe-buffer@~5.1.1: 3191 | version "5.1.2" 3192 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 3193 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3194 | 3195 | "safer-buffer@>= 2.1.2 < 3": 3196 | version "2.1.2" 3197 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" 3198 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3199 | 3200 | saxes@^5.0.1: 3201 | version "5.0.1" 3202 | resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" 3203 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 3204 | dependencies: 3205 | xmlchars "^2.2.0" 3206 | 3207 | semver@7.0.0: 3208 | version "7.0.0" 3209 | resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" 3210 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 3211 | 3212 | semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 3213 | version "6.3.0" 3214 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 3215 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3216 | 3217 | semver@^7.3.2: 3218 | version "7.3.5" 3219 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" 3220 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 3221 | dependencies: 3222 | lru-cache "^6.0.0" 3223 | 3224 | shebang-command@^2.0.0: 3225 | version "2.0.0" 3226 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 3227 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3228 | dependencies: 3229 | shebang-regex "^3.0.0" 3230 | 3231 | shebang-regex@^3.0.0: 3232 | version "3.0.0" 3233 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 3234 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3235 | 3236 | signal-exit@^3.0.2, signal-exit@^3.0.3: 3237 | version "3.0.7" 3238 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" 3239 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 3240 | 3241 | sisteransi@^1.0.5: 3242 | version "1.0.5" 3243 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" 3244 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 3245 | 3246 | slash@^3.0.0: 3247 | version "3.0.0" 3248 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 3249 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3250 | 3251 | source-map-support@^0.5.6: 3252 | version "0.5.21" 3253 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" 3254 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 3255 | dependencies: 3256 | buffer-from "^1.0.0" 3257 | source-map "^0.6.0" 3258 | 3259 | source-map@^0.5.0: 3260 | version "0.5.7" 3261 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" 3262 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3263 | 3264 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3265 | version "0.6.1" 3266 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 3267 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3268 | 3269 | source-map@^0.7.3: 3270 | version "0.7.3" 3271 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" 3272 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3273 | 3274 | sourcemap-codec@^1.4.8: 3275 | version "1.4.8" 3276 | resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" 3277 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 3278 | 3279 | sprintf-js@~1.0.2: 3280 | version "1.0.3" 3281 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 3282 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3283 | 3284 | stack-utils@^2.0.3: 3285 | version "2.0.5" 3286 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz" 3287 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 3288 | dependencies: 3289 | escape-string-regexp "^2.0.0" 3290 | 3291 | string-length@^4.0.1: 3292 | version "4.0.2" 3293 | resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" 3294 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 3295 | dependencies: 3296 | char-regex "^1.0.2" 3297 | strip-ansi "^6.0.0" 3298 | 3299 | string-width@^4.1.0, string-width@^4.2.0: 3300 | version "4.2.3" 3301 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 3302 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3303 | dependencies: 3304 | emoji-regex "^8.0.0" 3305 | is-fullwidth-code-point "^3.0.0" 3306 | strip-ansi "^6.0.1" 3307 | 3308 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3309 | version "6.0.1" 3310 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 3311 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3312 | dependencies: 3313 | ansi-regex "^5.0.1" 3314 | 3315 | strip-bom@^4.0.0: 3316 | version "4.0.0" 3317 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" 3318 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3319 | 3320 | strip-final-newline@^2.0.0: 3321 | version "2.0.0" 3322 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" 3323 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3324 | 3325 | strip-json-comments@^3.1.1: 3326 | version "3.1.1" 3327 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 3328 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3329 | 3330 | supports-color@^5.3.0: 3331 | version "5.5.0" 3332 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 3333 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3334 | dependencies: 3335 | has-flag "^3.0.0" 3336 | 3337 | supports-color@^7.0.0, supports-color@^7.1.0: 3338 | version "7.2.0" 3339 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 3340 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3341 | dependencies: 3342 | has-flag "^4.0.0" 3343 | 3344 | supports-color@^8.0.0: 3345 | version "8.1.1" 3346 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" 3347 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 3348 | dependencies: 3349 | has-flag "^4.0.0" 3350 | 3351 | supports-hyperlinks@^2.0.0: 3352 | version "2.2.0" 3353 | resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" 3354 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 3355 | dependencies: 3356 | has-flag "^4.0.0" 3357 | supports-color "^7.0.0" 3358 | 3359 | supports-preserve-symlinks-flag@^1.0.0: 3360 | version "1.0.0" 3361 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 3362 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3363 | 3364 | symbol-tree@^3.2.4: 3365 | version "3.2.4" 3366 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" 3367 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 3368 | 3369 | terminal-link@^2.0.0: 3370 | version "2.1.1" 3371 | resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" 3372 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 3373 | dependencies: 3374 | ansi-escapes "^4.2.1" 3375 | supports-hyperlinks "^2.0.0" 3376 | 3377 | test-exclude@^6.0.0: 3378 | version "6.0.0" 3379 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" 3380 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3381 | dependencies: 3382 | "@istanbuljs/schema" "^0.1.2" 3383 | glob "^7.1.4" 3384 | minimatch "^3.0.4" 3385 | 3386 | throat@^6.0.1: 3387 | version "6.0.1" 3388 | resolved "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz" 3389 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 3390 | 3391 | tmpl@1.0.5: 3392 | version "1.0.5" 3393 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" 3394 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3395 | 3396 | to-fast-properties@^2.0.0: 3397 | version "2.0.0" 3398 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 3399 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3400 | 3401 | to-regex-range@^5.0.1: 3402 | version "5.0.1" 3403 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 3404 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3405 | dependencies: 3406 | is-number "^7.0.0" 3407 | 3408 | tough-cookie@^4.0.0: 3409 | version "4.0.0" 3410 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz" 3411 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 3412 | dependencies: 3413 | psl "^1.1.33" 3414 | punycode "^2.1.1" 3415 | universalify "^0.1.2" 3416 | 3417 | tr46@^2.1.0: 3418 | version "2.1.0" 3419 | resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz" 3420 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 3421 | dependencies: 3422 | punycode "^2.1.1" 3423 | 3424 | tslib@^2.3.1: 3425 | version "2.3.1" 3426 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz" 3427 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 3428 | 3429 | type-check@~0.3.2: 3430 | version "0.3.2" 3431 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" 3432 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3433 | dependencies: 3434 | prelude-ls "~1.1.2" 3435 | 3436 | type-detect@4.0.8: 3437 | version "4.0.8" 3438 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" 3439 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3440 | 3441 | type-fest@^0.21.3: 3442 | version "0.21.3" 3443 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" 3444 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3445 | 3446 | typedarray-to-buffer@^3.1.5: 3447 | version "3.1.5" 3448 | resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" 3449 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3450 | dependencies: 3451 | is-typedarray "^1.0.0" 3452 | 3453 | typescript@^4.6.2: 3454 | version "4.6.2" 3455 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz" 3456 | integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg== 3457 | 3458 | unicode-canonical-property-names-ecmascript@^2.0.0: 3459 | version "2.0.0" 3460 | resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" 3461 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== 3462 | 3463 | unicode-match-property-ecmascript@^2.0.0: 3464 | version "2.0.0" 3465 | resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" 3466 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== 3467 | dependencies: 3468 | unicode-canonical-property-names-ecmascript "^2.0.0" 3469 | unicode-property-aliases-ecmascript "^2.0.0" 3470 | 3471 | unicode-match-property-value-ecmascript@^2.0.0: 3472 | version "2.0.0" 3473 | resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" 3474 | integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== 3475 | 3476 | unicode-property-aliases-ecmascript@^2.0.0: 3477 | version "2.0.0" 3478 | resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" 3479 | integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== 3480 | 3481 | universalify@^0.1.2: 3482 | version "0.1.2" 3483 | resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" 3484 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3485 | 3486 | universalify@^2.0.0: 3487 | version "2.0.0" 3488 | resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" 3489 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 3490 | 3491 | upath2@^3.1.12: 3492 | version "3.1.12" 3493 | resolved "https://registry.npmjs.org/upath2/-/upath2-3.1.12.tgz" 3494 | integrity sha512-yC3eZeCyCXFWjy7Nu4pgjLhXNYjuzuUmJiRgSSw6TJp8Emc+E4951HGPJf+bldFC5SL7oBLeNbtm1fGzXn2gxw== 3495 | dependencies: 3496 | path-is-network-drive "^1.0.13" 3497 | path-strip-sep "^1.0.10" 3498 | tslib "^2.3.1" 3499 | 3500 | v8-to-istanbul@^8.1.0: 3501 | version "8.1.1" 3502 | resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz" 3503 | integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== 3504 | dependencies: 3505 | "@types/istanbul-lib-coverage" "^2.0.1" 3506 | convert-source-map "^1.6.0" 3507 | source-map "^0.7.3" 3508 | 3509 | w3c-hr-time@^1.0.2: 3510 | version "1.0.2" 3511 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" 3512 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 3513 | dependencies: 3514 | browser-process-hrtime "^1.0.0" 3515 | 3516 | w3c-xmlserializer@^2.0.0: 3517 | version "2.0.0" 3518 | resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" 3519 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 3520 | dependencies: 3521 | xml-name-validator "^3.0.0" 3522 | 3523 | walker@^1.0.7: 3524 | version "1.0.8" 3525 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" 3526 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 3527 | dependencies: 3528 | makeerror "1.0.12" 3529 | 3530 | webidl-conversions@^5.0.0: 3531 | version "5.0.0" 3532 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" 3533 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 3534 | 3535 | webidl-conversions@^6.1.0: 3536 | version "6.1.0" 3537 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" 3538 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 3539 | 3540 | whatwg-encoding@^1.0.5: 3541 | version "1.0.5" 3542 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" 3543 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 3544 | dependencies: 3545 | iconv-lite "0.4.24" 3546 | 3547 | whatwg-mimetype@^2.3.0: 3548 | version "2.3.0" 3549 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" 3550 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 3551 | 3552 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3553 | version "8.7.0" 3554 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz" 3555 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 3556 | dependencies: 3557 | lodash "^4.7.0" 3558 | tr46 "^2.1.0" 3559 | webidl-conversions "^6.1.0" 3560 | 3561 | which@^2.0.1: 3562 | version "2.0.2" 3563 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 3564 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3565 | dependencies: 3566 | isexe "^2.0.0" 3567 | 3568 | word-wrap@~1.2.3: 3569 | version "1.2.3" 3570 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 3571 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3572 | 3573 | wrap-ansi@^7.0.0: 3574 | version "7.0.0" 3575 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" 3576 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 3577 | dependencies: 3578 | ansi-styles "^4.0.0" 3579 | string-width "^4.1.0" 3580 | strip-ansi "^6.0.0" 3581 | 3582 | wrappy@1: 3583 | version "1.0.2" 3584 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 3585 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3586 | 3587 | write-file-atomic@^3.0.0: 3588 | version "3.0.3" 3589 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" 3590 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3591 | dependencies: 3592 | imurmurhash "^0.1.4" 3593 | is-typedarray "^1.0.0" 3594 | signal-exit "^3.0.2" 3595 | typedarray-to-buffer "^3.1.5" 3596 | 3597 | ws@^7.4.6: 3598 | version "7.5.7" 3599 | resolved "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz" 3600 | integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== 3601 | 3602 | xml-name-validator@^3.0.0: 3603 | version "3.0.0" 3604 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" 3605 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 3606 | 3607 | xmlchars@^2.2.0: 3608 | version "2.2.0" 3609 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" 3610 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 3611 | 3612 | y18n@^5.0.5: 3613 | version "5.0.8" 3614 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" 3615 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 3616 | 3617 | yallist@^4.0.0: 3618 | version "4.0.0" 3619 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 3620 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3621 | 3622 | yargs-parser@^20.2.2: 3623 | version "20.2.9" 3624 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" 3625 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 3626 | 3627 | yargs@^16.2.0: 3628 | version "16.2.0" 3629 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" 3630 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 3631 | dependencies: 3632 | cliui "^7.0.2" 3633 | escalade "^3.1.1" 3634 | get-caller-file "^2.0.5" 3635 | require-directory "^2.1.1" 3636 | string-width "^4.2.0" 3637 | y18n "^5.0.5" 3638 | yargs-parser "^20.2.2" 3639 | 3640 | yocto-queue@^0.1.0: 3641 | version "0.1.0" 3642 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 3643 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 3644 | --------------------------------------------------------------------------------