├── .gitignore ├── .prettierignore ├── README.md ├── babel.config.js ├── example └── helloworld │ ├── App.js │ ├── index.html │ └── main.js ├── package.json ├── prettier.config.js ├── rollup.config.js ├── src ├── index.ts ├── reactivity │ ├── baseHandlers.ts │ ├── computed.ts │ ├── effect.ts │ ├── index.ts │ ├── reactive.ts │ ├── ref.ts │ └── tests │ │ ├── computed.spec.ts │ │ ├── effect.spec.ts │ │ ├── reactive.spec.ts │ │ ├── readonly.spec.ts │ │ ├── ref.spec.ts │ │ └── shallowReadonly.spec.ts ├── runtime-core │ ├── component.ts │ ├── componentPublicInstance.ts │ ├── createApp.ts │ ├── h.ts │ ├── index.ts │ ├── renderer.ts │ └── vnode.ts └── shared │ └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | /lib 5 | 6 | 7 | # local env files 8 | .env.local 9 | .env.*.local 10 | 11 | # Log files 12 | npm-debug.log* 13 | yarn-debug.log* 14 | yarn-error.log* 15 | pnpm-debug.log* 16 | 17 | # Editor directories and files 18 | .idea 19 | .vscode 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .local 2 | .output.js 3 | .husky 4 | .vscode 5 | .idea 6 | jsconfig.json 7 | tsconfig.json 8 | 9 | **/*.svg 10 | **/*.sh 11 | 12 | /public/** 13 | /node_modules/** 14 | /dist/** 15 | /docs/** 16 | /bin/** 17 | /src/lib/** 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 项目介绍 2 | 3 | 基于[mini-vue](https://github.com/cuixiaorui/mini-vue)开源项目学习,实现最简 vue3 模型,用于深入学习 vue3 4 | 5 | # 项目初始化 6 | 7 | 1. `git init` 8 | 9 | 2. `yarn init -y` 10 | 11 | 3. 初始化 ts 环境: 12 | 13 | `yarn add typescript --dev` 14 | 15 | `npx tsc --init` 初始化 tsconfig.json 16 | 17 | 4. 解决使用 jest 方法报错 18 | 19 | `yarn add jest @types/jest --dev` 20 | 21 | tsconfig 配置文件中添加对应的类型 22 | 23 | ```javascript 24 | // tsconfig.json 25 | { 26 | "types": ["jest"], 27 | } 28 | ``` 29 | 30 | 5. 添加测试命令 31 | 32 | ```javascript 33 | // package.json 34 | { 35 | "scripts": { 36 | "test": "jest", 37 | }, 38 | } 39 | ``` 40 | 41 | `npm run test` 测试编写的第一个测试用例是否可以正常执行 42 | 43 | 6. 关闭参数不写类型时 ts 的隐藏 any 类型错误 44 | 45 | ```javascript 46 | // tsconfig.json 47 | { 48 | "noImplicitAny": false, 49 | } 50 | ``` 51 | 52 | 7. jest 环境 53 | 54 | jest 运行时是使用的 nodejs 环境,默认的模块规范是 commonjs 规范,使用 esm 规范的代码会报错,需要转换一下 55 | 56 | 使用 babel 转换。 57 | 58 | `yarn add babel-jest @babel/core @babel/preset-env --dev` 59 | 60 | 创建 babel.config.js 61 | 62 | ```javascript 63 | // babel.config.js 64 | module.exports = { 65 | // 已当前node版本为基础进行转换 66 | presets: [['@babel/preset-env', { targets: { node: 'current' } }]], 67 | }; 68 | ``` 69 | 70 | 让 babel 支持 typescript 71 | 72 | `yarn add @babel/preset-typescript --dev` 73 | 74 | ```javascript 75 | // babel.config.js 76 | module.exports = { 77 | presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-typescript'], 78 | }; 79 | ``` 80 | 81 | 8. 添加 es 语法支持在 ts 中 82 | 83 | ```javascript 84 | { 85 | // 将代码转成es6,输出成较低的es,在调试时降级代码太多不方便查看 86 | "target": "es6", 87 | // 制定目标运行时的环境 88 | "lib": ["DOM", "ESNext"] 89 | } 90 | ``` 91 | 92 | TDD: 先写测试代码,然后让测试用例通过,最后在重构优化代码。 93 | 94 | rollup 打包: 95 | 96 | `"build": "rollup -c rollup.config.js"` 97 | 98 | `-c` 指定其配置文件 99 | 100 | package.json 101 | 102 | ```javascript 103 | { 104 | "name": "mini-vue", 105 | "version": "1.0.0", 106 | // cjs -> main.js 107 | // esm -> module 108 | "main": "lib/guide-mini-vue.cjs.js", 109 | "module": "lib/guide-mini-vue.esm.js", 110 | } 111 | ``` 112 | 113 | 扩展: 114 | 115 | ```javascript 116 | /** 117 | * dom的节点类 118 | * 119 | * 1.document -> Document 节点 nodeType = 9 120 | * -> HTMLDocument 121 | * -> Document 122 | * -> Node 123 | * -> EventTarget 124 | * -> Object 125 | * 126 | * 2.document.documentElement -> html 127 | * -> HTMLHtmlElement 128 | * -> HTMLElement 129 | * -> Element 130 | * -> Node 131 | * -> EventTarget 132 | * -> Object 133 | * 134 | * 3.document.body 135 | * -> HTMLBodyElement 136 | * -> HTMLElement 137 | * -> Element 138 | * -> Node 139 | * -> EventTarget 140 | * -> Object 141 | * 142 | * 4.div 143 | * -> HTMLDivElement 144 | * -> HTMLElement 145 | * -> Element 146 | * -> Node 147 | * -> EventTarget 148 | * -> Object 149 | * 150 | * 5.span 151 | * -> HTMLSpanElement 152 | * -> HTMLElement 153 | * -> Element 154 | * -> Node 155 | * -> EventTarget 156 | * -> Object 157 | * 158 | * 6.img 159 | * -> HTMLImageElement 160 | * -> HTMLElement 161 | * -> Element 162 | * -> Node 163 | * -> EventTarget 164 | * -> Object 165 | * 166 | * ------------------- 以上为元素节点 nodeType = 1 167 | * 168 | * 7.注释节点 Comment -> document.createComment('xxx') -> nodeType = 8 169 | * -> Comment 170 | * -> CharacterData 171 | * -> Node 172 | * -> EventTarget 173 | * -> Object 174 | * 175 | * 8.文本节点 -> Element或者Attr中实际的文字 176 | * document.createTextNode('xxx') -> nodeType = 3 177 | * 178 | * -> Text 179 | * -> CharacterData 180 | * -> Node 181 | * -> EventTarget 182 | * -> Object 183 | */ 184 | ``` 185 | 186 | 删除提交到的 git 的 lib 文件夹 187 | 188 | `git rm -r --cached lib` 189 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 已当前node版本为基础进行转换 3 | presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-typescript'], 4 | }; 5 | -------------------------------------------------------------------------------- /example/helloworld/App.js: -------------------------------------------------------------------------------- 1 | import { h } from '../../lib/guide-mini-vue.esm.js'; 2 | 3 | window.self = null; 4 | 5 | export const App = { 6 | setup() { 7 | return { 8 | msg: 'mini-vue', 9 | msg2: '哈哈', 10 | }; 11 | }, 12 | render() { 13 | window.self = this; 14 | // setupState 15 | // this.$el api -> 返回根节点 16 | return h( 17 | 'h1', 18 | { 19 | id: 'root', 20 | class: ['a1', 'a2'], 21 | }, 22 | `hei ~~~ ${this.msg} ${this.msg2}`, 23 | ); 24 | 25 | // return h( 26 | // 'h1', 27 | // { 28 | // id: 'root', 29 | // class: ['a1', 'a2'], 30 | // }, 31 | // [ 32 | // h( 33 | // 'p', 34 | // { 35 | // class: 'p-box', 36 | // }, 37 | // ' -- ppp -- ', 38 | // ), 39 | // h( 40 | // 'span', 41 | // { 42 | // class: 'span-box', 43 | // }, 44 | // ' -- span -- ', 45 | // ), 46 | // h( 47 | // 'style', 48 | // {}, 49 | // ` 50 | // body { 51 | // background-color: pink; 52 | // } 53 | // `, 54 | // ), 55 | // ], 56 | // ); 57 | }, 58 | }; 59 | -------------------------------------------------------------------------------- /example/helloworld/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | hello world 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /example/helloworld/main.js: -------------------------------------------------------------------------------- 1 | import { App } from './App.js'; 2 | import { createApp } from '../../lib/guide-mini-vue.esm.js'; 3 | 4 | const app = createApp(App); 5 | const rootContainer = document.querySelector('#app'); 6 | app.mount(rootContainer); 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mini-vue", 3 | "version": "1.0.0", 4 | "main": "lib/guide-mini-vue.cjs.js", 5 | "module": "lib/guide-mini-vue.esm.js", 6 | "repository": "https://github.com/core-admin/mini-vue.git", 7 | "author": "xuke ", 8 | "license": "MIT", 9 | "scripts": { 10 | "test": "jest", 11 | "build": "rollup -c rollup.config.js" 12 | }, 13 | "devDependencies": { 14 | "@babel/core": "^7.16.5", 15 | "@babel/preset-env": "^7.16.5", 16 | "@babel/preset-typescript": "^7.16.5", 17 | "@rollup/plugin-typescript": "^8.3.0", 18 | "@types/jest": "^27.0.3", 19 | "babel-jest": "^27.4.5", 20 | "jest": "^27.4.5", 21 | "rollup": "^2.67.2", 22 | "tslib": "^2.3.1", 23 | "typescript": "^4.5.4" 24 | } 25 | } -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 100, 3 | tabWidth: 2, 4 | useTabs: false, 5 | semi: true, 6 | singleQuote: true, 7 | quoteProps: 'as-needed', 8 | jsxSingleQuote: false, 9 | trailingComma: 'all', 10 | bracketSpacing: true, 11 | jsxBracketSameLine: false, 12 | arrowParens: 'avoid', 13 | rangeStart: 0, 14 | rangeEnd: Infinity, 15 | requirePragma: false, 16 | insertPragma: false, 17 | proseWrap: 'never', 18 | htmlWhitespaceSensitivity: 'strict', 19 | vueIndentScriptAndStyle: false, 20 | endOfLine: 'auto', 21 | embeddedLanguageFormatting: 'auto', 22 | }; 23 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | // rollup 天然支持 esm 2 | // rollup 常用与库的打包 3 | import { main, module } from './package.json' 4 | 5 | import typescript from '@rollup/plugin-typescript'; 6 | 7 | export default { 8 | // 入口 9 | input: './src/index.ts', 10 | // 出口 11 | output: [ 12 | /** 13 | * 1. cjs -> commonjs 14 | * 2. esm -> esModule 15 | */ 16 | { 17 | // 打包成什么模式下的 18 | format: 'cjs', 19 | file: main, // lib/guide-mini-vue.cjs.js 20 | }, 21 | { 22 | format: 'es', 23 | file: module, // lib/guide-mini-vue.esm.js 24 | }, 25 | ], 26 | // 项目使用ts编写的 rollup不理解ts,需要使用编译 27 | plugins: [typescript()], 28 | }; 29 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | // mini-vue 的出口 2 | 3 | export * from './runtime-core'; 4 | -------------------------------------------------------------------------------- /src/reactivity/baseHandlers.ts: -------------------------------------------------------------------------------- 1 | import { track, trigger } from './effect'; 2 | import { ReactiveFlags } from './reactive'; 3 | import { reactive, readonly } from './reactive'; 4 | import { isObject, extend } from '../shared'; 5 | 6 | function createGetter(isReadonly = false, isShallow = false) { 7 | return function get(target, key) { 8 | // 处理isReactive调用 9 | if (key === ReactiveFlags.IS_REACTIVE) { 10 | return !isReadonly; 11 | } 12 | 13 | if (key === ReactiveFlags.IS_READONLY) { 14 | return isReadonly; 15 | } 16 | 17 | const res = Reflect.get(target, key); 18 | 19 | // shallow 浅代理 20 | if (isShallow) { 21 | return res; 22 | } 23 | 24 | // 看看 res 是不是 object 25 | if (isObject(res) || Array.isArray(res)) { 26 | return isReadonly ? readonly(res) : reactive(res); 27 | } 28 | 29 | if (!isReadonly) { 30 | // 依赖收集 31 | track(target, key); 32 | } 33 | 34 | return res; 35 | }; 36 | } 37 | 38 | // 此函数虽然没有抽离的必要,但是从程序设计上来说 这种是保持程序的一致性 39 | function createSetter() { 40 | return function set(target, key, value) { 41 | const res = Reflect.set(target, key, value); 42 | 43 | // 触发依赖 44 | trigger(target, key); 45 | 46 | return res; 47 | }; 48 | } 49 | 50 | const get = createGetter(); 51 | const set = createSetter(); 52 | const readonlyGet = createGetter(true); 53 | const shallowReadonlyGet = createGetter(true, true); 54 | 55 | // 当调用reactive时,没有必要每次都重新创建一次 get 与 set 56 | export const mutableHandles = { 57 | get, 58 | set, 59 | }; 60 | 61 | export const readonlyHandles = { 62 | get: readonlyGet, 63 | set(target, key) { 64 | console.warn(`key: ${key} 修改失败,因为 target 是不可变的`, target); 65 | return true; 66 | }, 67 | }; 68 | 69 | // shallowReadonlyHandles的set与readonlyHandles的set一致 70 | export const shallowReadonlyHandles = extend({}, readonlyHandles, { 71 | get: shallowReadonlyGet, 72 | }); 73 | -------------------------------------------------------------------------------- /src/reactivity/computed.ts: -------------------------------------------------------------------------------- 1 | import { ReactiveEffect } from './effect'; 2 | 3 | class ComputedRefImpl { 4 | // private _getter: any; 5 | private _dirty = true; 6 | private _value: any; 7 | private _effect: any; 8 | constructor(getter) { 9 | // this._getter = getter; 10 | this._effect = new ReactiveEffect(getter, () => { 11 | if (!this._dirty) { 12 | this._dirty = true; 13 | } 14 | }); 15 | } 16 | 17 | get value() { 18 | // 多次调用get时 _getter不在被重复执行 19 | // if (this._dirty) { 20 | // this._dirty = false; 21 | // this._value = this._getter(); 22 | // } 23 | 24 | if (this._dirty) { 25 | this._dirty = false; 26 | this._value = this._effect.run(); 27 | } 28 | return this._value; 29 | 30 | // 当依赖的响应式对象的值发生改变的时候 _dirty -> true 31 | } 32 | } 33 | 34 | export function computed(getter) { 35 | return new ComputedRefImpl(getter); 36 | } 37 | -------------------------------------------------------------------------------- /src/reactivity/effect.ts: -------------------------------------------------------------------------------- 1 | import { extend } from '../shared'; 2 | 3 | let activeEffect; 4 | let shouldTrack; 5 | 6 | type Fn = () => T; 7 | 8 | export class ReactiveEffect { 9 | // effect 的回调函数 由用户传递进来 10 | private _fn: Fn; 11 | 12 | // deps = new Set(); 13 | deps: any[] = []; 14 | active = true; 15 | onStop?: () => void; 16 | 17 | constructor(_fn: Fn, public scheduler?: Fn) { 18 | this._fn = _fn; 19 | } 20 | 21 | run() { 22 | // active = false 执行了stop方法 23 | if (!this.active) { 24 | // 当stop后 直接调用runner让fn执行,也不会打开shouldTrack,重新收集依赖 只是让fn执行而已 25 | return this._fn(); 26 | } 27 | 28 | shouldTrack = true; 29 | 30 | // 当存在多个effect函数调用时,activeEffect的值重新赋值为this,可以防止在effect回调函数多次执行track收集的函数始终是正确的 31 | activeEffect = this; 32 | const result = this._fn(); 33 | shouldTrack = false; 34 | return result; 35 | } 36 | 37 | stop() { 38 | // 多次调用stop时只清空一次即可 39 | if (this.active) { 40 | // stop 即:将收集的deps清空 41 | clearupEffect(this); 42 | if (this.onStop) { 43 | this.onStop(); 44 | } 45 | this.active = false; 46 | } 47 | } 48 | } 49 | 50 | function clearupEffect(effect) { 51 | // 删除收集到的dep中存储的effect函数(effect -> fn)delete 删除指定项 此处并不是清空dep中的Size对象中的数据,如果清空就相当于多个effect函数执行了stop,就不符合stop针对单个effect函数了 52 | // 需要先找到对应的dep 53 | effect.deps.forEach(dep => dep.delete(effect)); 54 | 55 | // 把 effect.deps 清空 56 | effect.deps.length = 0; 57 | } 58 | 59 | // 存储依赖的容器 target -> key -> dep 60 | const targetMaps = new Map(); 61 | 62 | export function isTracking() { 63 | return shouldTrack && activeEffect !== undefined; 64 | } 65 | 66 | export function trackEffects(dep: Set) { 67 | if (dep.has(activeEffect)) { 68 | return; 69 | } 70 | 71 | // dep对应Set 而Set身上存储的是ReactiveEffect的实例 72 | dep.add(activeEffect); 73 | // 反向收集依赖 给stop使用 74 | activeEffect.deps.push(dep); 75 | } 76 | 77 | export function track(target, key) { 78 | if (!isTracking()) { 79 | return; 80 | } 81 | 82 | // target -> key -> dep 83 | let targetMapValue = targetMaps.get(target); 84 | // 初始化时是不存在的 需要创建 85 | if (!targetMapValue) { 86 | targetMapValue = new Map(); 87 | // 没有创建一个Map作为值 88 | targetMaps.set(target, targetMapValue); 89 | } 90 | 91 | let dep = targetMapValue.get(key); 92 | 93 | if (!dep) { 94 | dep = new Set(); 95 | targetMapValue.set(key, dep); 96 | } 97 | 98 | trackEffects(dep); 99 | } 100 | 101 | export function triggerEffects(dep: Set) { 102 | // effect -> ReactiveEffect 103 | for (const effect of dep) { 104 | if (effect.scheduler) { 105 | effect.scheduler(); 106 | } else { 107 | effect.run(); 108 | } 109 | } 110 | } 111 | 112 | export function trigger(target, key) { 113 | let targetMapValue = targetMaps.get(target); 114 | let dep = targetMapValue.get(key); 115 | triggerEffects(dep); 116 | } 117 | 118 | // stop的调用,就是将收集的effect函数删除掉 119 | export function stop(runner) { 120 | runner.effect.stop(); 121 | } 122 | 123 | export function effect(fn: () => void, options: any = {}) { 124 | // 存储effect回调函数的容器类 125 | const _effect = new ReactiveEffect(fn, options.scheduler); 126 | 127 | // options 128 | extend(_effect, options); 129 | 130 | _effect.run(); 131 | 132 | const runner: any = _effect.run.bind(_effect); 133 | 134 | // 将_effect挂载到runner函数上,以供stop调用时能拿到当前的effect实例 135 | runner.effect = _effect; 136 | 137 | return runner; 138 | } 139 | 140 | /* 141 | export function effect(fn: () => void, options: any = {}) { 142 | // 存储effect回调函数的容器类 143 | const _effect = new ReactiveEffect(fn, options.scheduler); 144 | _effect.onStop = options.onStop; 145 | 146 | _effect.run(); 147 | 148 | const runner: any = _effect.run.bind(_effect); 149 | 150 | // 将_effect挂载到runner函数上,以供stop调用时能拿到当前的effect实例 151 | runner.effect = _effect; 152 | 153 | return runner; 154 | } 155 | */ 156 | 157 | /* 158 | target = { count: 1 } 159 | 160 | targetMaps -> Map 对象 161 | 162 | 对应的结构: 163 | 164 | targetMaps = { 165 | { 166 | Object -> Map() 167 | key: { count: 1 } // target数据 168 | value: Map() 169 | | ---- | { 170 | string -> Set() 171 | key: 'count' 172 | value: Set() 173 | } 174 | } 175 | // ... 176 | // ... 177 | } 178 | 179 | obj -> key -> dep -> Set(fn1, fn2, fn3...) 180 | 181 | stop 执行 应该先取到对应的dep中的Set对象,然后删除Set中存储的dep 182 | */ 183 | -------------------------------------------------------------------------------- /src/reactivity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-admin/mini-vue/91fcf8fd4d39f74e151088d271d6998a8e056b71/src/reactivity/index.ts -------------------------------------------------------------------------------- /src/reactivity/reactive.ts: -------------------------------------------------------------------------------- 1 | import { mutableHandles, readonlyHandles, shallowReadonlyHandles } from './baseHandlers'; 2 | 3 | export const enum ReactiveFlags { 4 | IS_REACTIVE = '__v_isReactive', 5 | IS_READONLY = '__v_isReadonly', 6 | } 7 | 8 | function createActiveObject(raw, baseHandlers) { 9 | return new Proxy(raw, baseHandlers); 10 | } 11 | 12 | export function reactive(raw) { 13 | return createActiveObject(raw, mutableHandles); 14 | } 15 | 16 | export function readonly(raw) { 17 | return createActiveObject(raw, readonlyHandles); 18 | } 19 | 20 | export function isReactive(value) { 21 | // 取值时触发 reactive的get方法 22 | // 当访问一个被reactive包装过的对象身上不存在的属性时 get将不会被调用 23 | return !!value[ReactiveFlags.IS_REACTIVE]; 24 | } 25 | 26 | export function shallowReadonly(value) { 27 | return createActiveObject(value, shallowReadonlyHandles); 28 | } 29 | 30 | export function isReadonly(value) { 31 | return !!value[ReactiveFlags.IS_READONLY]; 32 | } 33 | 34 | export function isProxy(value) { 35 | return isReactive(value) || isReadonly(value); 36 | } 37 | -------------------------------------------------------------------------------- /src/reactivity/ref.ts: -------------------------------------------------------------------------------- 1 | import { reactive } from './reactive'; 2 | import { trackEffects, triggerEffects, isTracking } from './effect'; 3 | import { hasChanged, isObject } from '../shared'; 4 | 5 | /** 6 | * 说明:ref 7 | * 8 | * ref针对的每个属性值是一个值类型 1 true "1" 9 | * 10 | * 而当ref传入的值是一个引用数据类型值 需要通过 reactive进行包裹 使其变为一个代理对象 11 | * proxy -> object 12 | */ 13 | 14 | // Impl 表示一个接口的缩写 15 | class RefImpl { 16 | private _value: any; 17 | private _rawValue: any; 18 | public __v_isRef = true; 19 | 20 | // 因为只有一个值 value 所以只需要存储一个dep即可 21 | // key(value) -> dep -> Set(fn1, fn2, fn3...) 22 | 23 | public dep = new Set(); 24 | constructor(value) { 25 | /** 26 | * 如果ref的值是一个对象类型,需要做转换,转成reactive 27 | * value -> reactive 28 | * 需要看一下value是否是一个对象 29 | */ 30 | // this._value = value; 31 | this._value = convert(value); 32 | this._rawValue = value; 33 | } 34 | 35 | get value() { 36 | trackRefValue(this); 37 | // 二次修改成相同的值时 trigger 不应该被触发 38 | return this._value; 39 | } 40 | 41 | set value(newValue) { 42 | // if (hasChanged(this._value, newValue)) { 43 | // 一定得先修改值 然后再去通知 44 | // this._value = newValue; 45 | // triggerEffects(this.dep); 46 | // } 47 | 48 | /** 49 | * newVlaue 与 this._value 对比时 可能是一个reactive包裹过的proxy对象 50 | * 也就是说 上一次的newValue当是一个对象是 现在的 this._value 是一个reactive包裹过的proxy对象 51 | * 52 | * 对比是对比没有处理过后的值 _rawValue 53 | */ 54 | 55 | if (hasChanged(this._rawValue, newValue)) { 56 | // 一定得先修改值 然后再去通知 57 | this._rawValue = newValue; 58 | this._value = convert(newValue); 59 | triggerEffects(this.dep); 60 | } 61 | } 62 | } 63 | 64 | // RefImpl -> { value } -> get set 65 | 66 | function trackRefValue(ref) { 67 | if (isTracking()) { 68 | // 需要做依赖收集 69 | trackEffects(ref.dep); 70 | } 71 | } 72 | 73 | function convert(value) { 74 | return isObject(value) || Array.isArray(value) ? reactive(value) : value; 75 | } 76 | 77 | export function ref(value) { 78 | return new RefImpl(value); 79 | } 80 | 81 | export function isRef(ref) { 82 | return !!ref?.__v_isRef; 83 | } 84 | 85 | export function unRef(ref) { 86 | return isRef(ref) ? ref.value : ref; 87 | } 88 | 89 | export function proxyRefs(objectWithRefs) { 90 | return new Proxy(objectWithRefs, { 91 | get(target, key) { 92 | return unRef(Reflect.get(target, key)); 93 | }, 94 | set(target, key, value) { 95 | const res = Reflect.get(target, key); 96 | // 如果之前的值就是一个ref类型,修改的值不是一个ref类型,直接替换 97 | if (isRef(res) && !isRef(value)) { 98 | // return (val.value = value); 99 | return Reflect.set(res, 'value', value); 100 | } 101 | return Reflect.set(target, key, value); 102 | }, 103 | }); 104 | } 105 | 106 | /** 107 | * es6 Class get set 拓展说明 108 | * 109 | * 当你在声明一个类的时候,有些属性,是不希望别人可以随意的对它进行更改的,也就是把它定义为 私有属性,在ES5的时候基本不可能做到,但是在ES6的时候是可以办到的,而这个就是通过get来实现。 110 | * 111 | * 当修改值时 会调用属性的set方法,本质上并不是直接改变属性的值,而是通过修改另一个值间接改变 get会返回那个被改变后的间接的值 112 | * 113 | * https://www.jianshu.com/p/cdc88509fb90 114 | */ 115 | -------------------------------------------------------------------------------- /src/reactivity/tests/computed.spec.ts: -------------------------------------------------------------------------------- 1 | import { computed } from '../computed'; 2 | import { reactive } from '../reactive'; 3 | 4 | describe('computed', () => { 5 | it('happy path', () => { 6 | // ref .value 缓存 7 | const user = reactive({ 8 | age: 1, 9 | }); 10 | const age = computed(() => user.age); 11 | expect(age.value).toBe(1); 12 | }); 13 | 14 | // 测试计算属性的缓存功能 15 | it('should compute lazily', () => { 16 | const value = reactive({ 17 | foo: 1, 18 | }); 19 | const getter = jest.fn(() => { 20 | return value.foo; 21 | }); 22 | const cValue = computed(getter); 23 | 24 | // lazy 25 | // 没有调用 cValue.value 时 getter函数不应被调用 26 | expect(getter).not.toHaveBeenCalled(); 27 | 28 | expect(cValue.value).toBe(1); 29 | expect(getter).toHaveBeenCalledTimes(1); 30 | 31 | // 不应再被计算 32 | cValue.value; // get 33 | expect(getter).toHaveBeenCalledTimes(1); 34 | 35 | value.foo = 2; // set -> trigger 36 | // 当我们修改computed依赖的proxy属性值时getter也不应该被重新调用 37 | // 而使用当再次访问get时 才会被调用 38 | expect(getter).toHaveBeenCalledTimes(1); 39 | expect(cValue.value).toBe(2); 40 | }); 41 | }); 42 | -------------------------------------------------------------------------------- /src/reactivity/tests/effect.spec.ts: -------------------------------------------------------------------------------- 1 | import { reactive } from '../reactive'; 2 | import { effect, stop } from '../effect'; 3 | 4 | describe('effect', () => { 5 | it('1.effect回调函数中的响应式变量应该能在外部修改时重新执行', () => { 6 | const user = reactive({ 7 | age: 10, 8 | }); 9 | 10 | let nextAge; 11 | 12 | effect(() => { 13 | nextAge = user.age + 1; 14 | }); 15 | 16 | // effect 会一上来就执行一次换入的fn函数 17 | expect(nextAge).toBe(11); 18 | 19 | // update 20 | user.age++; 21 | 22 | expect(nextAge).toBe(12); 23 | }); 24 | 25 | it('2.实现effect返回runner函数', () => { 26 | /** 27 | * effect 函数指定应该有一个返回值 返回值是一个函数 runner 28 | * 当调用runner函数时,effect的参数fn函数应该被执行 29 | * runner的执行结果应该是 fn的返回值 30 | */ 31 | 32 | let foo = 10; 33 | const runner = effect(() => { 34 | foo++; 35 | return 'foo'; 36 | }); 37 | expect(foo).toBe(11); 38 | const r = runner(); 39 | expect(foo).toBe(12); 40 | expect(r).toBe('foo'); 41 | }); 42 | 43 | it('scheduler', () => { 44 | /** 45 | * 1.通过effect的第二个参数给定的一个scheduler的fn 46 | * 2.当effect第一次执行的时候,fn执行 47 | * 3.当响应式对象 set 更新的时候 fn就不会在执行了 而是执行scheduler 48 | * 4.如果说当执行runner的时候,会再次执行fn 49 | */ 50 | 51 | let dummy; 52 | let run; 53 | 54 | const scheduler = jest.fn(() => { 55 | run = runner; 56 | }); 57 | 58 | const obj = reactive({ 59 | foo: 1, 60 | }); 61 | 62 | const runner = effect( 63 | () => { 64 | dummy = obj.foo; 65 | }, 66 | { scheduler }, 67 | ); 68 | 69 | // scheduler 不会被调用(调用0次,也就是不会调用) 70 | expect(scheduler).not.toHaveBeenCalled(); 71 | 72 | // = 1 意味着 effect的第一个参数fn会被调用 73 | expect(dummy).toBe(1); 74 | 75 | // ++后 正常effect的第一个参数fn应该被调用 76 | obj.foo++; 77 | 78 | // 但是 我们验证 我们传入的scheduler被调用了一次 toHaveBeenCalledTimes 调用了几次 79 | expect(scheduler).toHaveBeenCalledTimes(1); 80 | 81 | // 为 1,说明 fn并没被调用 82 | // 此断言说明 当响应式对应发生改变,调用的是scheduler,而并非fn 83 | expect(dummy).toBe(1); 84 | 85 | run(); 86 | 87 | // 执行run后,dummy === 2,说明了fn被调用了 88 | expect(dummy).toBe(2); 89 | 90 | expect(scheduler).toHaveBeenCalledTimes(1); 91 | }); 92 | 93 | it('stop', () => { 94 | let dummy; 95 | const obj = reactive({ 96 | prop: 1, 97 | }); 98 | const runner = effect(() => { 99 | dummy = obj.prop; 100 | }); 101 | 102 | obj.prop = 2; 103 | expect(dummy).toBe(2); 104 | 105 | // 调用stop功能后,当再次修改obj里的值,effect函数将不会在更新 106 | stop(runner); 107 | 108 | // obj.prop = 3; 109 | 110 | /** 111 | * 此处由 obj.prop = 3 改为了 obj.prop++ 发现当前的测试用例不通过了 112 | * 因为 当执行stop操作时会清空tack收集的依赖函数,obj.prop = 3 修改值时 依赖函数以被清空,而 obj.prop++ 是会先触发get 然后 set触发,然后 依赖函数被调用 113 | * 114 | * obj.prop++ -> obj.prop = obj.prop + 1 115 | * 116 | * 意味着stop白白执行了(清空了但又收集了) 117 | */ 118 | 119 | obj.prop++; 120 | // 解决方法 即便stop执行后访问get时会继续收集依赖,我们只要保证,在set时fn函数不会被调用即可 121 | expect(dummy).toBe(2); 122 | 123 | runner(); 124 | expect(dummy).toBe(3); 125 | }); 126 | 127 | // 测试stop函数的执行是否影响到了其他effect函数 128 | it('stop2', () => { 129 | let dummy; 130 | let dummy2; 131 | const obj = reactive({ 132 | prop: 1, 133 | }); 134 | const runner = effect(() => { 135 | dummy = obj.prop; 136 | }); 137 | 138 | effect(() => { 139 | dummy2 = obj.prop; 140 | }); 141 | 142 | obj.prop = 2; 143 | expect(dummy).toBe(2); 144 | expect(dummy2).toBe(2); 145 | 146 | // 调用stop功能后,当再次修改obj里的值,effect函数将不会在更新 147 | stop(runner); 148 | 149 | obj.prop = 3; 150 | expect(dummy).toBe(2); 151 | expect(dummy2).toBe(3); 152 | 153 | runner(); 154 | expect(dummy).toBe(3); 155 | }); 156 | 157 | // it('stop3 测试deps重复)', () => { 158 | // // 反向收集dep时(在track时往ReactiveEffect的实例属性deps上收集dep)使用数组的方式存在多次收集相当的dep 159 | // let dummy; 160 | // const obj = reactive({ 161 | // prop: 1, 162 | // }); 163 | // effect(() => { 164 | // dummy = obj.prop; 165 | // }); 166 | 167 | // obj.prop++; 168 | // obj.prop++; 169 | // obj.prop++; 170 | // obj.prop++; 171 | // obj.prop++; 172 | // expect(dummy).toBe(6); 173 | // }); 174 | 175 | // 调用stop的回调函数 176 | it('onStop', () => { 177 | const obj = reactive({ 178 | foo: 1, 179 | }); 180 | const onStop = jest.fn(); 181 | let dummy; 182 | const runner = effect( 183 | () => { 184 | dummy = obj.foo; 185 | }, 186 | { 187 | onStop, 188 | }, 189 | ); 190 | 191 | stop(runner); 192 | // toBeCalledTimes 测试函数被调用的次数 它的次数是随着函数被调用而累加的,也就是说 如果我之前调用过两次,我下一次在调用,此时toBeCalledTimes的值(被调用的次数)应该是3 193 | expect(onStop).toBeCalledTimes(1); 194 | }); 195 | }); 196 | -------------------------------------------------------------------------------- /src/reactivity/tests/reactive.spec.ts: -------------------------------------------------------------------------------- 1 | import { reactive, isReactive, isProxy } from '../reactive'; 2 | 3 | describe('reactive', () => { 4 | it('happy path', () => { 5 | const original = { foo: 1 }; 6 | const observed = reactive(original); 7 | expect(observed).not.toBe(original); 8 | expect(observed.foo).toBe(1); 9 | }); 10 | 11 | it('isReactive', () => { 12 | const original = { foo: 1 }; 13 | const observed = reactive(original); 14 | expect(isReactive(observed)).toBe(true); 15 | expect(isReactive(original)).toBe(false); 16 | }); 17 | 18 | // reactive 嵌套 19 | it('nested reactive', () => { 20 | const original = { 21 | nested: { 22 | foo: 1, 23 | }, 24 | array: [{ foo: 2 }], 25 | }; 26 | const observed = reactive(original); 27 | expect(isReactive(observed.nested)).toBe(true); 28 | expect(isReactive(observed.array)).toBe(true); 29 | expect(isReactive(observed.array[0])).toBe(true); 30 | }); 31 | 32 | // 只要是响应式变量都返回true 33 | it('isProxy', () => { 34 | const original = { foo: 1 }; 35 | const observed = reactive(original); 36 | expect(isProxy(observed)).toBe(true); 37 | }); 38 | 39 | it('test', () => { 40 | const observed = reactive({ foo: 1 }); 41 | // TODO: 待解决 42 | // observed.foo++; 43 | }); 44 | }); 45 | -------------------------------------------------------------------------------- /src/reactivity/tests/readonly.spec.ts: -------------------------------------------------------------------------------- 1 | import { readonly, isReadonly, isProxy } from '../reactive'; 2 | 3 | describe('readonly', () => { 4 | // 程序主逻辑 5 | it('happy path', () => { 6 | // readonly 不可以被 set 7 | 8 | const original = { 9 | foo: 1, 10 | bar: { 11 | baz: 2, 12 | }, 13 | }; 14 | const wrapped = readonly(original); 15 | expect(wrapped).not.toBe(original); 16 | expect(wrapped.foo).toBe(1); 17 | }); 18 | 19 | // 修改readonly创建的属性值值提示警告信息 20 | it('warn then call set', () => { 21 | // console.warn('xxx'); 22 | // mock 构建一个假的警告方法 23 | // jest.fn() 会创建一个函数 24 | console.warn = jest.fn(); 25 | 26 | const user = readonly({ 27 | age: 20, 28 | }); 29 | user.age = 21; 30 | // 验证其警告函数是否被调用 31 | // toBeCalled 验证其调用次数 >= 1 32 | expect(console.warn).toBeCalled(); 33 | }); 34 | 35 | it('isReadonly', () => { 36 | const original = { foo: 1 }; 37 | const wrapped = readonly(original); 38 | expect(isReadonly(wrapped)).toBe(true); 39 | expect(isReadonly(original)).toBe(false); 40 | }); 41 | 42 | it('isReadonly 2', () => { 43 | const original = { 44 | nested: { 45 | foo: 1, 46 | }, 47 | array: [{ foo: 2 }], 48 | }; 49 | 50 | const wrapped = readonly(original); 51 | expect(isReadonly(wrapped)).toBe(true); 52 | expect(isReadonly(original)).toBe(false); 53 | 54 | // 测试嵌套的属性 55 | expect(isReadonly(wrapped.nested)).toBe(true); 56 | expect(isReadonly(wrapped.array)).toBe(true); 57 | expect(isReadonly(wrapped.array[0])).toBe(true); 58 | }); 59 | 60 | // 只要是响应式变量都返回true 61 | it('isProxy', () => { 62 | const original = { foo: 1 }; 63 | const observed = readonly(original); 64 | expect(isProxy(observed)).toBe(true); 65 | }); 66 | }); 67 | -------------------------------------------------------------------------------- /src/reactivity/tests/ref.spec.ts: -------------------------------------------------------------------------------- 1 | import { effect } from '../effect'; 2 | import { reactive } from '../reactive'; 3 | import { ref, isRef, unRef, proxyRefs } from '../ref'; 4 | 5 | describe('ref', () => { 6 | // it.only 只先执行当前测试用例 7 | // it.skip 跳过当前测试用例 8 | 9 | it('happy path', () => { 10 | const a = ref(1); 11 | expect(a.value).toBe(1); 12 | }); 13 | 14 | it('should be reactive', () => { 15 | const a = ref(1); 16 | let dummy; 17 | let calls = 0; 18 | effect(() => { 19 | calls++; 20 | dummy = a.value; 21 | }); 22 | 23 | expect(calls).toBe(1); 24 | expect(dummy).toBe(1); 25 | 26 | a.value = 2; 27 | expect(calls).toBe(2); 28 | expect(dummy).toBe(2); 29 | 30 | a.value = 2; 31 | expect(calls).toBe(2); 32 | expect(dummy).toBe(2); 33 | }); 34 | 35 | // ref可以将一个对象变为响应式 36 | it('should make nested properties reactive', () => { 37 | const a = ref({ 38 | count: 1, 39 | }); 40 | let dummy; 41 | effect(() => { 42 | dummy = a.value.count; 43 | }); 44 | 45 | expect(dummy).toBe(1); 46 | 47 | a.value.count = 2; 48 | // 如果ref传递的是一个对象类型的值 还需要转成reactive 49 | expect(dummy).toBe(2); 50 | }); 51 | 52 | it('isRef', () => { 53 | const a = ref(1); 54 | const user = reactive({ 55 | age: 1, 56 | }); 57 | expect(isRef(a)).toBe(true); 58 | expect(isRef(1)).toBe(false); 59 | expect(isRef(true)).toBe(false); 60 | expect(isRef(user)).toBe(false); 61 | }); 62 | 63 | it('unRef', () => { 64 | const a = ref(1); 65 | expect(unRef(a)).toBe(1); 66 | expect(unRef(1)).toBe(1); 67 | }); 68 | 69 | it('proxyRefs', () => { 70 | const user = { 71 | age: ref(10), 72 | name: 'xx1', 73 | }; 74 | const proxyUser = proxyRefs(user); 75 | 76 | expect(user.age.value).toBe(10); 77 | // 经过proxyRefs包装过的值 在访问里面存在ref类型值时 可以直接取到 不需要.value的形式去取 78 | expect(proxyUser.age).toBe(10); 79 | expect(proxyUser.name).toBe('xx1'); 80 | 81 | // 使用场景为在template里 使用为ref变量类型的值时 是不需要.value 进行调用读取的 -> proxyRefs 82 | 83 | // age -> ref ? 返回.value : 返回本身值 84 | 85 | // --------- 以上为 get test -------------- 86 | 87 | // --------- 以下为 set test -------------- 88 | 89 | proxyUser.age = 20; 90 | expect(proxyUser.age).toBe(20); 91 | expect(user.age.value).toBe(20); 92 | 93 | proxyUser.age = ref(30); 94 | expect(proxyUser.age).toBe(30); 95 | expect(user.age.value).toBe(30); 96 | 97 | // set -> ref -> .value 98 | }); 99 | }); 100 | -------------------------------------------------------------------------------- /src/reactivity/tests/shallowReadonly.spec.ts: -------------------------------------------------------------------------------- 1 | import { isReadonly, shallowReadonly } from '../reactive'; 2 | 3 | describe('shallowReadonly', () => { 4 | it('should not make non-reactive properties reactive', () => { 5 | // 创建出来的只读对象只针对外层的对象是只读的,内层的对象属性值并不是只读的 6 | const props = shallowReadonly({ 7 | n: { foo: 1 }, 8 | }); 9 | expect(isReadonly(props)).toBe(true); 10 | expect(isReadonly(props.n)).toBe(false); 11 | }); 12 | 13 | it('warn then call set', () => { 14 | console.warn = jest.fn(); 15 | 16 | const user = shallowReadonly({ 17 | age: 20, 18 | }); 19 | user.age = 21; 20 | expect(console.warn).toBeCalled(); 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /src/runtime-core/component.ts: -------------------------------------------------------------------------------- 1 | import { isObject } from '../shared'; 2 | import { publicInstanceProxyHandlers } from './componentPublicInstance'; 3 | 4 | export function createComponentInstance(vnode) { 5 | const component = { 6 | vnode, 7 | type: vnode.type, 8 | setupState: {}, 9 | }; 10 | 11 | return component; 12 | } 13 | 14 | export function setupComponent(instance) { 15 | // initProps 16 | // initSlots 17 | 18 | // 处理调用setup之后的返回值 初始化一个有状态的组件(有状态的和函数式组件) 19 | setupStatefulComponent(instance); 20 | } 21 | 22 | // 调用 setup 拿到其返回值 23 | function setupStatefulComponent(instance) { 24 | const Component = instance.type; 25 | 26 | // 先给一个空对象 ctx 27 | instance.proxy = new Proxy( 28 | { 29 | _: instance, 30 | }, 31 | publicInstanceProxyHandlers, 32 | ); 33 | 34 | const { setup } = Component; 35 | 36 | if (setup) { 37 | // setup 可以返回一个 object(需要注入到组件的上下文中) 或者 一个 fn(render函数) 38 | const setupResult = setup(); 39 | 40 | handleSetupResult(instance, setupResult); 41 | } 42 | } 43 | 44 | function handleSetupResult(instance, setupResult) { 45 | // function or object 46 | 47 | // TODO: function 48 | 49 | // object 50 | if (isObject(setupResult)) { 51 | instance.setupState = setupResult; 52 | } 53 | 54 | finishComponentSetup(instance); 55 | } 56 | 57 | function finishComponentSetup(instance) { 58 | const Component = instance.type; 59 | 60 | instance.render = Component.render; 61 | 62 | // if (Component.render) { 63 | // instance.render = Component.render; 64 | // } 65 | } 66 | -------------------------------------------------------------------------------- /src/runtime-core/componentPublicInstance.ts: -------------------------------------------------------------------------------- 1 | const publicPropertiesMap = { 2 | $el: _ => _.vnode.el, 3 | }; 4 | 5 | export const publicInstanceProxyHandlers = { 6 | get({ _: instance }, key) { 7 | const { setupState } = instance; 8 | 9 | const publicGetter = publicPropertiesMap[key]; 10 | if (publicGetter) { 11 | return publicGetter(instance); 12 | } 13 | 14 | // 先只实现从setupState中获取值 15 | if (key in setupState) { 16 | return setupState[key]; 17 | } 18 | }, 19 | }; 20 | -------------------------------------------------------------------------------- /src/runtime-core/createApp.ts: -------------------------------------------------------------------------------- 1 | import { createVNode } from './vnode'; 2 | import { render } from './renderer'; 3 | 4 | export function createApp(rootComponent) { 5 | return { 6 | mount(rootContainer: HTMLElement) { 7 | // vue 会先把所有的东西转成虚拟节点 后续的所有逻辑操作 都会基于vnode做处理 8 | // component -> vnode 9 | 10 | const vnode = createVNode(rootComponent); 11 | 12 | render(vnode, rootContainer); 13 | }, 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /src/runtime-core/h.ts: -------------------------------------------------------------------------------- 1 | import { createVNode } from './vnode'; 2 | 3 | export function h(type, props?, children?) { 4 | return createVNode(type, props, children); 5 | } 6 | -------------------------------------------------------------------------------- /src/runtime-core/index.ts: -------------------------------------------------------------------------------- 1 | export { createApp } from './createApp'; 2 | export { h } from './h'; 3 | 4 | /* 5 | vnode: 6 | 7 | const vnode = { 8 | // 组件 App | dom string -> div,span 9 | type, 10 | // props attribute -> object 11 | props, 12 | // children -> string | array 13 | children, 14 | 挂载的dom节点对象 15 | el: null 16 | }; 17 | */ 18 | 19 | /* 20 | instance: 21 | 22 | const component = { 23 | vnode, 24 | type: vnode.type, 25 | render: -> Component (instance.type) .render, 26 | setupState: -> Component.setup(), 27 | }; 28 | */ 29 | -------------------------------------------------------------------------------- /src/runtime-core/renderer.ts: -------------------------------------------------------------------------------- 1 | import { createComponentInstance, setupComponent } from './component'; 2 | import { isObject } from '../shared'; 3 | 4 | export function render(vnode, container) { 5 | // 调用 patch 方法 方便后期递归处理 6 | patch(vnode, container); 7 | } 8 | 9 | function patch(vnode, container) { 10 | // 去处理组件 11 | 12 | // 判断vnode是否是element 如果是 处理element,不是 那就是component类型 13 | 14 | if (typeof vnode.type === 'string') { 15 | // element 16 | processElement(vnode, container); 17 | } else if (isObject(vnode.type)) { 18 | // vnode 19 | processComponent(vnode, container); 20 | } 21 | } 22 | 23 | function processElement(vnode, container) { 24 | // init | update 25 | mountElement(vnode, container); 26 | } 27 | 28 | function mountElement(vnode, container) { 29 | const { type, props, children } = vnode; 30 | // 存储挂载节点 31 | const el = (vnode.el = document.createElement(type) as HTMLElement); 32 | 33 | if (typeof children === 'string') { 34 | el.textContent = children; 35 | } else if (Array.isArray(children)) { 36 | // children -> [vnode, ] 此处在vue中处理了很多类型 37 | // 比如支持 数组嵌套的写法 数组中可以存在基本值 boolean/null/undefined 将被转成注释节点 38 | 39 | mountChildren(vnode, el); 40 | } 41 | 42 | // props 43 | for (const key in props) { 44 | const val = props[key]; 45 | el.setAttribute(key, val); 46 | } 47 | (container as HTMLElement).append(el); 48 | } 49 | 50 | function mountChildren(vnode, container) { 51 | vnode.children.forEach(v => { 52 | patch(v, container); 53 | }); 54 | } 55 | 56 | function processComponent(vnode, container) { 57 | mountComponent(vnode, container); 58 | } 59 | 60 | // 初始化component 61 | function mountComponent(initialVNode, container) { 62 | const instance = createComponentInstance(initialVNode); 63 | 64 | setupComponent(instance); 65 | 66 | setupRenderEffect(instance, initialVNode, container); 67 | } 68 | 69 | function setupRenderEffect(instance, initialVNode, container) { 70 | const { proxy } = instance; 71 | // vnode 72 | const subTree = instance.render.call(proxy); 73 | 74 | // 当返回subTree后再次它里面的虚拟节点 需要调用 patch 75 | // vnode -> element -> mount 76 | patch(subTree, container); 77 | 78 | // element类型 mount后 79 | // 可以确定所有的element已被处理完成 80 | // el的获取需要等待element都初始化完成后才有 81 | initialVNode.el = subTree.el; 82 | } 83 | -------------------------------------------------------------------------------- /src/runtime-core/vnode.ts: -------------------------------------------------------------------------------- 1 | export function createVNode(type, props?, children?) { 2 | const vnode = { 3 | // 组件 App | dom string -> div,span 4 | type, 5 | // props attribute -> object 6 | props, 7 | // children -> string | array 8 | children, 9 | // 挂载的dom节点对象 10 | el: null, 11 | }; 12 | return vnode; 13 | } 14 | -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- 1 | export const extend = Object.assign; 2 | 3 | const toString = Object.prototype.toString; 4 | 5 | export const isObject = (val: any): val is object => toString.call(val) === '[object Object]'; 6 | 7 | export const hasChanged = (a, b) => !Object.is(a, b); 8 | -------------------------------------------------------------------------------- /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": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 15 | "lib": ["DOM", "ESNext"], /* 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": true, /* 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 | } 101 | } 102 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0": 6 | version "7.16.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431" 8 | integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== 9 | dependencies: 10 | "@babel/highlight" "^7.16.0" 11 | 12 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.0", "@babel/compat-data@^7.16.4": 13 | version "7.16.4" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" 15 | integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== 16 | 17 | "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.16.5", "@babel/core@^7.7.2", "@babel/core@^7.7.5": 18 | version "7.16.5" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.5.tgz#924aa9e1ae56e1e55f7184c8bf073a50d8677f5c" 20 | integrity sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ== 21 | dependencies: 22 | "@babel/code-frame" "^7.16.0" 23 | "@babel/generator" "^7.16.5" 24 | "@babel/helper-compilation-targets" "^7.16.3" 25 | "@babel/helper-module-transforms" "^7.16.5" 26 | "@babel/helpers" "^7.16.5" 27 | "@babel/parser" "^7.16.5" 28 | "@babel/template" "^7.16.0" 29 | "@babel/traverse" "^7.16.5" 30 | "@babel/types" "^7.16.0" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.16.5", "@babel/generator@^7.7.2": 39 | version "7.16.5" 40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.5.tgz#26e1192eb8f78e0a3acaf3eede3c6fc96d22bedf" 41 | integrity sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA== 42 | dependencies: 43 | "@babel/types" "^7.16.0" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-annotate-as-pure@^7.16.0": 48 | version "7.16.0" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" 50 | integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== 51 | dependencies: 52 | "@babel/types" "^7.16.0" 53 | 54 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.5": 55 | version "7.16.5" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz#a8429d064dce8207194b8bf05a70a9ea828746af" 57 | integrity sha512-3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA== 58 | dependencies: 59 | "@babel/helper-explode-assignable-expression" "^7.16.0" 60 | "@babel/types" "^7.16.0" 61 | 62 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.3": 63 | version "7.16.3" 64 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz#5b480cd13f68363df6ec4dc8ac8e2da11363cbf0" 65 | integrity sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA== 66 | dependencies: 67 | "@babel/compat-data" "^7.16.0" 68 | "@babel/helper-validator-option" "^7.14.5" 69 | browserslist "^4.17.5" 70 | semver "^6.3.0" 71 | 72 | "@babel/helper-create-class-features-plugin@^7.16.0", "@babel/helper-create-class-features-plugin@^7.16.5": 73 | version "7.16.5" 74 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz#5d1bcd096792c1ebec6249eebc6358eec55d0cad" 75 | integrity sha512-NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg== 76 | dependencies: 77 | "@babel/helper-annotate-as-pure" "^7.16.0" 78 | "@babel/helper-environment-visitor" "^7.16.5" 79 | "@babel/helper-function-name" "^7.16.0" 80 | "@babel/helper-member-expression-to-functions" "^7.16.5" 81 | "@babel/helper-optimise-call-expression" "^7.16.0" 82 | "@babel/helper-replace-supers" "^7.16.5" 83 | "@babel/helper-split-export-declaration" "^7.16.0" 84 | 85 | "@babel/helper-create-regexp-features-plugin@^7.16.0": 86 | version "7.16.0" 87 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz#06b2348ce37fccc4f5e18dcd8d75053f2a7c44ff" 88 | integrity sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA== 89 | dependencies: 90 | "@babel/helper-annotate-as-pure" "^7.16.0" 91 | regexpu-core "^4.7.1" 92 | 93 | "@babel/helper-define-polyfill-provider@^0.3.0": 94 | version "0.3.0" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz#c5b10cf4b324ff840140bb07e05b8564af2ae971" 96 | integrity sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg== 97 | dependencies: 98 | "@babel/helper-compilation-targets" "^7.13.0" 99 | "@babel/helper-module-imports" "^7.12.13" 100 | "@babel/helper-plugin-utils" "^7.13.0" 101 | "@babel/traverse" "^7.13.0" 102 | debug "^4.1.1" 103 | lodash.debounce "^4.0.8" 104 | resolve "^1.14.2" 105 | semver "^6.1.2" 106 | 107 | "@babel/helper-environment-visitor@^7.16.5": 108 | version "7.16.5" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz#f6a7f38b3c6d8b07c88faea083c46c09ef5451b8" 110 | integrity sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg== 111 | dependencies: 112 | "@babel/types" "^7.16.0" 113 | 114 | "@babel/helper-explode-assignable-expression@^7.16.0": 115 | version "7.16.0" 116 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz#753017337a15f46f9c09f674cff10cee9b9d7778" 117 | integrity sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ== 118 | dependencies: 119 | "@babel/types" "^7.16.0" 120 | 121 | "@babel/helper-function-name@^7.16.0": 122 | version "7.16.0" 123 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481" 124 | integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== 125 | dependencies: 126 | "@babel/helper-get-function-arity" "^7.16.0" 127 | "@babel/template" "^7.16.0" 128 | "@babel/types" "^7.16.0" 129 | 130 | "@babel/helper-get-function-arity@^7.16.0": 131 | version "7.16.0" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa" 133 | integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== 134 | dependencies: 135 | "@babel/types" "^7.16.0" 136 | 137 | "@babel/helper-hoist-variables@^7.16.0": 138 | version "7.16.0" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a" 140 | integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== 141 | dependencies: 142 | "@babel/types" "^7.16.0" 143 | 144 | "@babel/helper-member-expression-to-functions@^7.16.5": 145 | version "7.16.5" 146 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz#1bc9f7e87354e86f8879c67b316cb03d3dc2caab" 147 | integrity sha512-7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw== 148 | dependencies: 149 | "@babel/types" "^7.16.0" 150 | 151 | "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0": 152 | version "7.16.0" 153 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3" 154 | integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== 155 | dependencies: 156 | "@babel/types" "^7.16.0" 157 | 158 | "@babel/helper-module-transforms@^7.16.5": 159 | version "7.16.5" 160 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz#530ebf6ea87b500f60840578515adda2af470a29" 161 | integrity sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ== 162 | dependencies: 163 | "@babel/helper-environment-visitor" "^7.16.5" 164 | "@babel/helper-module-imports" "^7.16.0" 165 | "@babel/helper-simple-access" "^7.16.0" 166 | "@babel/helper-split-export-declaration" "^7.16.0" 167 | "@babel/helper-validator-identifier" "^7.15.7" 168 | "@babel/template" "^7.16.0" 169 | "@babel/traverse" "^7.16.5" 170 | "@babel/types" "^7.16.0" 171 | 172 | "@babel/helper-optimise-call-expression@^7.16.0": 173 | version "7.16.0" 174 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338" 175 | integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw== 176 | dependencies: 177 | "@babel/types" "^7.16.0" 178 | 179 | "@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.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 180 | version "7.16.5" 181 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz#afe37a45f39fce44a3d50a7958129ea5b1a5c074" 182 | integrity sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ== 183 | 184 | "@babel/helper-remap-async-to-generator@^7.16.5": 185 | version "7.16.5" 186 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz#e706646dc4018942acb4b29f7e185bc246d65ac3" 187 | integrity sha512-X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw== 188 | dependencies: 189 | "@babel/helper-annotate-as-pure" "^7.16.0" 190 | "@babel/helper-wrap-function" "^7.16.5" 191 | "@babel/types" "^7.16.0" 192 | 193 | "@babel/helper-replace-supers@^7.16.5": 194 | version "7.16.5" 195 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz#96d3988bd0ab0a2d22c88c6198c3d3234ca25326" 196 | integrity sha512-ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ== 197 | dependencies: 198 | "@babel/helper-environment-visitor" "^7.16.5" 199 | "@babel/helper-member-expression-to-functions" "^7.16.5" 200 | "@babel/helper-optimise-call-expression" "^7.16.0" 201 | "@babel/traverse" "^7.16.5" 202 | "@babel/types" "^7.16.0" 203 | 204 | "@babel/helper-simple-access@^7.16.0": 205 | version "7.16.0" 206 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz#21d6a27620e383e37534cf6c10bba019a6f90517" 207 | integrity sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw== 208 | dependencies: 209 | "@babel/types" "^7.16.0" 210 | 211 | "@babel/helper-skip-transparent-expression-wrappers@^7.16.0": 212 | version "7.16.0" 213 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" 214 | integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== 215 | dependencies: 216 | "@babel/types" "^7.16.0" 217 | 218 | "@babel/helper-split-export-declaration@^7.16.0": 219 | version "7.16.0" 220 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438" 221 | integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== 222 | dependencies: 223 | "@babel/types" "^7.16.0" 224 | 225 | "@babel/helper-validator-identifier@^7.15.7": 226 | version "7.15.7" 227 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 228 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 229 | 230 | "@babel/helper-validator-option@^7.14.5": 231 | version "7.14.5" 232 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 233 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 234 | 235 | "@babel/helper-wrap-function@^7.16.5": 236 | version "7.16.5" 237 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz#0158fca6f6d0889c3fee8a6ed6e5e07b9b54e41f" 238 | integrity sha512-2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA== 239 | dependencies: 240 | "@babel/helper-function-name" "^7.16.0" 241 | "@babel/template" "^7.16.0" 242 | "@babel/traverse" "^7.16.5" 243 | "@babel/types" "^7.16.0" 244 | 245 | "@babel/helpers@^7.16.5": 246 | version "7.16.5" 247 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.5.tgz#29a052d4b827846dd76ece16f565b9634c554ebd" 248 | integrity sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw== 249 | dependencies: 250 | "@babel/template" "^7.16.0" 251 | "@babel/traverse" "^7.16.5" 252 | "@babel/types" "^7.16.0" 253 | 254 | "@babel/highlight@^7.16.0": 255 | version "7.16.0" 256 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" 257 | integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== 258 | dependencies: 259 | "@babel/helper-validator-identifier" "^7.15.7" 260 | chalk "^2.0.0" 261 | js-tokens "^4.0.0" 262 | 263 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.0", "@babel/parser@^7.16.5", "@babel/parser@^7.7.2": 264 | version "7.16.6" 265 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.6.tgz#8f194828193e8fa79166f34a4b4e52f3e769a314" 266 | integrity sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ== 267 | 268 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.2": 269 | version "7.16.2" 270 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz#2977fca9b212db153c195674e57cfab807733183" 271 | integrity sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg== 272 | dependencies: 273 | "@babel/helper-plugin-utils" "^7.14.5" 274 | 275 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.0": 276 | version "7.16.0" 277 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz#358972eaab006f5eb0826183b0c93cbcaf13e1e2" 278 | integrity sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA== 279 | dependencies: 280 | "@babel/helper-plugin-utils" "^7.14.5" 281 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 282 | "@babel/plugin-proposal-optional-chaining" "^7.16.0" 283 | 284 | "@babel/plugin-proposal-async-generator-functions@^7.16.5": 285 | version "7.16.5" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz#fd3bd7e0d98404a3d4cbca15a72d533f8c9a2f67" 287 | integrity sha512-C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA== 288 | dependencies: 289 | "@babel/helper-plugin-utils" "^7.16.5" 290 | "@babel/helper-remap-async-to-generator" "^7.16.5" 291 | "@babel/plugin-syntax-async-generators" "^7.8.4" 292 | 293 | "@babel/plugin-proposal-class-properties@^7.16.5": 294 | version "7.16.5" 295 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz#3269f44b89122110f6339806e05d43d84106468a" 296 | integrity sha512-pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A== 297 | dependencies: 298 | "@babel/helper-create-class-features-plugin" "^7.16.5" 299 | "@babel/helper-plugin-utils" "^7.16.5" 300 | 301 | "@babel/plugin-proposal-class-static-block@^7.16.5": 302 | version "7.16.5" 303 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz#df58ab015a7d3b0963aafc8f20792dcd834952a9" 304 | integrity sha512-EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ== 305 | dependencies: 306 | "@babel/helper-create-class-features-plugin" "^7.16.5" 307 | "@babel/helper-plugin-utils" "^7.16.5" 308 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 309 | 310 | "@babel/plugin-proposal-dynamic-import@^7.16.5": 311 | version "7.16.5" 312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz#2e0d19d5702db4dcb9bc846200ca02f2e9d60e9e" 313 | integrity sha512-P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ== 314 | dependencies: 315 | "@babel/helper-plugin-utils" "^7.16.5" 316 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 317 | 318 | "@babel/plugin-proposal-export-namespace-from@^7.16.5": 319 | version "7.16.5" 320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz#3b4dd28378d1da2fea33e97b9f25d1c2f5bf1ac9" 321 | integrity sha512-i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw== 322 | dependencies: 323 | "@babel/helper-plugin-utils" "^7.16.5" 324 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 325 | 326 | "@babel/plugin-proposal-json-strings@^7.16.5": 327 | version "7.16.5" 328 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz#1e726930fca139caab6b084d232a9270d9d16f9c" 329 | integrity sha512-QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ== 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.16.5" 332 | "@babel/plugin-syntax-json-strings" "^7.8.3" 333 | 334 | "@babel/plugin-proposal-logical-assignment-operators@^7.16.5": 335 | version "7.16.5" 336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz#df1f2e4b5a0ec07abf061d2c18e53abc237d3ef5" 337 | integrity sha512-xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA== 338 | dependencies: 339 | "@babel/helper-plugin-utils" "^7.16.5" 340 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 341 | 342 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.5": 343 | version "7.16.5" 344 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz#652555bfeeeee2d2104058c6225dc6f75e2d0f07" 345 | integrity sha512-YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg== 346 | dependencies: 347 | "@babel/helper-plugin-utils" "^7.16.5" 348 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 349 | 350 | "@babel/plugin-proposal-numeric-separator@^7.16.5": 351 | version "7.16.5" 352 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz#edcb6379b6cf4570be64c45965d8da7a2debf039" 353 | integrity sha512-DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw== 354 | dependencies: 355 | "@babel/helper-plugin-utils" "^7.16.5" 356 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 357 | 358 | "@babel/plugin-proposal-object-rest-spread@^7.16.5": 359 | version "7.16.5" 360 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz#f30f80dacf7bc1404bf67f99c8d9c01665e830ad" 361 | integrity sha512-UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw== 362 | dependencies: 363 | "@babel/compat-data" "^7.16.4" 364 | "@babel/helper-compilation-targets" "^7.16.3" 365 | "@babel/helper-plugin-utils" "^7.16.5" 366 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 367 | "@babel/plugin-transform-parameters" "^7.16.5" 368 | 369 | "@babel/plugin-proposal-optional-catch-binding@^7.16.5": 370 | version "7.16.5" 371 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz#1a5405765cf589a11a33a1fd75b2baef7d48b74e" 372 | integrity sha512-ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ== 373 | dependencies: 374 | "@babel/helper-plugin-utils" "^7.16.5" 375 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 376 | 377 | "@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.16.5": 378 | version "7.16.5" 379 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz#a5fa61056194d5059366c0009cb9a9e66ed75c1f" 380 | integrity sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A== 381 | dependencies: 382 | "@babel/helper-plugin-utils" "^7.16.5" 383 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 384 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 385 | 386 | "@babel/plugin-proposal-private-methods@^7.16.5": 387 | version "7.16.5" 388 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz#2086f7d78c1b0c712d49b5c3fbc2d1ca21a7ee12" 389 | integrity sha512-+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA== 390 | dependencies: 391 | "@babel/helper-create-class-features-plugin" "^7.16.5" 392 | "@babel/helper-plugin-utils" "^7.16.5" 393 | 394 | "@babel/plugin-proposal-private-property-in-object@^7.16.5": 395 | version "7.16.5" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz#a42d4b56005db3d405b12841309dbca647e7a21b" 397 | integrity sha512-+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA== 398 | dependencies: 399 | "@babel/helper-annotate-as-pure" "^7.16.0" 400 | "@babel/helper-create-class-features-plugin" "^7.16.5" 401 | "@babel/helper-plugin-utils" "^7.16.5" 402 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 403 | 404 | "@babel/plugin-proposal-unicode-property-regex@^7.16.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 405 | version "7.16.5" 406 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz#35fe753afa7c572f322bd068ff3377bde0f37080" 407 | integrity sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg== 408 | dependencies: 409 | "@babel/helper-create-regexp-features-plugin" "^7.16.0" 410 | "@babel/helper-plugin-utils" "^7.16.5" 411 | 412 | "@babel/plugin-syntax-async-generators@^7.8.4": 413 | version "7.8.4" 414 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 415 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 416 | dependencies: 417 | "@babel/helper-plugin-utils" "^7.8.0" 418 | 419 | "@babel/plugin-syntax-bigint@^7.8.3": 420 | version "7.8.3" 421 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 422 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 423 | dependencies: 424 | "@babel/helper-plugin-utils" "^7.8.0" 425 | 426 | "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": 427 | version "7.12.13" 428 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 429 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 430 | dependencies: 431 | "@babel/helper-plugin-utils" "^7.12.13" 432 | 433 | "@babel/plugin-syntax-class-static-block@^7.14.5": 434 | version "7.14.5" 435 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" 436 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== 437 | dependencies: 438 | "@babel/helper-plugin-utils" "^7.14.5" 439 | 440 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 441 | version "7.8.3" 442 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 443 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 444 | dependencies: 445 | "@babel/helper-plugin-utils" "^7.8.0" 446 | 447 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 448 | version "7.8.3" 449 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 450 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 451 | dependencies: 452 | "@babel/helper-plugin-utils" "^7.8.3" 453 | 454 | "@babel/plugin-syntax-import-meta@^7.8.3": 455 | version "7.10.4" 456 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 457 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 458 | dependencies: 459 | "@babel/helper-plugin-utils" "^7.10.4" 460 | 461 | "@babel/plugin-syntax-json-strings@^7.8.3": 462 | version "7.8.3" 463 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 464 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 465 | dependencies: 466 | "@babel/helper-plugin-utils" "^7.8.0" 467 | 468 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 469 | version "7.10.4" 470 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 471 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 472 | dependencies: 473 | "@babel/helper-plugin-utils" "^7.10.4" 474 | 475 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 476 | version "7.8.3" 477 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 478 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 479 | dependencies: 480 | "@babel/helper-plugin-utils" "^7.8.0" 481 | 482 | "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": 483 | version "7.10.4" 484 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 485 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 486 | dependencies: 487 | "@babel/helper-plugin-utils" "^7.10.4" 488 | 489 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 490 | version "7.8.3" 491 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 492 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 493 | dependencies: 494 | "@babel/helper-plugin-utils" "^7.8.0" 495 | 496 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 497 | version "7.8.3" 498 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 499 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 500 | dependencies: 501 | "@babel/helper-plugin-utils" "^7.8.0" 502 | 503 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 504 | version "7.8.3" 505 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 506 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 507 | dependencies: 508 | "@babel/helper-plugin-utils" "^7.8.0" 509 | 510 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 511 | version "7.14.5" 512 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" 513 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== 514 | dependencies: 515 | "@babel/helper-plugin-utils" "^7.14.5" 516 | 517 | "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": 518 | version "7.14.5" 519 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 520 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 521 | dependencies: 522 | "@babel/helper-plugin-utils" "^7.14.5" 523 | 524 | "@babel/plugin-syntax-typescript@^7.16.0", "@babel/plugin-syntax-typescript@^7.7.2": 525 | version "7.16.5" 526 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz#f47a33e4eee38554f00fb6b2f894fa1f5649b0b3" 527 | integrity sha512-/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw== 528 | dependencies: 529 | "@babel/helper-plugin-utils" "^7.16.5" 530 | 531 | "@babel/plugin-transform-arrow-functions@^7.16.5": 532 | version "7.16.5" 533 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz#04c18944dd55397b521d9d7511e791acea7acf2d" 534 | integrity sha512-8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ== 535 | dependencies: 536 | "@babel/helper-plugin-utils" "^7.16.5" 537 | 538 | "@babel/plugin-transform-async-to-generator@^7.16.5": 539 | version "7.16.5" 540 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz#89c9b501e65bb14c4579a6ce9563f859de9b34e4" 541 | integrity sha512-TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w== 542 | dependencies: 543 | "@babel/helper-module-imports" "^7.16.0" 544 | "@babel/helper-plugin-utils" "^7.16.5" 545 | "@babel/helper-remap-async-to-generator" "^7.16.5" 546 | 547 | "@babel/plugin-transform-block-scoped-functions@^7.16.5": 548 | version "7.16.5" 549 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz#af087494e1c387574260b7ee9b58cdb5a4e9b0b0" 550 | integrity sha512-BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw== 551 | dependencies: 552 | "@babel/helper-plugin-utils" "^7.16.5" 553 | 554 | "@babel/plugin-transform-block-scoping@^7.16.5": 555 | version "7.16.5" 556 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz#b91f254fe53e210eabe4dd0c40f71c0ed253c5e7" 557 | integrity sha512-JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ== 558 | dependencies: 559 | "@babel/helper-plugin-utils" "^7.16.5" 560 | 561 | "@babel/plugin-transform-classes@^7.16.5": 562 | version "7.16.5" 563 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz#6acf2ec7adb50fb2f3194dcd2909dbd056dcf216" 564 | integrity sha512-DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA== 565 | dependencies: 566 | "@babel/helper-annotate-as-pure" "^7.16.0" 567 | "@babel/helper-environment-visitor" "^7.16.5" 568 | "@babel/helper-function-name" "^7.16.0" 569 | "@babel/helper-optimise-call-expression" "^7.16.0" 570 | "@babel/helper-plugin-utils" "^7.16.5" 571 | "@babel/helper-replace-supers" "^7.16.5" 572 | "@babel/helper-split-export-declaration" "^7.16.0" 573 | globals "^11.1.0" 574 | 575 | "@babel/plugin-transform-computed-properties@^7.16.5": 576 | version "7.16.5" 577 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz#2af91ebf0cceccfcc701281ada7cfba40a9b322a" 578 | integrity sha512-n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg== 579 | dependencies: 580 | "@babel/helper-plugin-utils" "^7.16.5" 581 | 582 | "@babel/plugin-transform-destructuring@^7.16.5": 583 | version "7.16.5" 584 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz#89ebc87499ac4a81b897af53bb5d3eed261bd568" 585 | integrity sha512-GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg== 586 | dependencies: 587 | "@babel/helper-plugin-utils" "^7.16.5" 588 | 589 | "@babel/plugin-transform-dotall-regex@^7.16.5", "@babel/plugin-transform-dotall-regex@^7.4.4": 590 | version "7.16.5" 591 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz#b40739c00b6686820653536d6d143e311de67936" 592 | integrity sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw== 593 | dependencies: 594 | "@babel/helper-create-regexp-features-plugin" "^7.16.0" 595 | "@babel/helper-plugin-utils" "^7.16.5" 596 | 597 | "@babel/plugin-transform-duplicate-keys@^7.16.5": 598 | version "7.16.5" 599 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz#2450f2742325412b746d7d005227f5e8973b512a" 600 | integrity sha512-81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg== 601 | dependencies: 602 | "@babel/helper-plugin-utils" "^7.16.5" 603 | 604 | "@babel/plugin-transform-exponentiation-operator@^7.16.5": 605 | version "7.16.5" 606 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz#36e261fa1ab643cfaf30eeab38e00ed1a76081e2" 607 | integrity sha512-12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA== 608 | dependencies: 609 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.5" 610 | "@babel/helper-plugin-utils" "^7.16.5" 611 | 612 | "@babel/plugin-transform-for-of@^7.16.5": 613 | version "7.16.5" 614 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz#9b544059c6ca11d565457c0ff1f08e13ce225261" 615 | integrity sha512-+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw== 616 | dependencies: 617 | "@babel/helper-plugin-utils" "^7.16.5" 618 | 619 | "@babel/plugin-transform-function-name@^7.16.5": 620 | version "7.16.5" 621 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz#6896ebb6a5538a75d6a4086a277752f655a7bd15" 622 | integrity sha512-Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ== 623 | dependencies: 624 | "@babel/helper-function-name" "^7.16.0" 625 | "@babel/helper-plugin-utils" "^7.16.5" 626 | 627 | "@babel/plugin-transform-literals@^7.16.5": 628 | version "7.16.5" 629 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz#af392b90e3edb2bd6dc316844cbfd6b9e009d320" 630 | integrity sha512-B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw== 631 | dependencies: 632 | "@babel/helper-plugin-utils" "^7.16.5" 633 | 634 | "@babel/plugin-transform-member-expression-literals@^7.16.5": 635 | version "7.16.5" 636 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz#4bd6ecdc11932361631097b779ca5c7570146dd5" 637 | integrity sha512-d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ== 638 | dependencies: 639 | "@babel/helper-plugin-utils" "^7.16.5" 640 | 641 | "@babel/plugin-transform-modules-amd@^7.16.5": 642 | version "7.16.5" 643 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz#92c0a3e83f642cb7e75fada9ab497c12c2616527" 644 | integrity sha512-oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ== 645 | dependencies: 646 | "@babel/helper-module-transforms" "^7.16.5" 647 | "@babel/helper-plugin-utils" "^7.16.5" 648 | babel-plugin-dynamic-import-node "^2.3.3" 649 | 650 | "@babel/plugin-transform-modules-commonjs@^7.16.5": 651 | version "7.16.5" 652 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz#4ee03b089536f076b2773196529d27c32b9d7bde" 653 | integrity sha512-ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ== 654 | dependencies: 655 | "@babel/helper-module-transforms" "^7.16.5" 656 | "@babel/helper-plugin-utils" "^7.16.5" 657 | "@babel/helper-simple-access" "^7.16.0" 658 | babel-plugin-dynamic-import-node "^2.3.3" 659 | 660 | "@babel/plugin-transform-modules-systemjs@^7.16.5": 661 | version "7.16.5" 662 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz#07078ba2e3cc94fbdd06836e355c246e98ad006b" 663 | integrity sha512-53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA== 664 | dependencies: 665 | "@babel/helper-hoist-variables" "^7.16.0" 666 | "@babel/helper-module-transforms" "^7.16.5" 667 | "@babel/helper-plugin-utils" "^7.16.5" 668 | "@babel/helper-validator-identifier" "^7.15.7" 669 | babel-plugin-dynamic-import-node "^2.3.3" 670 | 671 | "@babel/plugin-transform-modules-umd@^7.16.5": 672 | version "7.16.5" 673 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz#caa9c53d636fb4e3c99fd35a4c9ba5e5cd7e002e" 674 | integrity sha512-qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw== 675 | dependencies: 676 | "@babel/helper-module-transforms" "^7.16.5" 677 | "@babel/helper-plugin-utils" "^7.16.5" 678 | 679 | "@babel/plugin-transform-named-capturing-groups-regex@^7.16.5": 680 | version "7.16.5" 681 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz#4afd8cdee377ce3568f4e8a9ee67539b69886a3c" 682 | integrity sha512-/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA== 683 | dependencies: 684 | "@babel/helper-create-regexp-features-plugin" "^7.16.0" 685 | 686 | "@babel/plugin-transform-new-target@^7.16.5": 687 | version "7.16.5" 688 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz#759ea9d6fbbc20796056a5d89d13977626384416" 689 | integrity sha512-ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg== 690 | dependencies: 691 | "@babel/helper-plugin-utils" "^7.16.5" 692 | 693 | "@babel/plugin-transform-object-super@^7.16.5": 694 | version "7.16.5" 695 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz#8ccd9a1bcd3e7732ff8aa1702d067d8cd70ce380" 696 | integrity sha512-tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg== 697 | dependencies: 698 | "@babel/helper-plugin-utils" "^7.16.5" 699 | "@babel/helper-replace-supers" "^7.16.5" 700 | 701 | "@babel/plugin-transform-parameters@^7.16.5": 702 | version "7.16.5" 703 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz#4fc74b18a89638bd90aeec44a11793ecbe031dde" 704 | integrity sha512-B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA== 705 | dependencies: 706 | "@babel/helper-plugin-utils" "^7.16.5" 707 | 708 | "@babel/plugin-transform-property-literals@^7.16.5": 709 | version "7.16.5" 710 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz#58f1465a7202a2bb2e6b003905212dd7a79abe3f" 711 | integrity sha512-+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg== 712 | dependencies: 713 | "@babel/helper-plugin-utils" "^7.16.5" 714 | 715 | "@babel/plugin-transform-regenerator@^7.16.5": 716 | version "7.16.5" 717 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz#704cc6d8dd3dd4758267621ab7b36375238cef13" 718 | integrity sha512-2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg== 719 | dependencies: 720 | regenerator-transform "^0.14.2" 721 | 722 | "@babel/plugin-transform-reserved-words@^7.16.5": 723 | version "7.16.5" 724 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz#db95e98799675e193dc2b47d3e72a7c0651d0c30" 725 | integrity sha512-aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw== 726 | dependencies: 727 | "@babel/helper-plugin-utils" "^7.16.5" 728 | 729 | "@babel/plugin-transform-shorthand-properties@^7.16.5": 730 | version "7.16.5" 731 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz#ccb60b1a23b799f5b9a14d97c5bc81025ffd96d7" 732 | integrity sha512-ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg== 733 | dependencies: 734 | "@babel/helper-plugin-utils" "^7.16.5" 735 | 736 | "@babel/plugin-transform-spread@^7.16.5": 737 | version "7.16.5" 738 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz#912b06cff482c233025d3e69cf56d3e8fa166c29" 739 | integrity sha512-5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw== 740 | dependencies: 741 | "@babel/helper-plugin-utils" "^7.16.5" 742 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 743 | 744 | "@babel/plugin-transform-sticky-regex@^7.16.5": 745 | version "7.16.5" 746 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz#593579bb2b5a8adfbe02cb43823275d9098f75f9" 747 | integrity sha512-usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg== 748 | dependencies: 749 | "@babel/helper-plugin-utils" "^7.16.5" 750 | 751 | "@babel/plugin-transform-template-literals@^7.16.5": 752 | version "7.16.5" 753 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz#343651385fd9923f5aa2275ca352c5d9183e1773" 754 | integrity sha512-gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ== 755 | dependencies: 756 | "@babel/helper-plugin-utils" "^7.16.5" 757 | 758 | "@babel/plugin-transform-typeof-symbol@^7.16.5": 759 | version "7.16.5" 760 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz#a1d1bf2c71573fe30965d0e4cd6a3291202e20ed" 761 | integrity sha512-ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ== 762 | dependencies: 763 | "@babel/helper-plugin-utils" "^7.16.5" 764 | 765 | "@babel/plugin-transform-typescript@^7.16.1": 766 | version "7.16.1" 767 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz#cc0670b2822b0338355bc1b3d2246a42b8166409" 768 | integrity sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg== 769 | dependencies: 770 | "@babel/helper-create-class-features-plugin" "^7.16.0" 771 | "@babel/helper-plugin-utils" "^7.14.5" 772 | "@babel/plugin-syntax-typescript" "^7.16.0" 773 | 774 | "@babel/plugin-transform-unicode-escapes@^7.16.5": 775 | version "7.16.5" 776 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz#80507c225af49b4f4ee647e2a0ce53d2eeff9e85" 777 | integrity sha512-shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q== 778 | dependencies: 779 | "@babel/helper-plugin-utils" "^7.16.5" 780 | 781 | "@babel/plugin-transform-unicode-regex@^7.16.5": 782 | version "7.16.5" 783 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz#ac84d6a1def947d71ffb832426aa53b83d7ed49e" 784 | integrity sha512-GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw== 785 | dependencies: 786 | "@babel/helper-create-regexp-features-plugin" "^7.16.0" 787 | "@babel/helper-plugin-utils" "^7.16.5" 788 | 789 | "@babel/preset-env@^7.16.5": 790 | version "7.16.5" 791 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.5.tgz#2e94d922f4a890979af04ffeb6a6b4e44ba90847" 792 | integrity sha512-MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ== 793 | dependencies: 794 | "@babel/compat-data" "^7.16.4" 795 | "@babel/helper-compilation-targets" "^7.16.3" 796 | "@babel/helper-plugin-utils" "^7.16.5" 797 | "@babel/helper-validator-option" "^7.14.5" 798 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.2" 799 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.0" 800 | "@babel/plugin-proposal-async-generator-functions" "^7.16.5" 801 | "@babel/plugin-proposal-class-properties" "^7.16.5" 802 | "@babel/plugin-proposal-class-static-block" "^7.16.5" 803 | "@babel/plugin-proposal-dynamic-import" "^7.16.5" 804 | "@babel/plugin-proposal-export-namespace-from" "^7.16.5" 805 | "@babel/plugin-proposal-json-strings" "^7.16.5" 806 | "@babel/plugin-proposal-logical-assignment-operators" "^7.16.5" 807 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.5" 808 | "@babel/plugin-proposal-numeric-separator" "^7.16.5" 809 | "@babel/plugin-proposal-object-rest-spread" "^7.16.5" 810 | "@babel/plugin-proposal-optional-catch-binding" "^7.16.5" 811 | "@babel/plugin-proposal-optional-chaining" "^7.16.5" 812 | "@babel/plugin-proposal-private-methods" "^7.16.5" 813 | "@babel/plugin-proposal-private-property-in-object" "^7.16.5" 814 | "@babel/plugin-proposal-unicode-property-regex" "^7.16.5" 815 | "@babel/plugin-syntax-async-generators" "^7.8.4" 816 | "@babel/plugin-syntax-class-properties" "^7.12.13" 817 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 818 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 819 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 820 | "@babel/plugin-syntax-json-strings" "^7.8.3" 821 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 822 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 823 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 824 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 825 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 826 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 827 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 828 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 829 | "@babel/plugin-transform-arrow-functions" "^7.16.5" 830 | "@babel/plugin-transform-async-to-generator" "^7.16.5" 831 | "@babel/plugin-transform-block-scoped-functions" "^7.16.5" 832 | "@babel/plugin-transform-block-scoping" "^7.16.5" 833 | "@babel/plugin-transform-classes" "^7.16.5" 834 | "@babel/plugin-transform-computed-properties" "^7.16.5" 835 | "@babel/plugin-transform-destructuring" "^7.16.5" 836 | "@babel/plugin-transform-dotall-regex" "^7.16.5" 837 | "@babel/plugin-transform-duplicate-keys" "^7.16.5" 838 | "@babel/plugin-transform-exponentiation-operator" "^7.16.5" 839 | "@babel/plugin-transform-for-of" "^7.16.5" 840 | "@babel/plugin-transform-function-name" "^7.16.5" 841 | "@babel/plugin-transform-literals" "^7.16.5" 842 | "@babel/plugin-transform-member-expression-literals" "^7.16.5" 843 | "@babel/plugin-transform-modules-amd" "^7.16.5" 844 | "@babel/plugin-transform-modules-commonjs" "^7.16.5" 845 | "@babel/plugin-transform-modules-systemjs" "^7.16.5" 846 | "@babel/plugin-transform-modules-umd" "^7.16.5" 847 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.5" 848 | "@babel/plugin-transform-new-target" "^7.16.5" 849 | "@babel/plugin-transform-object-super" "^7.16.5" 850 | "@babel/plugin-transform-parameters" "^7.16.5" 851 | "@babel/plugin-transform-property-literals" "^7.16.5" 852 | "@babel/plugin-transform-regenerator" "^7.16.5" 853 | "@babel/plugin-transform-reserved-words" "^7.16.5" 854 | "@babel/plugin-transform-shorthand-properties" "^7.16.5" 855 | "@babel/plugin-transform-spread" "^7.16.5" 856 | "@babel/plugin-transform-sticky-regex" "^7.16.5" 857 | "@babel/plugin-transform-template-literals" "^7.16.5" 858 | "@babel/plugin-transform-typeof-symbol" "^7.16.5" 859 | "@babel/plugin-transform-unicode-escapes" "^7.16.5" 860 | "@babel/plugin-transform-unicode-regex" "^7.16.5" 861 | "@babel/preset-modules" "^0.1.5" 862 | "@babel/types" "^7.16.0" 863 | babel-plugin-polyfill-corejs2 "^0.3.0" 864 | babel-plugin-polyfill-corejs3 "^0.4.0" 865 | babel-plugin-polyfill-regenerator "^0.3.0" 866 | core-js-compat "^3.19.1" 867 | semver "^6.3.0" 868 | 869 | "@babel/preset-modules@^0.1.5": 870 | version "0.1.5" 871 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" 872 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== 873 | dependencies: 874 | "@babel/helper-plugin-utils" "^7.0.0" 875 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 876 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 877 | "@babel/types" "^7.4.4" 878 | esutils "^2.0.2" 879 | 880 | "@babel/preset-typescript@^7.16.5": 881 | version "7.16.5" 882 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.5.tgz#b86a5b0ae739ba741347d2f58c52f52e63cf1ba1" 883 | integrity sha512-lmAWRoJ9iOSvs3DqOndQpj8XqXkzaiQs50VG/zESiI9D3eoZhGriU675xNCr0UwvsuXrhMAGvyk1w+EVWF3u8Q== 884 | dependencies: 885 | "@babel/helper-plugin-utils" "^7.16.5" 886 | "@babel/helper-validator-option" "^7.14.5" 887 | "@babel/plugin-transform-typescript" "^7.16.1" 888 | 889 | "@babel/runtime@^7.8.4": 890 | version "7.16.5" 891 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.5.tgz#7f3e34bf8bdbbadf03fbb7b1ea0d929569c9487a" 892 | integrity sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA== 893 | dependencies: 894 | regenerator-runtime "^0.13.4" 895 | 896 | "@babel/template@^7.16.0", "@babel/template@^7.3.3": 897 | version "7.16.0" 898 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" 899 | integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== 900 | dependencies: 901 | "@babel/code-frame" "^7.16.0" 902 | "@babel/parser" "^7.16.0" 903 | "@babel/types" "^7.16.0" 904 | 905 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.5", "@babel/traverse@^7.7.2": 906 | version "7.16.5" 907 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.5.tgz#d7d400a8229c714a59b87624fc67b0f1fbd4b2b3" 908 | integrity sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ== 909 | dependencies: 910 | "@babel/code-frame" "^7.16.0" 911 | "@babel/generator" "^7.16.5" 912 | "@babel/helper-environment-visitor" "^7.16.5" 913 | "@babel/helper-function-name" "^7.16.0" 914 | "@babel/helper-hoist-variables" "^7.16.0" 915 | "@babel/helper-split-export-declaration" "^7.16.0" 916 | "@babel/parser" "^7.16.5" 917 | "@babel/types" "^7.16.0" 918 | debug "^4.1.0" 919 | globals "^11.1.0" 920 | 921 | "@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": 922 | version "7.16.0" 923 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" 924 | integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== 925 | dependencies: 926 | "@babel/helper-validator-identifier" "^7.15.7" 927 | to-fast-properties "^2.0.0" 928 | 929 | "@bcoe/v8-coverage@^0.2.3": 930 | version "0.2.3" 931 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 932 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 933 | 934 | "@istanbuljs/load-nyc-config@^1.0.0": 935 | version "1.1.0" 936 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 937 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 938 | dependencies: 939 | camelcase "^5.3.1" 940 | find-up "^4.1.0" 941 | get-package-type "^0.1.0" 942 | js-yaml "^3.13.1" 943 | resolve-from "^5.0.0" 944 | 945 | "@istanbuljs/schema@^0.1.2": 946 | version "0.1.3" 947 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 948 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 949 | 950 | "@jest/console@^27.4.2": 951 | version "27.4.2" 952 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.4.2.tgz#7a95612d38c007ddb528ee446fe5e5e785e685ce" 953 | integrity sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg== 954 | dependencies: 955 | "@jest/types" "^27.4.2" 956 | "@types/node" "*" 957 | chalk "^4.0.0" 958 | jest-message-util "^27.4.2" 959 | jest-util "^27.4.2" 960 | slash "^3.0.0" 961 | 962 | "@jest/core@^27.4.5": 963 | version "27.4.5" 964 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.4.5.tgz#cae2dc34259782f4866c6606c3b480cce920ed4c" 965 | integrity sha512-3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ== 966 | dependencies: 967 | "@jest/console" "^27.4.2" 968 | "@jest/reporters" "^27.4.5" 969 | "@jest/test-result" "^27.4.2" 970 | "@jest/transform" "^27.4.5" 971 | "@jest/types" "^27.4.2" 972 | "@types/node" "*" 973 | ansi-escapes "^4.2.1" 974 | chalk "^4.0.0" 975 | emittery "^0.8.1" 976 | exit "^0.1.2" 977 | graceful-fs "^4.2.4" 978 | jest-changed-files "^27.4.2" 979 | jest-config "^27.4.5" 980 | jest-haste-map "^27.4.5" 981 | jest-message-util "^27.4.2" 982 | jest-regex-util "^27.4.0" 983 | jest-resolve "^27.4.5" 984 | jest-resolve-dependencies "^27.4.5" 985 | jest-runner "^27.4.5" 986 | jest-runtime "^27.4.5" 987 | jest-snapshot "^27.4.5" 988 | jest-util "^27.4.2" 989 | jest-validate "^27.4.2" 990 | jest-watcher "^27.4.2" 991 | micromatch "^4.0.4" 992 | rimraf "^3.0.0" 993 | slash "^3.0.0" 994 | strip-ansi "^6.0.0" 995 | 996 | "@jest/environment@^27.4.4": 997 | version "27.4.4" 998 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.4.4.tgz#66ebebc79673d84aad29d2bb70a8c51e6c29bb4d" 999 | integrity sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ== 1000 | dependencies: 1001 | "@jest/fake-timers" "^27.4.2" 1002 | "@jest/types" "^27.4.2" 1003 | "@types/node" "*" 1004 | jest-mock "^27.4.2" 1005 | 1006 | "@jest/fake-timers@^27.4.2": 1007 | version "27.4.2" 1008 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.4.2.tgz#d217f86c3ba2027bf29e0b731fd0cb761a72d093" 1009 | integrity sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg== 1010 | dependencies: 1011 | "@jest/types" "^27.4.2" 1012 | "@sinonjs/fake-timers" "^8.0.1" 1013 | "@types/node" "*" 1014 | jest-message-util "^27.4.2" 1015 | jest-mock "^27.4.2" 1016 | jest-util "^27.4.2" 1017 | 1018 | "@jest/globals@^27.4.4": 1019 | version "27.4.4" 1020 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.4.4.tgz#fe501a80c23ea2dab585c42be2a519bb5e38530d" 1021 | integrity sha512-bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ== 1022 | dependencies: 1023 | "@jest/environment" "^27.4.4" 1024 | "@jest/types" "^27.4.2" 1025 | expect "^27.4.2" 1026 | 1027 | "@jest/reporters@^27.4.5": 1028 | version "27.4.5" 1029 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.4.5.tgz#e229acca48d18ea39e805540c1c322b075ae63ad" 1030 | integrity sha512-3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA== 1031 | dependencies: 1032 | "@bcoe/v8-coverage" "^0.2.3" 1033 | "@jest/console" "^27.4.2" 1034 | "@jest/test-result" "^27.4.2" 1035 | "@jest/transform" "^27.4.5" 1036 | "@jest/types" "^27.4.2" 1037 | "@types/node" "*" 1038 | chalk "^4.0.0" 1039 | collect-v8-coverage "^1.0.0" 1040 | exit "^0.1.2" 1041 | glob "^7.1.2" 1042 | graceful-fs "^4.2.4" 1043 | istanbul-lib-coverage "^3.0.0" 1044 | istanbul-lib-instrument "^4.0.3" 1045 | istanbul-lib-report "^3.0.0" 1046 | istanbul-lib-source-maps "^4.0.0" 1047 | istanbul-reports "^3.0.2" 1048 | jest-haste-map "^27.4.5" 1049 | jest-resolve "^27.4.5" 1050 | jest-util "^27.4.2" 1051 | jest-worker "^27.4.5" 1052 | slash "^3.0.0" 1053 | source-map "^0.6.0" 1054 | string-length "^4.0.1" 1055 | terminal-link "^2.0.0" 1056 | v8-to-istanbul "^8.1.0" 1057 | 1058 | "@jest/source-map@^27.4.0": 1059 | version "27.4.0" 1060 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.4.0.tgz#2f0385d0d884fb3e2554e8f71f8fa957af9a74b6" 1061 | integrity sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ== 1062 | dependencies: 1063 | callsites "^3.0.0" 1064 | graceful-fs "^4.2.4" 1065 | source-map "^0.6.0" 1066 | 1067 | "@jest/test-result@^27.4.2": 1068 | version "27.4.2" 1069 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.4.2.tgz#05fd4a5466ec502f3eae0b39dff2b93ea4d5d9ec" 1070 | integrity sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA== 1071 | dependencies: 1072 | "@jest/console" "^27.4.2" 1073 | "@jest/types" "^27.4.2" 1074 | "@types/istanbul-lib-coverage" "^2.0.0" 1075 | collect-v8-coverage "^1.0.0" 1076 | 1077 | "@jest/test-sequencer@^27.4.5": 1078 | version "27.4.5" 1079 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.4.5.tgz#1d7e026844d343b60d2ca7fd82c579a17b445d7d" 1080 | integrity sha512-n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ== 1081 | dependencies: 1082 | "@jest/test-result" "^27.4.2" 1083 | graceful-fs "^4.2.4" 1084 | jest-haste-map "^27.4.5" 1085 | jest-runtime "^27.4.5" 1086 | 1087 | "@jest/transform@^27.4.5": 1088 | version "27.4.5" 1089 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.4.5.tgz#3dfe2e3680cd4aa27356172bf25617ab5b94f195" 1090 | integrity sha512-PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew== 1091 | dependencies: 1092 | "@babel/core" "^7.1.0" 1093 | "@jest/types" "^27.4.2" 1094 | babel-plugin-istanbul "^6.0.0" 1095 | chalk "^4.0.0" 1096 | convert-source-map "^1.4.0" 1097 | fast-json-stable-stringify "^2.0.0" 1098 | graceful-fs "^4.2.4" 1099 | jest-haste-map "^27.4.5" 1100 | jest-regex-util "^27.4.0" 1101 | jest-util "^27.4.2" 1102 | micromatch "^4.0.4" 1103 | pirates "^4.0.1" 1104 | slash "^3.0.0" 1105 | source-map "^0.6.1" 1106 | write-file-atomic "^3.0.0" 1107 | 1108 | "@jest/types@^27.4.2": 1109 | version "27.4.2" 1110 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.4.2.tgz#96536ebd34da6392c2b7c7737d693885b5dd44a5" 1111 | integrity sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg== 1112 | dependencies: 1113 | "@types/istanbul-lib-coverage" "^2.0.0" 1114 | "@types/istanbul-reports" "^3.0.0" 1115 | "@types/node" "*" 1116 | "@types/yargs" "^16.0.0" 1117 | chalk "^4.0.0" 1118 | 1119 | "@rollup/plugin-typescript@^8.3.0": 1120 | version "8.3.0" 1121 | resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.3.0.tgz#bc1077fa5897b980fc27e376c4e377882c63e68b" 1122 | integrity sha512-I5FpSvLbtAdwJ+naznv+B4sjXZUcIvLLceYpITAn7wAP8W0wqc5noLdGIp9HGVntNhRWXctwPYrSSFQxtl0FPA== 1123 | dependencies: 1124 | "@rollup/pluginutils" "^3.1.0" 1125 | resolve "^1.17.0" 1126 | 1127 | "@rollup/pluginutils@^3.1.0": 1128 | version "3.1.0" 1129 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 1130 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 1131 | dependencies: 1132 | "@types/estree" "0.0.39" 1133 | estree-walker "^1.0.1" 1134 | picomatch "^2.2.2" 1135 | 1136 | "@sinonjs/commons@^1.7.0": 1137 | version "1.8.3" 1138 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 1139 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 1140 | dependencies: 1141 | type-detect "4.0.8" 1142 | 1143 | "@sinonjs/fake-timers@^8.0.1": 1144 | version "8.1.0" 1145 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7" 1146 | integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== 1147 | dependencies: 1148 | "@sinonjs/commons" "^1.7.0" 1149 | 1150 | "@tootallnate/once@1": 1151 | version "1.1.2" 1152 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 1153 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 1154 | 1155 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 1156 | version "7.1.17" 1157 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.17.tgz#f50ac9d20d64153b510578d84f9643f9a3afbe64" 1158 | integrity sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A== 1159 | dependencies: 1160 | "@babel/parser" "^7.1.0" 1161 | "@babel/types" "^7.0.0" 1162 | "@types/babel__generator" "*" 1163 | "@types/babel__template" "*" 1164 | "@types/babel__traverse" "*" 1165 | 1166 | "@types/babel__generator@*": 1167 | version "7.6.4" 1168 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" 1169 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 1170 | dependencies: 1171 | "@babel/types" "^7.0.0" 1172 | 1173 | "@types/babel__template@*": 1174 | version "7.4.1" 1175 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 1176 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 1177 | dependencies: 1178 | "@babel/parser" "^7.1.0" 1179 | "@babel/types" "^7.0.0" 1180 | 1181 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 1182 | version "7.14.2" 1183 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 1184 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 1185 | dependencies: 1186 | "@babel/types" "^7.3.0" 1187 | 1188 | "@types/estree@0.0.39": 1189 | version "0.0.39" 1190 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 1191 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1192 | 1193 | "@types/graceful-fs@^4.1.2": 1194 | version "4.1.5" 1195 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 1196 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 1197 | dependencies: 1198 | "@types/node" "*" 1199 | 1200 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1201 | version "2.0.4" 1202 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" 1203 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 1204 | 1205 | "@types/istanbul-lib-report@*": 1206 | version "3.0.0" 1207 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 1208 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 1209 | dependencies: 1210 | "@types/istanbul-lib-coverage" "*" 1211 | 1212 | "@types/istanbul-reports@^3.0.0": 1213 | version "3.0.1" 1214 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 1215 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 1216 | dependencies: 1217 | "@types/istanbul-lib-report" "*" 1218 | 1219 | "@types/jest@^27.0.3": 1220 | version "27.0.3" 1221 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.3.tgz#0cf9dfe9009e467f70a342f0f94ead19842a783a" 1222 | integrity sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg== 1223 | dependencies: 1224 | jest-diff "^27.0.0" 1225 | pretty-format "^27.0.0" 1226 | 1227 | "@types/node@*": 1228 | version "17.0.4" 1229 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.4.tgz#fec0ce0526abb6062fd206d72a642811b887a111" 1230 | integrity sha512-6xwbrW4JJiJLgF+zNypN5wr2ykM9/jHcL7rQ8fZe2vuftggjzZeRSM4OwRc6Xk8qWjwJ99qVHo/JgOGmomWRog== 1231 | 1232 | "@types/prettier@^2.1.5": 1233 | version "2.4.2" 1234 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.2.tgz#4c62fae93eb479660c3bd93f9d24d561597a8281" 1235 | integrity sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA== 1236 | 1237 | "@types/stack-utils@^2.0.0": 1238 | version "2.0.1" 1239 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 1240 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 1241 | 1242 | "@types/yargs-parser@*": 1243 | version "20.2.1" 1244 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 1245 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 1246 | 1247 | "@types/yargs@^16.0.0": 1248 | version "16.0.4" 1249 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 1250 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 1251 | dependencies: 1252 | "@types/yargs-parser" "*" 1253 | 1254 | abab@^2.0.3, abab@^2.0.5: 1255 | version "2.0.5" 1256 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 1257 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 1258 | 1259 | acorn-globals@^6.0.0: 1260 | version "6.0.0" 1261 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 1262 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 1263 | dependencies: 1264 | acorn "^7.1.1" 1265 | acorn-walk "^7.1.1" 1266 | 1267 | acorn-walk@^7.1.1: 1268 | version "7.2.0" 1269 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1270 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1271 | 1272 | acorn@^7.1.1: 1273 | version "7.4.1" 1274 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1275 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1276 | 1277 | acorn@^8.2.4: 1278 | version "8.6.0" 1279 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.6.0.tgz#e3692ba0eb1a0c83eaa4f37f5fa7368dd7142895" 1280 | integrity sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw== 1281 | 1282 | agent-base@6: 1283 | version "6.0.2" 1284 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 1285 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 1286 | dependencies: 1287 | debug "4" 1288 | 1289 | ansi-escapes@^4.2.1: 1290 | version "4.3.2" 1291 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 1292 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 1293 | dependencies: 1294 | type-fest "^0.21.3" 1295 | 1296 | ansi-regex@^5.0.1: 1297 | version "5.0.1" 1298 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 1299 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1300 | 1301 | ansi-styles@^3.2.1: 1302 | version "3.2.1" 1303 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1304 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1305 | dependencies: 1306 | color-convert "^1.9.0" 1307 | 1308 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1309 | version "4.3.0" 1310 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1311 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1312 | dependencies: 1313 | color-convert "^2.0.1" 1314 | 1315 | ansi-styles@^5.0.0: 1316 | version "5.2.0" 1317 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 1318 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 1319 | 1320 | anymatch@^3.0.3: 1321 | version "3.1.2" 1322 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 1323 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 1324 | dependencies: 1325 | normalize-path "^3.0.0" 1326 | picomatch "^2.0.4" 1327 | 1328 | argparse@^1.0.7: 1329 | version "1.0.10" 1330 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1331 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1332 | dependencies: 1333 | sprintf-js "~1.0.2" 1334 | 1335 | asynckit@^0.4.0: 1336 | version "0.4.0" 1337 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1338 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1339 | 1340 | babel-jest@^27.4.5: 1341 | version "27.4.5" 1342 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.4.5.tgz#d38bd0be8ea71d8b97853a5fc9f76deeb095c709" 1343 | integrity sha512-3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA== 1344 | dependencies: 1345 | "@jest/transform" "^27.4.5" 1346 | "@jest/types" "^27.4.2" 1347 | "@types/babel__core" "^7.1.14" 1348 | babel-plugin-istanbul "^6.0.0" 1349 | babel-preset-jest "^27.4.0" 1350 | chalk "^4.0.0" 1351 | graceful-fs "^4.2.4" 1352 | slash "^3.0.0" 1353 | 1354 | babel-plugin-dynamic-import-node@^2.3.3: 1355 | version "2.3.3" 1356 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1357 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1358 | dependencies: 1359 | object.assign "^4.1.0" 1360 | 1361 | babel-plugin-istanbul@^6.0.0: 1362 | version "6.1.1" 1363 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 1364 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 1365 | dependencies: 1366 | "@babel/helper-plugin-utils" "^7.0.0" 1367 | "@istanbuljs/load-nyc-config" "^1.0.0" 1368 | "@istanbuljs/schema" "^0.1.2" 1369 | istanbul-lib-instrument "^5.0.4" 1370 | test-exclude "^6.0.0" 1371 | 1372 | babel-plugin-jest-hoist@^27.4.0: 1373 | version "27.4.0" 1374 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz#d7831fc0f93573788d80dee7e682482da4c730d6" 1375 | integrity sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw== 1376 | dependencies: 1377 | "@babel/template" "^7.3.3" 1378 | "@babel/types" "^7.3.3" 1379 | "@types/babel__core" "^7.0.0" 1380 | "@types/babel__traverse" "^7.0.6" 1381 | 1382 | babel-plugin-polyfill-corejs2@^0.3.0: 1383 | version "0.3.0" 1384 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz#407082d0d355ba565af24126fb6cb8e9115251fd" 1385 | integrity sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA== 1386 | dependencies: 1387 | "@babel/compat-data" "^7.13.11" 1388 | "@babel/helper-define-polyfill-provider" "^0.3.0" 1389 | semver "^6.1.1" 1390 | 1391 | babel-plugin-polyfill-corejs3@^0.4.0: 1392 | version "0.4.0" 1393 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz#0b571f4cf3d67f911512f5c04842a7b8e8263087" 1394 | integrity sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw== 1395 | dependencies: 1396 | "@babel/helper-define-polyfill-provider" "^0.3.0" 1397 | core-js-compat "^3.18.0" 1398 | 1399 | babel-plugin-polyfill-regenerator@^0.3.0: 1400 | version "0.3.0" 1401 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz#9ebbcd7186e1a33e21c5e20cae4e7983949533be" 1402 | integrity sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg== 1403 | dependencies: 1404 | "@babel/helper-define-polyfill-provider" "^0.3.0" 1405 | 1406 | babel-preset-current-node-syntax@^1.0.0: 1407 | version "1.0.1" 1408 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 1409 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 1410 | dependencies: 1411 | "@babel/plugin-syntax-async-generators" "^7.8.4" 1412 | "@babel/plugin-syntax-bigint" "^7.8.3" 1413 | "@babel/plugin-syntax-class-properties" "^7.8.3" 1414 | "@babel/plugin-syntax-import-meta" "^7.8.3" 1415 | "@babel/plugin-syntax-json-strings" "^7.8.3" 1416 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1417 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1418 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1419 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1420 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1421 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1422 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 1423 | 1424 | babel-preset-jest@^27.4.0: 1425 | version "27.4.0" 1426 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz#70d0e676a282ccb200fbabd7f415db5fdf393bca" 1427 | integrity sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg== 1428 | dependencies: 1429 | babel-plugin-jest-hoist "^27.4.0" 1430 | babel-preset-current-node-syntax "^1.0.0" 1431 | 1432 | balanced-match@^1.0.0: 1433 | version "1.0.2" 1434 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1435 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1436 | 1437 | brace-expansion@^1.1.7: 1438 | version "1.1.11" 1439 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1440 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1441 | dependencies: 1442 | balanced-match "^1.0.0" 1443 | concat-map "0.0.1" 1444 | 1445 | braces@^3.0.1: 1446 | version "3.0.2" 1447 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1448 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1449 | dependencies: 1450 | fill-range "^7.0.1" 1451 | 1452 | browser-process-hrtime@^1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1455 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1456 | 1457 | browserslist@^4.17.5, browserslist@^4.19.1: 1458 | version "4.19.1" 1459 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3" 1460 | integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== 1461 | dependencies: 1462 | caniuse-lite "^1.0.30001286" 1463 | electron-to-chromium "^1.4.17" 1464 | escalade "^3.1.1" 1465 | node-releases "^2.0.1" 1466 | picocolors "^1.0.0" 1467 | 1468 | bser@2.1.1: 1469 | version "2.1.1" 1470 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 1471 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1472 | dependencies: 1473 | node-int64 "^0.4.0" 1474 | 1475 | buffer-from@^1.0.0: 1476 | version "1.1.2" 1477 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 1478 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1479 | 1480 | call-bind@^1.0.0: 1481 | version "1.0.2" 1482 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1483 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1484 | dependencies: 1485 | function-bind "^1.1.1" 1486 | get-intrinsic "^1.0.2" 1487 | 1488 | callsites@^3.0.0: 1489 | version "3.1.0" 1490 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1491 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1492 | 1493 | camelcase@^5.3.1: 1494 | version "5.3.1" 1495 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1496 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1497 | 1498 | camelcase@^6.2.0: 1499 | version "6.2.1" 1500 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.1.tgz#250fd350cfd555d0d2160b1d51510eaf8326e86e" 1501 | integrity sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA== 1502 | 1503 | caniuse-lite@^1.0.30001286: 1504 | version "1.0.30001292" 1505 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz#4a55f61c06abc9595965cfd77897dc7bc1cdc456" 1506 | integrity sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw== 1507 | 1508 | chalk@^2.0.0: 1509 | version "2.4.2" 1510 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1511 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1512 | dependencies: 1513 | ansi-styles "^3.2.1" 1514 | escape-string-regexp "^1.0.5" 1515 | supports-color "^5.3.0" 1516 | 1517 | chalk@^4.0.0: 1518 | version "4.1.2" 1519 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1520 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1521 | dependencies: 1522 | ansi-styles "^4.1.0" 1523 | supports-color "^7.1.0" 1524 | 1525 | char-regex@^1.0.2: 1526 | version "1.0.2" 1527 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1528 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1529 | 1530 | ci-info@^3.2.0: 1531 | version "3.3.0" 1532 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" 1533 | integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== 1534 | 1535 | cjs-module-lexer@^1.0.0: 1536 | version "1.2.2" 1537 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 1538 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 1539 | 1540 | cliui@^7.0.2: 1541 | version "7.0.4" 1542 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 1543 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 1544 | dependencies: 1545 | string-width "^4.2.0" 1546 | strip-ansi "^6.0.0" 1547 | wrap-ansi "^7.0.0" 1548 | 1549 | co@^4.6.0: 1550 | version "4.6.0" 1551 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1552 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1553 | 1554 | collect-v8-coverage@^1.0.0: 1555 | version "1.0.1" 1556 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 1557 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 1558 | 1559 | color-convert@^1.9.0: 1560 | version "1.9.3" 1561 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1562 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1563 | dependencies: 1564 | color-name "1.1.3" 1565 | 1566 | color-convert@^2.0.1: 1567 | version "2.0.1" 1568 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1569 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1570 | dependencies: 1571 | color-name "~1.1.4" 1572 | 1573 | color-name@1.1.3: 1574 | version "1.1.3" 1575 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1576 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1577 | 1578 | color-name@~1.1.4: 1579 | version "1.1.4" 1580 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1581 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1582 | 1583 | combined-stream@^1.0.8: 1584 | version "1.0.8" 1585 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1586 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1587 | dependencies: 1588 | delayed-stream "~1.0.0" 1589 | 1590 | concat-map@0.0.1: 1591 | version "0.0.1" 1592 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1593 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1594 | 1595 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1596 | version "1.8.0" 1597 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 1598 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1599 | dependencies: 1600 | safe-buffer "~5.1.1" 1601 | 1602 | core-js-compat@^3.18.0, core-js-compat@^3.19.1: 1603 | version "3.20.1" 1604 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.1.tgz#96917b4db634fbbbc7b36575b2e8fcbf7e4f9691" 1605 | integrity sha512-AVhKZNpqMV3Jz8hU0YEXXE06qoxtQGsAqU0u1neUngz5IusDJRX/ZJ6t3i7mS7QxNyEONbCo14GprkBrxPlTZA== 1606 | dependencies: 1607 | browserslist "^4.19.1" 1608 | semver "7.0.0" 1609 | 1610 | cross-spawn@^7.0.3: 1611 | version "7.0.3" 1612 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1613 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1614 | dependencies: 1615 | path-key "^3.1.0" 1616 | shebang-command "^2.0.0" 1617 | which "^2.0.1" 1618 | 1619 | cssom@^0.4.4: 1620 | version "0.4.4" 1621 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 1622 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 1623 | 1624 | cssom@~0.3.6: 1625 | version "0.3.8" 1626 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1627 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1628 | 1629 | cssstyle@^2.3.0: 1630 | version "2.3.0" 1631 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1632 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1633 | dependencies: 1634 | cssom "~0.3.6" 1635 | 1636 | data-urls@^2.0.0: 1637 | version "2.0.0" 1638 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1639 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1640 | dependencies: 1641 | abab "^2.0.3" 1642 | whatwg-mimetype "^2.3.0" 1643 | whatwg-url "^8.0.0" 1644 | 1645 | debug@4, debug@^4.1.0, debug@^4.1.1: 1646 | version "4.3.3" 1647 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 1648 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 1649 | dependencies: 1650 | ms "2.1.2" 1651 | 1652 | decimal.js@^10.2.1: 1653 | version "10.3.1" 1654 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1655 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1656 | 1657 | dedent@^0.7.0: 1658 | version "0.7.0" 1659 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1660 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1661 | 1662 | deep-is@~0.1.3: 1663 | version "0.1.4" 1664 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1665 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1666 | 1667 | deepmerge@^4.2.2: 1668 | version "4.2.2" 1669 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1670 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1671 | 1672 | define-properties@^1.1.3: 1673 | version "1.1.3" 1674 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1675 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1676 | dependencies: 1677 | object-keys "^1.0.12" 1678 | 1679 | delayed-stream@~1.0.0: 1680 | version "1.0.0" 1681 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1682 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1683 | 1684 | detect-newline@^3.0.0: 1685 | version "3.1.0" 1686 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1687 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1688 | 1689 | diff-sequences@^27.4.0: 1690 | version "27.4.0" 1691 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.4.0.tgz#d783920ad8d06ec718a060d00196dfef25b132a5" 1692 | integrity sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww== 1693 | 1694 | domexception@^2.0.1: 1695 | version "2.0.1" 1696 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1697 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1698 | dependencies: 1699 | webidl-conversions "^5.0.0" 1700 | 1701 | electron-to-chromium@^1.4.17: 1702 | version "1.4.28" 1703 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.28.tgz#fef0e92e281df6d568f482d8d53c34ca5374de48" 1704 | integrity sha512-Gzbf0wUtKfyPaqf0Plz+Ctinf9eQIzxEqBHwSvbGfeOm9GMNdLxyu1dNiCUfM+x6r4BE0xUJNh3Nmg9gfAtTmg== 1705 | 1706 | emittery@^0.8.1: 1707 | version "0.8.1" 1708 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1709 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1710 | 1711 | emoji-regex@^8.0.0: 1712 | version "8.0.0" 1713 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1714 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1715 | 1716 | escalade@^3.1.1: 1717 | version "3.1.1" 1718 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1719 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1720 | 1721 | escape-string-regexp@^1.0.5: 1722 | version "1.0.5" 1723 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1724 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1725 | 1726 | escape-string-regexp@^2.0.0: 1727 | version "2.0.0" 1728 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1729 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1730 | 1731 | escodegen@^2.0.0: 1732 | version "2.0.0" 1733 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1734 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1735 | dependencies: 1736 | esprima "^4.0.1" 1737 | estraverse "^5.2.0" 1738 | esutils "^2.0.2" 1739 | optionator "^0.8.1" 1740 | optionalDependencies: 1741 | source-map "~0.6.1" 1742 | 1743 | esprima@^4.0.0, esprima@^4.0.1: 1744 | version "4.0.1" 1745 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1746 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1747 | 1748 | estraverse@^5.2.0: 1749 | version "5.3.0" 1750 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1751 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1752 | 1753 | estree-walker@^1.0.1: 1754 | version "1.0.1" 1755 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 1756 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 1757 | 1758 | esutils@^2.0.2: 1759 | version "2.0.3" 1760 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1761 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1762 | 1763 | execa@^5.0.0: 1764 | version "5.1.1" 1765 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1766 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1767 | dependencies: 1768 | cross-spawn "^7.0.3" 1769 | get-stream "^6.0.0" 1770 | human-signals "^2.1.0" 1771 | is-stream "^2.0.0" 1772 | merge-stream "^2.0.0" 1773 | npm-run-path "^4.0.1" 1774 | onetime "^5.1.2" 1775 | signal-exit "^3.0.3" 1776 | strip-final-newline "^2.0.0" 1777 | 1778 | exit@^0.1.2: 1779 | version "0.1.2" 1780 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1781 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1782 | 1783 | expect@^27.4.2: 1784 | version "27.4.2" 1785 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.4.2.tgz#4429b0f7e307771d176de9bdf23229b101db6ef6" 1786 | integrity sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg== 1787 | dependencies: 1788 | "@jest/types" "^27.4.2" 1789 | ansi-styles "^5.0.0" 1790 | jest-get-type "^27.4.0" 1791 | jest-matcher-utils "^27.4.2" 1792 | jest-message-util "^27.4.2" 1793 | jest-regex-util "^27.4.0" 1794 | 1795 | fast-json-stable-stringify@^2.0.0: 1796 | version "2.1.0" 1797 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1798 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1799 | 1800 | fast-levenshtein@~2.0.6: 1801 | version "2.0.6" 1802 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1803 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1804 | 1805 | fb-watchman@^2.0.0: 1806 | version "2.0.1" 1807 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1808 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1809 | dependencies: 1810 | bser "2.1.1" 1811 | 1812 | fill-range@^7.0.1: 1813 | version "7.0.1" 1814 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1815 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1816 | dependencies: 1817 | to-regex-range "^5.0.1" 1818 | 1819 | find-up@^4.0.0, find-up@^4.1.0: 1820 | version "4.1.0" 1821 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1822 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1823 | dependencies: 1824 | locate-path "^5.0.0" 1825 | path-exists "^4.0.0" 1826 | 1827 | form-data@^3.0.0: 1828 | version "3.0.1" 1829 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1830 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1831 | dependencies: 1832 | asynckit "^0.4.0" 1833 | combined-stream "^1.0.8" 1834 | mime-types "^2.1.12" 1835 | 1836 | fs.realpath@^1.0.0: 1837 | version "1.0.0" 1838 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1839 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1840 | 1841 | fsevents@^2.3.2, fsevents@~2.3.2: 1842 | version "2.3.2" 1843 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1844 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1845 | 1846 | function-bind@^1.1.1: 1847 | version "1.1.1" 1848 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1849 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1850 | 1851 | gensync@^1.0.0-beta.2: 1852 | version "1.0.0-beta.2" 1853 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1854 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1855 | 1856 | get-caller-file@^2.0.5: 1857 | version "2.0.5" 1858 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1859 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1860 | 1861 | get-intrinsic@^1.0.2: 1862 | version "1.1.1" 1863 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1864 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1865 | dependencies: 1866 | function-bind "^1.1.1" 1867 | has "^1.0.3" 1868 | has-symbols "^1.0.1" 1869 | 1870 | get-package-type@^0.1.0: 1871 | version "0.1.0" 1872 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1873 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1874 | 1875 | get-stream@^6.0.0: 1876 | version "6.0.1" 1877 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1878 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1879 | 1880 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1881 | version "7.2.0" 1882 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1883 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1884 | dependencies: 1885 | fs.realpath "^1.0.0" 1886 | inflight "^1.0.4" 1887 | inherits "2" 1888 | minimatch "^3.0.4" 1889 | once "^1.3.0" 1890 | path-is-absolute "^1.0.0" 1891 | 1892 | globals@^11.1.0: 1893 | version "11.12.0" 1894 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1895 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1896 | 1897 | graceful-fs@^4.2.4: 1898 | version "4.2.8" 1899 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1900 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1901 | 1902 | has-flag@^3.0.0: 1903 | version "3.0.0" 1904 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1905 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1906 | 1907 | has-flag@^4.0.0: 1908 | version "4.0.0" 1909 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1910 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1911 | 1912 | has-symbols@^1.0.1: 1913 | version "1.0.2" 1914 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1915 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1916 | 1917 | has@^1.0.3: 1918 | version "1.0.3" 1919 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1920 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1921 | dependencies: 1922 | function-bind "^1.1.1" 1923 | 1924 | html-encoding-sniffer@^2.0.1: 1925 | version "2.0.1" 1926 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1927 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1928 | dependencies: 1929 | whatwg-encoding "^1.0.5" 1930 | 1931 | html-escaper@^2.0.0: 1932 | version "2.0.2" 1933 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1934 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1935 | 1936 | http-proxy-agent@^4.0.1: 1937 | version "4.0.1" 1938 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1939 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1940 | dependencies: 1941 | "@tootallnate/once" "1" 1942 | agent-base "6" 1943 | debug "4" 1944 | 1945 | https-proxy-agent@^5.0.0: 1946 | version "5.0.0" 1947 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1948 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1949 | dependencies: 1950 | agent-base "6" 1951 | debug "4" 1952 | 1953 | human-signals@^2.1.0: 1954 | version "2.1.0" 1955 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1956 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1957 | 1958 | iconv-lite@0.4.24: 1959 | version "0.4.24" 1960 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1961 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1962 | dependencies: 1963 | safer-buffer ">= 2.1.2 < 3" 1964 | 1965 | import-local@^3.0.2: 1966 | version "3.0.3" 1967 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" 1968 | integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 1969 | dependencies: 1970 | pkg-dir "^4.2.0" 1971 | resolve-cwd "^3.0.0" 1972 | 1973 | imurmurhash@^0.1.4: 1974 | version "0.1.4" 1975 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1976 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1977 | 1978 | inflight@^1.0.4: 1979 | version "1.0.6" 1980 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1981 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1982 | dependencies: 1983 | once "^1.3.0" 1984 | wrappy "1" 1985 | 1986 | inherits@2: 1987 | version "2.0.4" 1988 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1989 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1990 | 1991 | is-core-module@^2.2.0: 1992 | version "2.8.0" 1993 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" 1994 | integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== 1995 | dependencies: 1996 | has "^1.0.3" 1997 | 1998 | is-core-module@^2.8.1: 1999 | version "2.8.1" 2000 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 2001 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 2002 | dependencies: 2003 | has "^1.0.3" 2004 | 2005 | is-fullwidth-code-point@^3.0.0: 2006 | version "3.0.0" 2007 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 2008 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 2009 | 2010 | is-generator-fn@^2.0.0: 2011 | version "2.1.0" 2012 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 2013 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 2014 | 2015 | is-number@^7.0.0: 2016 | version "7.0.0" 2017 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 2018 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2019 | 2020 | is-potential-custom-element-name@^1.0.1: 2021 | version "1.0.1" 2022 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 2023 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 2024 | 2025 | is-stream@^2.0.0: 2026 | version "2.0.1" 2027 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 2028 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 2029 | 2030 | is-typedarray@^1.0.0: 2031 | version "1.0.0" 2032 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2033 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 2034 | 2035 | isexe@^2.0.0: 2036 | version "2.0.0" 2037 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2038 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2039 | 2040 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 2041 | version "3.2.0" 2042 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 2043 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 2044 | 2045 | istanbul-lib-instrument@^4.0.3: 2046 | version "4.0.3" 2047 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 2048 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 2049 | dependencies: 2050 | "@babel/core" "^7.7.5" 2051 | "@istanbuljs/schema" "^0.1.2" 2052 | istanbul-lib-coverage "^3.0.0" 2053 | semver "^6.3.0" 2054 | 2055 | istanbul-lib-instrument@^5.0.4: 2056 | version "5.1.0" 2057 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" 2058 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 2059 | dependencies: 2060 | "@babel/core" "^7.12.3" 2061 | "@babel/parser" "^7.14.7" 2062 | "@istanbuljs/schema" "^0.1.2" 2063 | istanbul-lib-coverage "^3.2.0" 2064 | semver "^6.3.0" 2065 | 2066 | istanbul-lib-report@^3.0.0: 2067 | version "3.0.0" 2068 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 2069 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 2070 | dependencies: 2071 | istanbul-lib-coverage "^3.0.0" 2072 | make-dir "^3.0.0" 2073 | supports-color "^7.1.0" 2074 | 2075 | istanbul-lib-source-maps@^4.0.0: 2076 | version "4.0.1" 2077 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 2078 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 2079 | dependencies: 2080 | debug "^4.1.1" 2081 | istanbul-lib-coverage "^3.0.0" 2082 | source-map "^0.6.1" 2083 | 2084 | istanbul-reports@^3.0.2: 2085 | version "3.1.2" 2086 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.2.tgz#b80e13cbab0120e1c367ebaa099862361aed5ead" 2087 | integrity sha512-0gHxuT1NNC0aEIL1zbJ+MTgPbbHhU77eJPuU35WKA7TgXiSNlCAx4PENoMrH0Or6M2H80TaZcWKhM0IK6V8gRw== 2088 | dependencies: 2089 | html-escaper "^2.0.0" 2090 | istanbul-lib-report "^3.0.0" 2091 | 2092 | jest-changed-files@^27.4.2: 2093 | version "27.4.2" 2094 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.4.2.tgz#da2547ea47c6e6a5f6ed336151bd2075736eb4a5" 2095 | integrity sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A== 2096 | dependencies: 2097 | "@jest/types" "^27.4.2" 2098 | execa "^5.0.0" 2099 | throat "^6.0.1" 2100 | 2101 | jest-circus@^27.4.5: 2102 | version "27.4.5" 2103 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.4.5.tgz#70bfb78e0200cab9b84747bf274debacaa538467" 2104 | integrity sha512-eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw== 2105 | dependencies: 2106 | "@jest/environment" "^27.4.4" 2107 | "@jest/test-result" "^27.4.2" 2108 | "@jest/types" "^27.4.2" 2109 | "@types/node" "*" 2110 | chalk "^4.0.0" 2111 | co "^4.6.0" 2112 | dedent "^0.7.0" 2113 | expect "^27.4.2" 2114 | is-generator-fn "^2.0.0" 2115 | jest-each "^27.4.2" 2116 | jest-matcher-utils "^27.4.2" 2117 | jest-message-util "^27.4.2" 2118 | jest-runtime "^27.4.5" 2119 | jest-snapshot "^27.4.5" 2120 | jest-util "^27.4.2" 2121 | pretty-format "^27.4.2" 2122 | slash "^3.0.0" 2123 | stack-utils "^2.0.3" 2124 | throat "^6.0.1" 2125 | 2126 | jest-cli@^27.4.5: 2127 | version "27.4.5" 2128 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.4.5.tgz#8708f54c28d13681f3255ec9026a2b15b03d41e8" 2129 | integrity sha512-hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg== 2130 | dependencies: 2131 | "@jest/core" "^27.4.5" 2132 | "@jest/test-result" "^27.4.2" 2133 | "@jest/types" "^27.4.2" 2134 | chalk "^4.0.0" 2135 | exit "^0.1.2" 2136 | graceful-fs "^4.2.4" 2137 | import-local "^3.0.2" 2138 | jest-config "^27.4.5" 2139 | jest-util "^27.4.2" 2140 | jest-validate "^27.4.2" 2141 | prompts "^2.0.1" 2142 | yargs "^16.2.0" 2143 | 2144 | jest-config@^27.4.5: 2145 | version "27.4.5" 2146 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.4.5.tgz#77ed7f2ba7bcfd7d740ade711d0d13512e08a59e" 2147 | integrity sha512-t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA== 2148 | dependencies: 2149 | "@babel/core" "^7.1.0" 2150 | "@jest/test-sequencer" "^27.4.5" 2151 | "@jest/types" "^27.4.2" 2152 | babel-jest "^27.4.5" 2153 | chalk "^4.0.0" 2154 | ci-info "^3.2.0" 2155 | deepmerge "^4.2.2" 2156 | glob "^7.1.1" 2157 | graceful-fs "^4.2.4" 2158 | jest-circus "^27.4.5" 2159 | jest-environment-jsdom "^27.4.4" 2160 | jest-environment-node "^27.4.4" 2161 | jest-get-type "^27.4.0" 2162 | jest-jasmine2 "^27.4.5" 2163 | jest-regex-util "^27.4.0" 2164 | jest-resolve "^27.4.5" 2165 | jest-runner "^27.4.5" 2166 | jest-util "^27.4.2" 2167 | jest-validate "^27.4.2" 2168 | micromatch "^4.0.4" 2169 | pretty-format "^27.4.2" 2170 | slash "^3.0.0" 2171 | 2172 | jest-diff@^27.0.0, jest-diff@^27.4.2: 2173 | version "27.4.2" 2174 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.4.2.tgz#786b2a5211d854f848e2dcc1e324448e9481f36f" 2175 | integrity sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q== 2176 | dependencies: 2177 | chalk "^4.0.0" 2178 | diff-sequences "^27.4.0" 2179 | jest-get-type "^27.4.0" 2180 | pretty-format "^27.4.2" 2181 | 2182 | jest-docblock@^27.4.0: 2183 | version "27.4.0" 2184 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.4.0.tgz#06c78035ca93cbbb84faf8fce64deae79a59f69f" 2185 | integrity sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg== 2186 | dependencies: 2187 | detect-newline "^3.0.0" 2188 | 2189 | jest-each@^27.4.2: 2190 | version "27.4.2" 2191 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.4.2.tgz#19364c82a692d0d26557642098d1f4619c9ee7d3" 2192 | integrity sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg== 2193 | dependencies: 2194 | "@jest/types" "^27.4.2" 2195 | chalk "^4.0.0" 2196 | jest-get-type "^27.4.0" 2197 | jest-util "^27.4.2" 2198 | pretty-format "^27.4.2" 2199 | 2200 | jest-environment-jsdom@^27.4.4: 2201 | version "27.4.4" 2202 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.4.4.tgz#94f738e99514d7a880e8ed8e03e3a321d43b49db" 2203 | integrity sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA== 2204 | dependencies: 2205 | "@jest/environment" "^27.4.4" 2206 | "@jest/fake-timers" "^27.4.2" 2207 | "@jest/types" "^27.4.2" 2208 | "@types/node" "*" 2209 | jest-mock "^27.4.2" 2210 | jest-util "^27.4.2" 2211 | jsdom "^16.6.0" 2212 | 2213 | jest-environment-node@^27.4.4: 2214 | version "27.4.4" 2215 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.4.4.tgz#42fe5e3b224cb69b99811ebf6f5eaa5a59618514" 2216 | integrity sha512-D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA== 2217 | dependencies: 2218 | "@jest/environment" "^27.4.4" 2219 | "@jest/fake-timers" "^27.4.2" 2220 | "@jest/types" "^27.4.2" 2221 | "@types/node" "*" 2222 | jest-mock "^27.4.2" 2223 | jest-util "^27.4.2" 2224 | 2225 | jest-get-type@^27.4.0: 2226 | version "27.4.0" 2227 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.4.0.tgz#7503d2663fffa431638337b3998d39c5e928e9b5" 2228 | integrity sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ== 2229 | 2230 | jest-haste-map@^27.4.5: 2231 | version "27.4.5" 2232 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.4.5.tgz#c2921224a59223f91e03ec15703905978ef0cc1a" 2233 | integrity sha512-oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q== 2234 | dependencies: 2235 | "@jest/types" "^27.4.2" 2236 | "@types/graceful-fs" "^4.1.2" 2237 | "@types/node" "*" 2238 | anymatch "^3.0.3" 2239 | fb-watchman "^2.0.0" 2240 | graceful-fs "^4.2.4" 2241 | jest-regex-util "^27.4.0" 2242 | jest-serializer "^27.4.0" 2243 | jest-util "^27.4.2" 2244 | jest-worker "^27.4.5" 2245 | micromatch "^4.0.4" 2246 | walker "^1.0.7" 2247 | optionalDependencies: 2248 | fsevents "^2.3.2" 2249 | 2250 | jest-jasmine2@^27.4.5: 2251 | version "27.4.5" 2252 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.4.5.tgz#ff79d11561679ff6c89715b0cd6b1e8c0dfbc6dc" 2253 | integrity sha512-oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw== 2254 | dependencies: 2255 | "@babel/traverse" "^7.1.0" 2256 | "@jest/environment" "^27.4.4" 2257 | "@jest/source-map" "^27.4.0" 2258 | "@jest/test-result" "^27.4.2" 2259 | "@jest/types" "^27.4.2" 2260 | "@types/node" "*" 2261 | chalk "^4.0.0" 2262 | co "^4.6.0" 2263 | expect "^27.4.2" 2264 | is-generator-fn "^2.0.0" 2265 | jest-each "^27.4.2" 2266 | jest-matcher-utils "^27.4.2" 2267 | jest-message-util "^27.4.2" 2268 | jest-runtime "^27.4.5" 2269 | jest-snapshot "^27.4.5" 2270 | jest-util "^27.4.2" 2271 | pretty-format "^27.4.2" 2272 | throat "^6.0.1" 2273 | 2274 | jest-leak-detector@^27.4.2: 2275 | version "27.4.2" 2276 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.4.2.tgz#7fc3120893a7a911c553f3f2bdff9faa4454abbb" 2277 | integrity sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw== 2278 | dependencies: 2279 | jest-get-type "^27.4.0" 2280 | pretty-format "^27.4.2" 2281 | 2282 | jest-matcher-utils@^27.4.2: 2283 | version "27.4.2" 2284 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.4.2.tgz#d17c5038607978a255e0a9a5c32c24e984b6c60b" 2285 | integrity sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ== 2286 | dependencies: 2287 | chalk "^4.0.0" 2288 | jest-diff "^27.4.2" 2289 | jest-get-type "^27.4.0" 2290 | pretty-format "^27.4.2" 2291 | 2292 | jest-message-util@^27.4.2: 2293 | version "27.4.2" 2294 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.4.2.tgz#07f3f1bf207d69cf798ce830cc57f1a849f99388" 2295 | integrity sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w== 2296 | dependencies: 2297 | "@babel/code-frame" "^7.12.13" 2298 | "@jest/types" "^27.4.2" 2299 | "@types/stack-utils" "^2.0.0" 2300 | chalk "^4.0.0" 2301 | graceful-fs "^4.2.4" 2302 | micromatch "^4.0.4" 2303 | pretty-format "^27.4.2" 2304 | slash "^3.0.0" 2305 | stack-utils "^2.0.3" 2306 | 2307 | jest-mock@^27.4.2: 2308 | version "27.4.2" 2309 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.4.2.tgz#184ff197a25491bfe4570c286daa5d62eb760b88" 2310 | integrity sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA== 2311 | dependencies: 2312 | "@jest/types" "^27.4.2" 2313 | "@types/node" "*" 2314 | 2315 | jest-pnp-resolver@^1.2.2: 2316 | version "1.2.2" 2317 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 2318 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 2319 | 2320 | jest-regex-util@^27.4.0: 2321 | version "27.4.0" 2322 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.4.0.tgz#e4c45b52653128843d07ad94aec34393ea14fbca" 2323 | integrity sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg== 2324 | 2325 | jest-resolve-dependencies@^27.4.5: 2326 | version "27.4.5" 2327 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.5.tgz#9398af854bdb12d6a9e5a8a536ee401f889a3ecf" 2328 | integrity sha512-elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w== 2329 | dependencies: 2330 | "@jest/types" "^27.4.2" 2331 | jest-regex-util "^27.4.0" 2332 | jest-snapshot "^27.4.5" 2333 | 2334 | jest-resolve@^27.4.5: 2335 | version "27.4.5" 2336 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.4.5.tgz#8dc44f5065fb8d58944c20f932cb7b9fe9760cca" 2337 | integrity sha512-xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw== 2338 | dependencies: 2339 | "@jest/types" "^27.4.2" 2340 | chalk "^4.0.0" 2341 | graceful-fs "^4.2.4" 2342 | jest-haste-map "^27.4.5" 2343 | jest-pnp-resolver "^1.2.2" 2344 | jest-util "^27.4.2" 2345 | jest-validate "^27.4.2" 2346 | resolve "^1.20.0" 2347 | resolve.exports "^1.1.0" 2348 | slash "^3.0.0" 2349 | 2350 | jest-runner@^27.4.5: 2351 | version "27.4.5" 2352 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.4.5.tgz#daba2ba71c8f34137dc7ac45616add35370a681e" 2353 | integrity sha512-/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg== 2354 | dependencies: 2355 | "@jest/console" "^27.4.2" 2356 | "@jest/environment" "^27.4.4" 2357 | "@jest/test-result" "^27.4.2" 2358 | "@jest/transform" "^27.4.5" 2359 | "@jest/types" "^27.4.2" 2360 | "@types/node" "*" 2361 | chalk "^4.0.0" 2362 | emittery "^0.8.1" 2363 | exit "^0.1.2" 2364 | graceful-fs "^4.2.4" 2365 | jest-docblock "^27.4.0" 2366 | jest-environment-jsdom "^27.4.4" 2367 | jest-environment-node "^27.4.4" 2368 | jest-haste-map "^27.4.5" 2369 | jest-leak-detector "^27.4.2" 2370 | jest-message-util "^27.4.2" 2371 | jest-resolve "^27.4.5" 2372 | jest-runtime "^27.4.5" 2373 | jest-util "^27.4.2" 2374 | jest-worker "^27.4.5" 2375 | source-map-support "^0.5.6" 2376 | throat "^6.0.1" 2377 | 2378 | jest-runtime@^27.4.5: 2379 | version "27.4.5" 2380 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.4.5.tgz#97703ad2a1799d4f50ab59049bd21a9ceaed2813" 2381 | integrity sha512-CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ== 2382 | dependencies: 2383 | "@jest/console" "^27.4.2" 2384 | "@jest/environment" "^27.4.4" 2385 | "@jest/globals" "^27.4.4" 2386 | "@jest/source-map" "^27.4.0" 2387 | "@jest/test-result" "^27.4.2" 2388 | "@jest/transform" "^27.4.5" 2389 | "@jest/types" "^27.4.2" 2390 | "@types/yargs" "^16.0.0" 2391 | chalk "^4.0.0" 2392 | cjs-module-lexer "^1.0.0" 2393 | collect-v8-coverage "^1.0.0" 2394 | execa "^5.0.0" 2395 | exit "^0.1.2" 2396 | glob "^7.1.3" 2397 | graceful-fs "^4.2.4" 2398 | jest-haste-map "^27.4.5" 2399 | jest-message-util "^27.4.2" 2400 | jest-mock "^27.4.2" 2401 | jest-regex-util "^27.4.0" 2402 | jest-resolve "^27.4.5" 2403 | jest-snapshot "^27.4.5" 2404 | jest-util "^27.4.2" 2405 | jest-validate "^27.4.2" 2406 | slash "^3.0.0" 2407 | strip-bom "^4.0.0" 2408 | yargs "^16.2.0" 2409 | 2410 | jest-serializer@^27.4.0: 2411 | version "27.4.0" 2412 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.4.0.tgz#34866586e1cae2388b7d12ffa2c7819edef5958a" 2413 | integrity sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ== 2414 | dependencies: 2415 | "@types/node" "*" 2416 | graceful-fs "^4.2.4" 2417 | 2418 | jest-snapshot@^27.4.5: 2419 | version "27.4.5" 2420 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.4.5.tgz#2ea909b20aac0fe62504bc161331f730b8a7ecc7" 2421 | integrity sha512-eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ== 2422 | dependencies: 2423 | "@babel/core" "^7.7.2" 2424 | "@babel/generator" "^7.7.2" 2425 | "@babel/parser" "^7.7.2" 2426 | "@babel/plugin-syntax-typescript" "^7.7.2" 2427 | "@babel/traverse" "^7.7.2" 2428 | "@babel/types" "^7.0.0" 2429 | "@jest/transform" "^27.4.5" 2430 | "@jest/types" "^27.4.2" 2431 | "@types/babel__traverse" "^7.0.4" 2432 | "@types/prettier" "^2.1.5" 2433 | babel-preset-current-node-syntax "^1.0.0" 2434 | chalk "^4.0.0" 2435 | expect "^27.4.2" 2436 | graceful-fs "^4.2.4" 2437 | jest-diff "^27.4.2" 2438 | jest-get-type "^27.4.0" 2439 | jest-haste-map "^27.4.5" 2440 | jest-matcher-utils "^27.4.2" 2441 | jest-message-util "^27.4.2" 2442 | jest-resolve "^27.4.5" 2443 | jest-util "^27.4.2" 2444 | natural-compare "^1.4.0" 2445 | pretty-format "^27.4.2" 2446 | semver "^7.3.2" 2447 | 2448 | jest-util@^27.4.2: 2449 | version "27.4.2" 2450 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.4.2.tgz#ed95b05b1adfd761e2cda47e0144c6a58e05a621" 2451 | integrity sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA== 2452 | dependencies: 2453 | "@jest/types" "^27.4.2" 2454 | "@types/node" "*" 2455 | chalk "^4.0.0" 2456 | ci-info "^3.2.0" 2457 | graceful-fs "^4.2.4" 2458 | picomatch "^2.2.3" 2459 | 2460 | jest-validate@^27.4.2: 2461 | version "27.4.2" 2462 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.4.2.tgz#eecfcc1b1c9429aa007da08a2bae4e32a81bbbc3" 2463 | integrity sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A== 2464 | dependencies: 2465 | "@jest/types" "^27.4.2" 2466 | camelcase "^6.2.0" 2467 | chalk "^4.0.0" 2468 | jest-get-type "^27.4.0" 2469 | leven "^3.1.0" 2470 | pretty-format "^27.4.2" 2471 | 2472 | jest-watcher@^27.4.2: 2473 | version "27.4.2" 2474 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.4.2.tgz#c9037edfd80354c9fe90de4b6f8b6e2b8e736744" 2475 | integrity sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg== 2476 | dependencies: 2477 | "@jest/test-result" "^27.4.2" 2478 | "@jest/types" "^27.4.2" 2479 | "@types/node" "*" 2480 | ansi-escapes "^4.2.1" 2481 | chalk "^4.0.0" 2482 | jest-util "^27.4.2" 2483 | string-length "^4.0.1" 2484 | 2485 | jest-worker@^27.4.5: 2486 | version "27.4.5" 2487 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.4.5.tgz#d696e3e46ae0f24cff3fa7195ffba22889262242" 2488 | integrity sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg== 2489 | dependencies: 2490 | "@types/node" "*" 2491 | merge-stream "^2.0.0" 2492 | supports-color "^8.0.0" 2493 | 2494 | jest@^27.4.5: 2495 | version "27.4.5" 2496 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.4.5.tgz#66e45acba44137fac26be9d3cc5bb031e136dc0f" 2497 | integrity sha512-uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg== 2498 | dependencies: 2499 | "@jest/core" "^27.4.5" 2500 | import-local "^3.0.2" 2501 | jest-cli "^27.4.5" 2502 | 2503 | js-tokens@^4.0.0: 2504 | version "4.0.0" 2505 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2506 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2507 | 2508 | js-yaml@^3.13.1: 2509 | version "3.14.1" 2510 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2511 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2512 | dependencies: 2513 | argparse "^1.0.7" 2514 | esprima "^4.0.0" 2515 | 2516 | jsdom@^16.6.0: 2517 | version "16.7.0" 2518 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 2519 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 2520 | dependencies: 2521 | abab "^2.0.5" 2522 | acorn "^8.2.4" 2523 | acorn-globals "^6.0.0" 2524 | cssom "^0.4.4" 2525 | cssstyle "^2.3.0" 2526 | data-urls "^2.0.0" 2527 | decimal.js "^10.2.1" 2528 | domexception "^2.0.1" 2529 | escodegen "^2.0.0" 2530 | form-data "^3.0.0" 2531 | html-encoding-sniffer "^2.0.1" 2532 | http-proxy-agent "^4.0.1" 2533 | https-proxy-agent "^5.0.0" 2534 | is-potential-custom-element-name "^1.0.1" 2535 | nwsapi "^2.2.0" 2536 | parse5 "6.0.1" 2537 | saxes "^5.0.1" 2538 | symbol-tree "^3.2.4" 2539 | tough-cookie "^4.0.0" 2540 | w3c-hr-time "^1.0.2" 2541 | w3c-xmlserializer "^2.0.0" 2542 | webidl-conversions "^6.1.0" 2543 | whatwg-encoding "^1.0.5" 2544 | whatwg-mimetype "^2.3.0" 2545 | whatwg-url "^8.5.0" 2546 | ws "^7.4.6" 2547 | xml-name-validator "^3.0.0" 2548 | 2549 | jsesc@^2.5.1: 2550 | version "2.5.2" 2551 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2552 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2553 | 2554 | jsesc@~0.5.0: 2555 | version "0.5.0" 2556 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2557 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2558 | 2559 | json5@^2.1.2: 2560 | version "2.2.0" 2561 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 2562 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 2563 | dependencies: 2564 | minimist "^1.2.5" 2565 | 2566 | kleur@^3.0.3: 2567 | version "3.0.3" 2568 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2569 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2570 | 2571 | leven@^3.1.0: 2572 | version "3.1.0" 2573 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2574 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2575 | 2576 | levn@~0.3.0: 2577 | version "0.3.0" 2578 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2579 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2580 | dependencies: 2581 | prelude-ls "~1.1.2" 2582 | type-check "~0.3.2" 2583 | 2584 | locate-path@^5.0.0: 2585 | version "5.0.0" 2586 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2587 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2588 | dependencies: 2589 | p-locate "^4.1.0" 2590 | 2591 | lodash.debounce@^4.0.8: 2592 | version "4.0.8" 2593 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2594 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2595 | 2596 | lodash@^4.7.0: 2597 | version "4.17.21" 2598 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2599 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2600 | 2601 | lru-cache@^6.0.0: 2602 | version "6.0.0" 2603 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2604 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2605 | dependencies: 2606 | yallist "^4.0.0" 2607 | 2608 | make-dir@^3.0.0: 2609 | version "3.1.0" 2610 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2611 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2612 | dependencies: 2613 | semver "^6.0.0" 2614 | 2615 | makeerror@1.0.12: 2616 | version "1.0.12" 2617 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 2618 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2619 | dependencies: 2620 | tmpl "1.0.5" 2621 | 2622 | merge-stream@^2.0.0: 2623 | version "2.0.0" 2624 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2625 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2626 | 2627 | micromatch@^4.0.4: 2628 | version "4.0.4" 2629 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 2630 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2631 | dependencies: 2632 | braces "^3.0.1" 2633 | picomatch "^2.2.3" 2634 | 2635 | mime-db@1.51.0: 2636 | version "1.51.0" 2637 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" 2638 | integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== 2639 | 2640 | mime-types@^2.1.12: 2641 | version "2.1.34" 2642 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" 2643 | integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== 2644 | dependencies: 2645 | mime-db "1.51.0" 2646 | 2647 | mimic-fn@^2.1.0: 2648 | version "2.1.0" 2649 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2650 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2651 | 2652 | minimatch@^3.0.4: 2653 | version "3.0.4" 2654 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2655 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2656 | dependencies: 2657 | brace-expansion "^1.1.7" 2658 | 2659 | minimist@^1.2.5: 2660 | version "1.2.5" 2661 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2662 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2663 | 2664 | ms@2.1.2: 2665 | version "2.1.2" 2666 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2667 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2668 | 2669 | natural-compare@^1.4.0: 2670 | version "1.4.0" 2671 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2672 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2673 | 2674 | node-int64@^0.4.0: 2675 | version "0.4.0" 2676 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2677 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2678 | 2679 | node-releases@^2.0.1: 2680 | version "2.0.1" 2681 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" 2682 | integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== 2683 | 2684 | normalize-path@^3.0.0: 2685 | version "3.0.0" 2686 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2687 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2688 | 2689 | npm-run-path@^4.0.1: 2690 | version "4.0.1" 2691 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2692 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2693 | dependencies: 2694 | path-key "^3.0.0" 2695 | 2696 | nwsapi@^2.2.0: 2697 | version "2.2.0" 2698 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2699 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2700 | 2701 | object-keys@^1.0.12, object-keys@^1.1.1: 2702 | version "1.1.1" 2703 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2704 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2705 | 2706 | object.assign@^4.1.0: 2707 | version "4.1.2" 2708 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 2709 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2710 | dependencies: 2711 | call-bind "^1.0.0" 2712 | define-properties "^1.1.3" 2713 | has-symbols "^1.0.1" 2714 | object-keys "^1.1.1" 2715 | 2716 | once@^1.3.0: 2717 | version "1.4.0" 2718 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2719 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2720 | dependencies: 2721 | wrappy "1" 2722 | 2723 | onetime@^5.1.2: 2724 | version "5.1.2" 2725 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2726 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2727 | dependencies: 2728 | mimic-fn "^2.1.0" 2729 | 2730 | optionator@^0.8.1: 2731 | version "0.8.3" 2732 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2733 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2734 | dependencies: 2735 | deep-is "~0.1.3" 2736 | fast-levenshtein "~2.0.6" 2737 | levn "~0.3.0" 2738 | prelude-ls "~1.1.2" 2739 | type-check "~0.3.2" 2740 | word-wrap "~1.2.3" 2741 | 2742 | p-limit@^2.2.0: 2743 | version "2.3.0" 2744 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2745 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2746 | dependencies: 2747 | p-try "^2.0.0" 2748 | 2749 | p-locate@^4.1.0: 2750 | version "4.1.0" 2751 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2752 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2753 | dependencies: 2754 | p-limit "^2.2.0" 2755 | 2756 | p-try@^2.0.0: 2757 | version "2.2.0" 2758 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2759 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2760 | 2761 | parse5@6.0.1: 2762 | version "6.0.1" 2763 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2764 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2765 | 2766 | path-exists@^4.0.0: 2767 | version "4.0.0" 2768 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2769 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2770 | 2771 | path-is-absolute@^1.0.0: 2772 | version "1.0.1" 2773 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2774 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2775 | 2776 | path-key@^3.0.0, path-key@^3.1.0: 2777 | version "3.1.1" 2778 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2779 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2780 | 2781 | path-parse@^1.0.6, path-parse@^1.0.7: 2782 | version "1.0.7" 2783 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2784 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2785 | 2786 | picocolors@^1.0.0: 2787 | version "1.0.0" 2788 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2789 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2790 | 2791 | picomatch@^2.0.4, picomatch@^2.2.3: 2792 | version "2.3.0" 2793 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 2794 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2795 | 2796 | picomatch@^2.2.2: 2797 | version "2.3.1" 2798 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 2799 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2800 | 2801 | pirates@^4.0.1: 2802 | version "4.0.4" 2803 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.4.tgz#07df81e61028e402735cdd49db701e4885b4e6e6" 2804 | integrity sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw== 2805 | 2806 | pkg-dir@^4.2.0: 2807 | version "4.2.0" 2808 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2809 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2810 | dependencies: 2811 | find-up "^4.0.0" 2812 | 2813 | prelude-ls@~1.1.2: 2814 | version "1.1.2" 2815 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2816 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2817 | 2818 | pretty-format@^27.0.0, pretty-format@^27.4.2: 2819 | version "27.4.2" 2820 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.2.tgz#e4ce92ad66c3888423d332b40477c87d1dac1fb8" 2821 | integrity sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw== 2822 | dependencies: 2823 | "@jest/types" "^27.4.2" 2824 | ansi-regex "^5.0.1" 2825 | ansi-styles "^5.0.0" 2826 | react-is "^17.0.1" 2827 | 2828 | prompts@^2.0.1: 2829 | version "2.4.2" 2830 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2831 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2832 | dependencies: 2833 | kleur "^3.0.3" 2834 | sisteransi "^1.0.5" 2835 | 2836 | psl@^1.1.33: 2837 | version "1.8.0" 2838 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2839 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2840 | 2841 | punycode@^2.1.1: 2842 | version "2.1.1" 2843 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2844 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2845 | 2846 | react-is@^17.0.1: 2847 | version "17.0.2" 2848 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2849 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2850 | 2851 | regenerate-unicode-properties@^9.0.0: 2852 | version "9.0.0" 2853 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" 2854 | integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== 2855 | dependencies: 2856 | regenerate "^1.4.2" 2857 | 2858 | regenerate@^1.4.2: 2859 | version "1.4.2" 2860 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 2861 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 2862 | 2863 | regenerator-runtime@^0.13.4: 2864 | version "0.13.9" 2865 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 2866 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 2867 | 2868 | regenerator-transform@^0.14.2: 2869 | version "0.14.5" 2870 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2871 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2872 | dependencies: 2873 | "@babel/runtime" "^7.8.4" 2874 | 2875 | regexpu-core@^4.7.1: 2876 | version "4.8.0" 2877 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" 2878 | integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== 2879 | dependencies: 2880 | regenerate "^1.4.2" 2881 | regenerate-unicode-properties "^9.0.0" 2882 | regjsgen "^0.5.2" 2883 | regjsparser "^0.7.0" 2884 | unicode-match-property-ecmascript "^2.0.0" 2885 | unicode-match-property-value-ecmascript "^2.0.0" 2886 | 2887 | regjsgen@^0.5.2: 2888 | version "0.5.2" 2889 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2890 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2891 | 2892 | regjsparser@^0.7.0: 2893 | version "0.7.0" 2894 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" 2895 | integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== 2896 | dependencies: 2897 | jsesc "~0.5.0" 2898 | 2899 | require-directory@^2.1.1: 2900 | version "2.1.1" 2901 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2902 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2903 | 2904 | resolve-cwd@^3.0.0: 2905 | version "3.0.0" 2906 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2907 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2908 | dependencies: 2909 | resolve-from "^5.0.0" 2910 | 2911 | resolve-from@^5.0.0: 2912 | version "5.0.0" 2913 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2914 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2915 | 2916 | resolve.exports@^1.1.0: 2917 | version "1.1.0" 2918 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" 2919 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== 2920 | 2921 | resolve@^1.14.2, resolve@^1.20.0: 2922 | version "1.20.0" 2923 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2924 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2925 | dependencies: 2926 | is-core-module "^2.2.0" 2927 | path-parse "^1.0.6" 2928 | 2929 | resolve@^1.17.0: 2930 | version "1.22.0" 2931 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 2932 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 2933 | dependencies: 2934 | is-core-module "^2.8.1" 2935 | path-parse "^1.0.7" 2936 | supports-preserve-symlinks-flag "^1.0.0" 2937 | 2938 | rimraf@^3.0.0: 2939 | version "3.0.2" 2940 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2941 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2942 | dependencies: 2943 | glob "^7.1.3" 2944 | 2945 | rollup@^2.67.2: 2946 | version "2.67.2" 2947 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.67.2.tgz#d95e15f60932ad21e05a870bd0aa0b235d056f04" 2948 | integrity sha512-hoEiBWwZtf1QdK3jZIq59L0FJj4Fiv4RplCO4pvCRC86qsoFurWB4hKQIjoRf3WvJmk5UZ9b0y5ton+62fC7Tw== 2949 | optionalDependencies: 2950 | fsevents "~2.3.2" 2951 | 2952 | safe-buffer@~5.1.1: 2953 | version "5.1.2" 2954 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2955 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2956 | 2957 | "safer-buffer@>= 2.1.2 < 3": 2958 | version "2.1.2" 2959 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2960 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2961 | 2962 | saxes@^5.0.1: 2963 | version "5.0.1" 2964 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2965 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2966 | dependencies: 2967 | xmlchars "^2.2.0" 2968 | 2969 | semver@7.0.0: 2970 | version "7.0.0" 2971 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2972 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 2973 | 2974 | semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 2975 | version "6.3.0" 2976 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2977 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2978 | 2979 | semver@^7.3.2: 2980 | version "7.3.5" 2981 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 2982 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 2983 | dependencies: 2984 | lru-cache "^6.0.0" 2985 | 2986 | shebang-command@^2.0.0: 2987 | version "2.0.0" 2988 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2989 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2990 | dependencies: 2991 | shebang-regex "^3.0.0" 2992 | 2993 | shebang-regex@^3.0.0: 2994 | version "3.0.0" 2995 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2996 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2997 | 2998 | signal-exit@^3.0.2, signal-exit@^3.0.3: 2999 | version "3.0.6" 3000 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" 3001 | integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== 3002 | 3003 | sisteransi@^1.0.5: 3004 | version "1.0.5" 3005 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 3006 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 3007 | 3008 | slash@^3.0.0: 3009 | version "3.0.0" 3010 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3011 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3012 | 3013 | source-map-support@^0.5.6: 3014 | version "0.5.21" 3015 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 3016 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 3017 | dependencies: 3018 | buffer-from "^1.0.0" 3019 | source-map "^0.6.0" 3020 | 3021 | source-map@^0.5.0: 3022 | version "0.5.7" 3023 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3024 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3025 | 3026 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3027 | version "0.6.1" 3028 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3029 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3030 | 3031 | source-map@^0.7.3: 3032 | version "0.7.3" 3033 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3034 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3035 | 3036 | sprintf-js@~1.0.2: 3037 | version "1.0.3" 3038 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3039 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3040 | 3041 | stack-utils@^2.0.3: 3042 | version "2.0.5" 3043 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 3044 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 3045 | dependencies: 3046 | escape-string-regexp "^2.0.0" 3047 | 3048 | string-length@^4.0.1: 3049 | version "4.0.2" 3050 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 3051 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 3052 | dependencies: 3053 | char-regex "^1.0.2" 3054 | strip-ansi "^6.0.0" 3055 | 3056 | string-width@^4.1.0, string-width@^4.2.0: 3057 | version "4.2.3" 3058 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 3059 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3060 | dependencies: 3061 | emoji-regex "^8.0.0" 3062 | is-fullwidth-code-point "^3.0.0" 3063 | strip-ansi "^6.0.1" 3064 | 3065 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3066 | version "6.0.1" 3067 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 3068 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3069 | dependencies: 3070 | ansi-regex "^5.0.1" 3071 | 3072 | strip-bom@^4.0.0: 3073 | version "4.0.0" 3074 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 3075 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3076 | 3077 | strip-final-newline@^2.0.0: 3078 | version "2.0.0" 3079 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3080 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3081 | 3082 | supports-color@^5.3.0: 3083 | version "5.5.0" 3084 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3085 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3086 | dependencies: 3087 | has-flag "^3.0.0" 3088 | 3089 | supports-color@^7.0.0, supports-color@^7.1.0: 3090 | version "7.2.0" 3091 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3092 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3093 | dependencies: 3094 | has-flag "^4.0.0" 3095 | 3096 | supports-color@^8.0.0: 3097 | version "8.1.1" 3098 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 3099 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 3100 | dependencies: 3101 | has-flag "^4.0.0" 3102 | 3103 | supports-hyperlinks@^2.0.0: 3104 | version "2.2.0" 3105 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 3106 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 3107 | dependencies: 3108 | has-flag "^4.0.0" 3109 | supports-color "^7.0.0" 3110 | 3111 | supports-preserve-symlinks-flag@^1.0.0: 3112 | version "1.0.0" 3113 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 3114 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3115 | 3116 | symbol-tree@^3.2.4: 3117 | version "3.2.4" 3118 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3119 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 3120 | 3121 | terminal-link@^2.0.0: 3122 | version "2.1.1" 3123 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 3124 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 3125 | dependencies: 3126 | ansi-escapes "^4.2.1" 3127 | supports-hyperlinks "^2.0.0" 3128 | 3129 | test-exclude@^6.0.0: 3130 | version "6.0.0" 3131 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 3132 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3133 | dependencies: 3134 | "@istanbuljs/schema" "^0.1.2" 3135 | glob "^7.1.4" 3136 | minimatch "^3.0.4" 3137 | 3138 | throat@^6.0.1: 3139 | version "6.0.1" 3140 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 3141 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 3142 | 3143 | tmpl@1.0.5: 3144 | version "1.0.5" 3145 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3146 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3147 | 3148 | to-fast-properties@^2.0.0: 3149 | version "2.0.0" 3150 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3151 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3152 | 3153 | to-regex-range@^5.0.1: 3154 | version "5.0.1" 3155 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3156 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3157 | dependencies: 3158 | is-number "^7.0.0" 3159 | 3160 | tough-cookie@^4.0.0: 3161 | version "4.0.0" 3162 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 3163 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 3164 | dependencies: 3165 | psl "^1.1.33" 3166 | punycode "^2.1.1" 3167 | universalify "^0.1.2" 3168 | 3169 | tr46@^2.1.0: 3170 | version "2.1.0" 3171 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 3172 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 3173 | dependencies: 3174 | punycode "^2.1.1" 3175 | 3176 | tslib@^2.3.1: 3177 | version "2.3.1" 3178 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 3179 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 3180 | 3181 | type-check@~0.3.2: 3182 | version "0.3.2" 3183 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3184 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3185 | dependencies: 3186 | prelude-ls "~1.1.2" 3187 | 3188 | type-detect@4.0.8: 3189 | version "4.0.8" 3190 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3191 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3192 | 3193 | type-fest@^0.21.3: 3194 | version "0.21.3" 3195 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 3196 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3197 | 3198 | typedarray-to-buffer@^3.1.5: 3199 | version "3.1.5" 3200 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3201 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3202 | dependencies: 3203 | is-typedarray "^1.0.0" 3204 | 3205 | typescript@^4.5.4: 3206 | version "4.5.4" 3207 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.4.tgz#a17d3a0263bf5c8723b9c52f43c5084edf13c2e8" 3208 | integrity sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg== 3209 | 3210 | unicode-canonical-property-names-ecmascript@^2.0.0: 3211 | version "2.0.0" 3212 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" 3213 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== 3214 | 3215 | unicode-match-property-ecmascript@^2.0.0: 3216 | version "2.0.0" 3217 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" 3218 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== 3219 | dependencies: 3220 | unicode-canonical-property-names-ecmascript "^2.0.0" 3221 | unicode-property-aliases-ecmascript "^2.0.0" 3222 | 3223 | unicode-match-property-value-ecmascript@^2.0.0: 3224 | version "2.0.0" 3225 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" 3226 | integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== 3227 | 3228 | unicode-property-aliases-ecmascript@^2.0.0: 3229 | version "2.0.0" 3230 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" 3231 | integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== 3232 | 3233 | universalify@^0.1.2: 3234 | version "0.1.2" 3235 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3236 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3237 | 3238 | v8-to-istanbul@^8.1.0: 3239 | version "8.1.0" 3240 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" 3241 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== 3242 | dependencies: 3243 | "@types/istanbul-lib-coverage" "^2.0.1" 3244 | convert-source-map "^1.6.0" 3245 | source-map "^0.7.3" 3246 | 3247 | w3c-hr-time@^1.0.2: 3248 | version "1.0.2" 3249 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 3250 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 3251 | dependencies: 3252 | browser-process-hrtime "^1.0.0" 3253 | 3254 | w3c-xmlserializer@^2.0.0: 3255 | version "2.0.0" 3256 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 3257 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 3258 | dependencies: 3259 | xml-name-validator "^3.0.0" 3260 | 3261 | walker@^1.0.7: 3262 | version "1.0.8" 3263 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 3264 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 3265 | dependencies: 3266 | makeerror "1.0.12" 3267 | 3268 | webidl-conversions@^5.0.0: 3269 | version "5.0.0" 3270 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 3271 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 3272 | 3273 | webidl-conversions@^6.1.0: 3274 | version "6.1.0" 3275 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 3276 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 3277 | 3278 | whatwg-encoding@^1.0.5: 3279 | version "1.0.5" 3280 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3281 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 3282 | dependencies: 3283 | iconv-lite "0.4.24" 3284 | 3285 | whatwg-mimetype@^2.3.0: 3286 | version "2.3.0" 3287 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3288 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 3289 | 3290 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3291 | version "8.7.0" 3292 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 3293 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 3294 | dependencies: 3295 | lodash "^4.7.0" 3296 | tr46 "^2.1.0" 3297 | webidl-conversions "^6.1.0" 3298 | 3299 | which@^2.0.1: 3300 | version "2.0.2" 3301 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3302 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3303 | dependencies: 3304 | isexe "^2.0.0" 3305 | 3306 | word-wrap@~1.2.3: 3307 | version "1.2.3" 3308 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3309 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3310 | 3311 | wrap-ansi@^7.0.0: 3312 | version "7.0.0" 3313 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 3314 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 3315 | dependencies: 3316 | ansi-styles "^4.0.0" 3317 | string-width "^4.1.0" 3318 | strip-ansi "^6.0.0" 3319 | 3320 | wrappy@1: 3321 | version "1.0.2" 3322 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3323 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3324 | 3325 | write-file-atomic@^3.0.0: 3326 | version "3.0.3" 3327 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3328 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3329 | dependencies: 3330 | imurmurhash "^0.1.4" 3331 | is-typedarray "^1.0.0" 3332 | signal-exit "^3.0.2" 3333 | typedarray-to-buffer "^3.1.5" 3334 | 3335 | ws@^7.4.6: 3336 | version "7.5.6" 3337 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" 3338 | integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== 3339 | 3340 | xml-name-validator@^3.0.0: 3341 | version "3.0.0" 3342 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3343 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 3344 | 3345 | xmlchars@^2.2.0: 3346 | version "2.2.0" 3347 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 3348 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 3349 | 3350 | y18n@^5.0.5: 3351 | version "5.0.8" 3352 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 3353 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 3354 | 3355 | yallist@^4.0.0: 3356 | version "4.0.0" 3357 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3358 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3359 | 3360 | yargs-parser@^20.2.2: 3361 | version "20.2.9" 3362 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 3363 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 3364 | 3365 | yargs@^16.2.0: 3366 | version "16.2.0" 3367 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 3368 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 3369 | dependencies: 3370 | cliui "^7.0.2" 3371 | escalade "^3.1.1" 3372 | get-caller-file "^2.0.5" 3373 | require-directory "^2.1.1" 3374 | string-width "^4.2.0" 3375 | y18n "^5.0.5" 3376 | yargs-parser "^20.2.2" 3377 | --------------------------------------------------------------------------------