├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── src └── reactivity │ ├── __tests__ │ ├── computed.spec.ts │ ├── effect.spec.ts │ ├── reactive.spec.ts │ ├── readonly.spec.ts │ ├── ref.spec.ts │ └── shallowReadonly.spec.ts │ ├── first-review │ ├── computed.ts │ ├── effect.ts │ ├── reactive.ts │ └── ref.ts │ ├── shared │ └── index.ts │ └── src │ ├── baseHandles.ts │ ├── computed.ts │ ├── effect.ts │ ├── reactive.ts │ └── ref.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGH0717/mini-vue/e35f14aedf02d472183a965abc0a05d33d01074b/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | ['@babel/preset-env', { targets: { node: 'current' } }], 4 | '@babel/preset-typescript', 5 | ], 6 | }; -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mini-vue", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "typescript": { 8 | "version": "4.4.3", 9 | "resolved": "https://registry.nlark.com/typescript/download/typescript-4.4.3.tgz?cache=0&sync_timestamp=1631949569593&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftypescript%2Fdownload%2Ftypescript-4.4.3.tgz", 10 | "integrity": "sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ=", 11 | "dev": true 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mini-vue", 3 | "version": "1.0.0", 4 | "description": "study vue3", 5 | "main": "index.js", 6 | "repository": "https://github.com/ZGH0717/mini-vue.git", 7 | "author": "zhongguanghua <583526930@qq.com>", 8 | "license": "MIT", 9 | "scripts": { 10 | "test": "jest" 11 | }, 12 | "devDependencies": { 13 | "@babel/core": "^7.15.5", 14 | "@babel/preset-env": "^7.15.6", 15 | "@babel/preset-typescript": "^7.15.0", 16 | "@types/jest": "^27.0.1", 17 | "babel-jest": "^27.2.0", 18 | "jest": "^27.2.0", 19 | "typescript": "^4.4.3" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/computed.spec.ts: -------------------------------------------------------------------------------- 1 | import { computed } from "../first-review/computed"; 2 | import { reactive } from "../first-review/reactive"; 3 | 4 | describe("computed", () => { 5 | it("happy path", () => { 6 | const user = reactive({ 7 | age: 1, 8 | }); 9 | 10 | const age = computed(() => { 11 | return user.age; 12 | }); 13 | 14 | expect(age.value).toBe(1); 15 | }); 16 | 17 | it("should compute lazily", () => { 18 | const value = reactive({ 19 | foo: 1, 20 | }); 21 | const getter = jest.fn(() => { 22 | return value.foo; 23 | }); 24 | const cValue = computed(getter); 25 | 26 | // lazy 27 | expect(getter).not.toHaveBeenCalled(); 28 | 29 | expect(cValue.value).toBe(1); 30 | expect(getter).toHaveBeenCalledTimes(1); 31 | 32 | // should not compute again 33 | cValue.value; // get 34 | expect(getter).toHaveBeenCalledTimes(1); 35 | 36 | // should not compute until needed 37 | value.foo = 2; 38 | expect(getter).toHaveBeenCalledTimes(1); 39 | 40 | // now it should compute 41 | expect(cValue.value).toBe(2); 42 | expect(getter).toHaveBeenCalledTimes(2); 43 | 44 | // should not compute again 45 | cValue.value; 46 | expect(getter).toHaveBeenCalledTimes(2); 47 | }); 48 | }); 49 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/effect.spec.ts: -------------------------------------------------------------------------------- 1 | import { reactive } from "../first-review/reactive"; 2 | import { effect, stop } from "../first-review/effect"; 3 | describe("effect", () => { 4 | it("happy path", () => { 5 | const user = reactive({ 6 | age: 10, 7 | }); 8 | 9 | let nextAge; 10 | effect(() => { 11 | nextAge = user.age + 1; 12 | }); 13 | // update 14 | user.age++; 15 | expect(nextAge).toBe(12); 16 | }); 17 | 18 | it("runner", () => { 19 | const user = reactive({ 20 | age: 1, 21 | }); 22 | let age; 23 | const runner = effect(() => { 24 | age = user.age + 1; 25 | return "foo"; 26 | }); 27 | const r = runner(); 28 | 29 | expect(age).toBe(2); 30 | 31 | expect(r).toBe("foo"); 32 | }); 33 | 34 | it("scheduler", () => { 35 | let dummy; 36 | let run: any; 37 | const scheduler = jest.fn(() => { 38 | run = runner; 39 | }); 40 | const obj = reactive({ foo: 1 }); 41 | const runner = effect( 42 | () => { 43 | dummy = obj.foo; 44 | }, 45 | { scheduler } 46 | ); 47 | expect(scheduler).not.toHaveBeenCalled(); 48 | expect(dummy).toBe(1); 49 | // should be called on first trigger 50 | obj.foo++; 51 | expect(scheduler).toHaveBeenCalledTimes(1); 52 | // // should not run yet 53 | expect(dummy).toBe(1); 54 | // // manually run 55 | run(); 56 | // // should have run 57 | expect(dummy).toBe(2); 58 | }); 59 | 60 | it("stop", () => { 61 | let dummy; 62 | let dummy2 = 1; 63 | const obj = reactive({ prop: 1, obj: 1 }); 64 | const test = reactive({ prop2: 1 }); 65 | const runner = effect(() => { 66 | dummy = obj.prop; 67 | }); 68 | obj.prop = 2; 69 | expect(dummy).toBe(2); 70 | effect(() => { 71 | dummy2 += test.prop2; 72 | }); 73 | stop(runner); 74 | obj.prop++; 75 | expect(dummy).toBe(2); 76 | runner(); 77 | expect(dummy).toBe(3); 78 | expect(dummy2).toBe(2); 79 | }); 80 | 81 | it("onStop", () => { 82 | const obj = reactive({ 83 | foo: 1, 84 | }); 85 | const onStop = jest.fn(); 86 | let dummy; 87 | const runner = effect( 88 | () => { 89 | dummy = obj.foo; 90 | }, 91 | { 92 | onStop, 93 | } 94 | ); 95 | 96 | stop(runner); 97 | expect(onStop).toBeCalledTimes(1); 98 | }); 99 | }); 100 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/reactive.spec.ts: -------------------------------------------------------------------------------- 1 | import { isReactive, reactive, isProxy } from "../first-review/reactive"; 2 | describe("reactive", () => { 3 | it("happy path", () => { 4 | const original = { foo: 1 }; 5 | const observed = reactive(original); 6 | expect(observed).not.toBe(original); 7 | expect(observed.foo).toBe(1); 8 | expect(isReactive(observed)).toBe(true); 9 | expect(isReactive(original)).toBe(false); 10 | expect(isProxy(observed)).toBe(true); 11 | }); 12 | 13 | test("nested reactives", () => { 14 | const original = { 15 | nested: { 16 | foo: 1, 17 | }, 18 | array: [{ bar: 2 }], 19 | }; 20 | const observed = reactive(original); 21 | expect(isReactive(observed.nested)).toBe(true); 22 | expect(isReactive(observed.array)).toBe(true); 23 | expect(isReactive(observed.array[0])).toBe(true); 24 | }); 25 | }); 26 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/readonly.spec.ts: -------------------------------------------------------------------------------- 1 | import { isProxy, isReadonly, readonly } from "../first-review/reactive"; 2 | 3 | describe("readonly", () => { 4 | it("should make nested values readonly", () => { 5 | const original = { foo: 1, bar: { baz: 2 } }; 6 | const wrapped = readonly(original); 7 | expect(wrapped).not.toBe(original); 8 | expect(isReadonly(wrapped)).toBe(true); 9 | expect(isReadonly(original)).toBe(false); 10 | expect(isReadonly(wrapped.bar)).toBe(true); 11 | expect(isReadonly(original.bar)).toBe(false); 12 | expect(isProxy(wrapped)).toBe(true); 13 | 14 | expect(wrapped.foo).toBe(1); 15 | }); 16 | 17 | it("should call console.warn when set", () => { 18 | console.warn = jest.fn(); 19 | const user = readonly({ 20 | age: 10, 21 | }); 22 | 23 | user.age = 11; 24 | expect(console.warn).toHaveBeenCalled(); 25 | }); 26 | }); 27 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/ref.spec.ts: -------------------------------------------------------------------------------- 1 | import { effect } from "../first-review/effect"; 2 | import { reactive } from "../first-review/reactive"; 3 | import { isRef, ref, unRef, proxyRefs } from "../first-review/ref"; 4 | describe("ref", () => { 5 | it("happy path", () => { 6 | const a = ref(1); 7 | expect(a.value).toBe(1); 8 | }); 9 | 10 | it("should be reactive", () => { 11 | const a = ref(1); 12 | let dummy; 13 | let calls = 0; 14 | effect(() => { 15 | calls++; 16 | dummy = a.value; 17 | }); 18 | expect(calls).toBe(1); 19 | expect(dummy).toBe(1); 20 | a.value = 2; 21 | expect(calls).toBe(2); 22 | expect(dummy).toBe(2); 23 | // same value should not trigger 24 | a.value = 2; 25 | expect(calls).toBe(2); 26 | expect(dummy).toBe(2); 27 | }); 28 | 29 | it("should make nested properties reactive", () => { 30 | const a = ref({ 31 | count: 1, 32 | }); 33 | let dummy; 34 | effect(() => { 35 | dummy = a.value.count; 36 | }); 37 | expect(dummy).toBe(1); 38 | a.value.count = 2; 39 | expect(dummy).toBe(2); 40 | }); 41 | 42 | it("isRef", () => { 43 | const a = ref(1); 44 | const user = reactive({ 45 | age: 1, 46 | }); 47 | expect(isRef(a)).toBe(true); 48 | expect(isRef(1)).toBe(false); 49 | expect(isRef(user)).toBe(false); 50 | }); 51 | 52 | it("unRef", () => { 53 | const a = ref(1); 54 | expect(unRef(a)).toBe(1); 55 | expect(unRef(1)).toBe(1); 56 | }); 57 | 58 | it("proxyRefs", () => { 59 | const user = { 60 | age: ref(10), 61 | name: "xiaohong", 62 | }; 63 | 64 | const proxyUser = proxyRefs(user); 65 | expect(user.age.value).toBe(10); 66 | expect(proxyUser.age).toBe(10); 67 | expect(proxyUser.name).toBe("xiaohong"); 68 | 69 | proxyUser.age = 20; 70 | 71 | expect(proxyUser.age).toBe(20); 72 | expect(user.age.value).toBe(20); 73 | 74 | proxyUser.age = ref(10); 75 | expect(proxyUser.age).toBe(10); 76 | expect(user.age.value).toBe(10); 77 | }); 78 | }); 79 | -------------------------------------------------------------------------------- /src/reactivity/__tests__/shallowReadonly.spec.ts: -------------------------------------------------------------------------------- 1 | import { isReadonly, shallowReadonly } from "../first-review/reactive"; 2 | 3 | describe("shallowReadonly", () => { 4 | test("should not make non-reactive properties reactive", () => { 5 | const props = shallowReadonly({ n: { foo: 1 } }); 6 | expect(isReadonly(props)).toBe(true); 7 | expect(isReadonly(props.n)).toBe(false); 8 | }); 9 | 10 | it("should call console.warn when set", () => { 11 | console.warn = jest.fn(); 12 | const user = shallowReadonly({ 13 | age: 10, 14 | }); 15 | 16 | user.age = 11; 17 | expect(console.warn).toHaveBeenCalled(); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /src/reactivity/first-review/computed.ts: -------------------------------------------------------------------------------- 1 | import { ReactiveEffect } from "./effect"; 2 | 3 | class ComputedImpl { 4 | effect: ReactiveEffect; 5 | private _dirty: boolean = true; 6 | private _value: any; 7 | constructor(fn) { 8 | this.effect = new ReactiveEffect(fn, () => { 9 | if (!this._dirty) { 10 | this._dirty = true; 11 | } 12 | }); 13 | } 14 | get value() { 15 | if (this._dirty) { 16 | this._value = this.effect.run(); 17 | this._dirty = false; 18 | } 19 | return this._value; 20 | } 21 | } 22 | 23 | export function computed(fn) { 24 | return new ComputedImpl(fn); 25 | } 26 | -------------------------------------------------------------------------------- /src/reactivity/first-review/effect.ts: -------------------------------------------------------------------------------- 1 | import { extend } from "../shared"; 2 | 3 | let activeEffect; 4 | let shouldTrack; 5 | export class ReactiveEffect { 6 | private _fn: any; 7 | private active = true; 8 | private deps: any = []; 9 | public scheduler: Function | undefined; 10 | constructor(fn, scheduler?) { 11 | this.scheduler = scheduler; 12 | this._fn = fn; 13 | } 14 | run() { 15 | if (!this.active) { 16 | return this._fn(); 17 | } 18 | shouldTrack = true; 19 | activeEffect = this; 20 | const res = this._fn(); 21 | shouldTrack = false; 22 | return res; 23 | } 24 | onStop() { 25 | if (this.active) { 26 | this.deps.forEach((dep) => { 27 | dep.delete(this); 28 | }); 29 | this.deps.length = []; 30 | this.active = false; 31 | this.onStop && this.onStop(); 32 | } 33 | } 34 | } 35 | const targetMaps = new WeakMap(); 36 | 37 | export function track(target, key) { 38 | if (!isTracking()) return; 39 | 40 | let targetMap = targetMaps.get(target); 41 | if (!targetMap) { 42 | targetMap = new Map(); 43 | targetMaps.set(target, targetMap); 44 | } 45 | let deps = targetMap.get(key); 46 | if (!deps) { 47 | deps = new Set(); 48 | targetMap.set(key, deps); 49 | } 50 | if (deps.has(activeEffect)) return; 51 | 52 | trackEffects(deps); 53 | } 54 | export function trackEffects(deps) { 55 | deps.add(activeEffect); 56 | activeEffect && activeEffect.deps.push(deps); 57 | } 58 | 59 | export function isTracking() { 60 | return activeEffect && shouldTrack; 61 | } 62 | 63 | export function trigger(target, key) { 64 | const targetMap = targetMaps.get(target); 65 | const deps = targetMap.get(key); 66 | triggerEffets(deps); 67 | } 68 | 69 | export function triggerEffets(deps) { 70 | for (let dep of deps) { 71 | if (dep.scheduler) { 72 | dep.scheduler(); 73 | } else { 74 | dep.run(); 75 | } 76 | } 77 | } 78 | export function effect( 79 | fn, 80 | options: { 81 | scheduler?: Function | undefined; 82 | onStop?: Function | undefined; 83 | } = {} 84 | ) { 85 | const _effect = new ReactiveEffect(fn, options.scheduler); 86 | extend(_effect, options); 87 | _effect.run(); 88 | const runner: any = _effect.run.bind(_effect); 89 | runner.effect = _effect; 90 | return runner; 91 | } 92 | 93 | export function stop(runner) { 94 | return runner.effect.onStop(); 95 | } 96 | -------------------------------------------------------------------------------- /src/reactivity/first-review/reactive.ts: -------------------------------------------------------------------------------- 1 | import { track, trigger } from "./effect"; 2 | import { extend, isObject } from "../shared"; 3 | 4 | export enum ReactiveFlags { 5 | IS_REACTIVE = "__v_is_reactive", 6 | IS_READONLY = "__v_is_readonly", 7 | } 8 | const get = createGetter(); 9 | const set = createSetter(); 10 | const readonlyGet = createGetter(true); 11 | const shalldowGet = createGetter(true, true); 12 | const mutableHandlers = { 13 | get, 14 | set, 15 | }; 16 | const readonlyHandlers = { 17 | get: readonlyGet, 18 | 19 | set(target, key) { 20 | console.warn(`${target}只读,不允许需要其中的key值`); 21 | return true; 22 | }, 23 | }; 24 | 25 | const shallowReadonlyHandlers = { 26 | get: shalldowGet, 27 | }; 28 | function createGetter(isReadonly = false, shallow = false) { 29 | return function get(target, key) { 30 | if (key === ReactiveFlags.IS_REACTIVE) { 31 | return true; 32 | } 33 | if (key === ReactiveFlags.IS_READONLY) { 34 | return isReadonly; 35 | } 36 | 37 | if (isObject(target[key]) && !shallow) { 38 | return isReadonly ? readonly(target[key]) : reactive(target[key]); 39 | } 40 | const res = Reflect.get(target, key); 41 | track(target, key); 42 | return res; 43 | }; 44 | } 45 | 46 | function createSetter() { 47 | return function set(target, key, value) { 48 | const res = Reflect.set(target, key, value); 49 | trigger(target, key); 50 | return res; 51 | }; 52 | } 53 | 54 | export function reactive(raw) { 55 | return new Proxy(raw, mutableHandlers); 56 | } 57 | 58 | export function readonly(raw) { 59 | return new Proxy(raw, readonlyHandlers); 60 | } 61 | 62 | export function shallowReadonly(raw) { 63 | return new Proxy(raw, extend({}, readonlyHandlers, shallowReadonlyHandlers)); 64 | } 65 | 66 | export function isReactive(value) { 67 | return !!value[ReactiveFlags.IS_REACTIVE]; 68 | } 69 | 70 | export function isReadonly(value) { 71 | return !!value[ReactiveFlags.IS_READONLY]; 72 | } 73 | 74 | export function isProxy(value) { 75 | return isReactive(value) || isReadonly(value); 76 | } 77 | -------------------------------------------------------------------------------- /src/reactivity/first-review/ref.ts: -------------------------------------------------------------------------------- 1 | import { hasChange, isObject } from "../shared"; 2 | import { trackEffects, triggerEffets,isTracking } from "./effect"; 3 | import { reactive } from "./reactive"; 4 | 5 | enum RefFlags { 6 | IS_REF = "__v_is_ref", 7 | } 8 | 9 | class RefImpl { 10 | private _value: any; 11 | public dep: any; 12 | private _rawValue: any; 13 | public [RefFlags.IS_REF] = true; 14 | constructor(value) { 15 | this._rawValue = value; 16 | this._value = convert(value); 17 | this.dep = new Set(); 18 | } 19 | get value() { 20 | if (isTracking()) { 21 | trackEffects(this.dep); 22 | } 23 | return this._value; 24 | } 25 | set value(newValue) { 26 | if (!hasChange(this._rawValue, newValue)) return; 27 | this._rawValue = newValue; 28 | this._value = convert(newValue); 29 | triggerEffets(this.dep); 30 | } 31 | } 32 | 33 | function convert(value) { 34 | return isObject(value) ? reactive(value) : value; 35 | } 36 | 37 | export function ref(value) { 38 | return new RefImpl(value); 39 | } 40 | 41 | export function isRef(value) { 42 | return !!value[RefFlags.IS_REF]; 43 | } 44 | 45 | export function unRef(value) { 46 | return isRef(value) ? value.value : value; 47 | } 48 | 49 | export function proxyRefs(objectWithRef) { 50 | return new Proxy(objectWithRef, { 51 | get(target, key) { 52 | return isRef(target[key]) ? unRef(target[key]) : target[key]; 53 | }, 54 | set(target, key, value) { 55 | if (isRef(target[key]) && !isRef(value)) { 56 | return (target[key].value = value); 57 | } else { 58 | return (target[key] = value); 59 | } 60 | }, 61 | }); 62 | } 63 | -------------------------------------------------------------------------------- /src/reactivity/shared/index.ts: -------------------------------------------------------------------------------- 1 | export const extend = Object.assign; 2 | 3 | export const isObject = (val) => { 4 | return val !== null && typeof val === "object"; 5 | }; 6 | 7 | export const hasChange = (value, newValue) => { 8 | return !Object.is(value, newValue); 9 | }; 10 | -------------------------------------------------------------------------------- /src/reactivity/src/baseHandles.ts: -------------------------------------------------------------------------------- 1 | import { extend, isObject } from "../shared"; 2 | import { track, trigger } from "./effect"; 3 | import { reactive, ReactiveFlags, readonly } from "./reactive"; 4 | 5 | const get = createGetter(); 6 | const set = createSetter(); 7 | const readonlyGet = createGetter(true); 8 | const shallowReadonlyGet = createGetter(true, true); 9 | 10 | function createGetter(isReadonly = false, shallow = false) { 11 | return function get(target, key) { 12 | if (key === ReactiveFlags.IS_REACTIVE) { 13 | return true; 14 | } else if (key === ReactiveFlags.IS_READONLY) { 15 | return isReadonly; 16 | } 17 | const res = Reflect.get(target, key); 18 | if (shallow) { 19 | return res; 20 | } 21 | if (isObject(res)) { 22 | return isReadonly ? readonly(res) : reactive(res); 23 | } 24 | !isReadonly && track(target, key); 25 | return res; 26 | }; 27 | } 28 | 29 | function createSetter() { 30 | return function set(target, key, value) { 31 | const res = Reflect.set(target, key, value); 32 | trigger(target, key); 33 | return res; 34 | }; 35 | } 36 | 37 | export const mutableHandlers = { 38 | get, 39 | set, 40 | }; 41 | 42 | export const readonlyHandlers = { 43 | get: readonlyGet, 44 | set(target, key, value) { 45 | console.warn(`${key}:${value} set 失败,当前对象为只读状态,${target}`); 46 | return true; 47 | }, 48 | }; 49 | 50 | export const shallowReadonlyHandlers = extend({},readonlyHandlers,{ 51 | get:shallowReadonlyGet 52 | }) 53 | -------------------------------------------------------------------------------- /src/reactivity/src/computed.ts: -------------------------------------------------------------------------------- 1 | import { ReactiveEffect } from "./effect"; 2 | 3 | class ComputedImpl { 4 | private _dirty: boolean = true; 5 | private _value: any; 6 | private _effect: ReactiveEffect; 7 | constructor(getter) { 8 | this._effect = new ReactiveEffect(getter, () => { 9 | if (!this._dirty) { 10 | this._dirty = true; 11 | } 12 | }); 13 | } 14 | get value() { 15 | if (this._dirty) { 16 | this._value = this._effect.run(); 17 | this._dirty = false; 18 | } 19 | return this._value; 20 | } 21 | } 22 | 23 | export function computed(getter) { 24 | return new ComputedImpl(getter); 25 | } 26 | -------------------------------------------------------------------------------- /src/reactivity/src/effect.ts: -------------------------------------------------------------------------------- 1 | import { extend } from "../shared"; 2 | 3 | let activeEffect; 4 | let shouldTrack = false; 5 | const targetMap = new Map(); 6 | 7 | export class ReactiveEffect { 8 | private _fn: any; 9 | deps: any[] = []; 10 | active: boolean = true; 11 | public scheduler: Function | undefined; 12 | onStop?: Function | undefined; 13 | constructor(fn, scheduler?: Function) { 14 | this._fn = fn; 15 | this.scheduler = scheduler; 16 | } 17 | run() { 18 | if (!this.active) { 19 | return this._fn(); 20 | } 21 | shouldTrack = true 22 | activeEffect = this; 23 | 24 | const res = this._fn(); 25 | shouldTrack = false 26 | return res; 27 | } 28 | stop() { 29 | if (this.active) { 30 | cleanupEffect(this); 31 | this.onStop && this.onStop(); 32 | this.active = false; 33 | } 34 | } 35 | } 36 | 37 | function cleanupEffect(effect) { 38 | effect.deps.forEach((dep) => { 39 | dep.delete(effect); 40 | }); 41 | effect.deps.length = 0; 42 | } 43 | export function track(target, key) { 44 | if (!isTracking()) return; 45 | // target->key->dep 46 | 47 | let depsMap = targetMap.get(target); 48 | if (!depsMap) { 49 | depsMap = new Map(); 50 | targetMap.set(target, depsMap); 51 | } 52 | let dep = depsMap.get(key); 53 | if (!dep) { 54 | dep = new Set(); 55 | depsMap.set(key, dep); 56 | } 57 | trackEffects(dep); 58 | activeEffect.deps.push(dep); 59 | } 60 | 61 | export function trackEffects(dep) { 62 | if (dep.has(activeEffect)) return; 63 | 64 | dep.add(activeEffect); 65 | } 66 | 67 | export function isTracking() { 68 | return activeEffect && shouldTrack; 69 | } 70 | 71 | export function trigger(target, key) { 72 | const depsMap = targetMap.get(target); 73 | 74 | const dep = depsMap.get(key); 75 | 76 | triggerEffects(dep); 77 | } 78 | 79 | export function triggerEffects(dep) { 80 | for (let effect of dep) { 81 | if (effect.scheduler) { 82 | effect.scheduler(); 83 | } else { 84 | effect.run(); 85 | } 86 | } 87 | } 88 | 89 | export function stop(runner) { 90 | runner.effect.stop(); 91 | } 92 | 93 | export function effect(fn, options: any = {}) { 94 | const _effect = new ReactiveEffect(fn, options.scheduler); 95 | extend(_effect, options); 96 | _effect.run(); 97 | const runner: any = _effect.run.bind(_effect); 98 | runner.effect = _effect; 99 | return runner; 100 | } 101 | -------------------------------------------------------------------------------- /src/reactivity/src/reactive.ts: -------------------------------------------------------------------------------- 1 | import { 2 | mutableHandlers, 3 | readonlyHandlers, 4 | shallowReadonlyHandlers, 5 | } from "./baseHandles"; 6 | export enum ReactiveFlags { 7 | IS_REACTIVE = "__v_isReactive", 8 | IS_READONLY = "__v_isReadonly", 9 | } 10 | export function reactive(raw) { 11 | return new Proxy(raw, mutableHandlers); 12 | } 13 | 14 | export function readonly(raw) { 15 | return new Proxy(raw, readonlyHandlers); 16 | } 17 | export function shallowReadonly(raw) { 18 | return new Proxy(raw, shallowReadonlyHandlers); 19 | } 20 | export function isReactive(target) { 21 | return !!target[ReactiveFlags.IS_REACTIVE]; 22 | } 23 | 24 | export function isReadonly(target) { 25 | return !!target[ReactiveFlags.IS_READONLY]; 26 | } 27 | 28 | export function isProxy(target) { 29 | return isReactive(target) || isReactive(target); 30 | } 31 | -------------------------------------------------------------------------------- /src/reactivity/src/ref.ts: -------------------------------------------------------------------------------- 1 | import { hasChange, isObject } from "../shared"; 2 | import { isTracking, trackEffects, triggerEffects } from "./effect"; 3 | import { reactive } from "./reactive"; 4 | 5 | enum RefFlags { 6 | IS_REF = "__is_ref", 7 | } 8 | 9 | class RefImpl { 10 | private _value: any; 11 | public dep; 12 | private _rawValue: any; 13 | public [RefFlags.IS_REF] = true; 14 | constructor(value) { 15 | this.dep = new Set(); 16 | this._rawValue = value; 17 | this._value = convert(value); 18 | } 19 | get value() { 20 | if (isTracking()) { 21 | trackEffects(this.dep); 22 | } 23 | return this._value; 24 | } 25 | set value(newValue) { 26 | if (!hasChange(this._rawValue, newValue)) return; 27 | this._rawValue = newValue; 28 | this._value = convert(newValue); 29 | triggerEffects(this.dep); 30 | } 31 | } 32 | function convert(value) { 33 | return isObject(value) ? reactive(value) : value; 34 | } 35 | 36 | export function ref(value) { 37 | return new RefImpl(value); 38 | } 39 | 40 | export function isRef(ref) { 41 | return !!ref[RefFlags.IS_REF]; 42 | } 43 | 44 | export function unRef(ref) { 45 | return isRef(ref) ? ref.value : ref; 46 | } 47 | 48 | export function proxyRefs(objectWithRef) { 49 | return new Proxy(objectWithRef, { 50 | get(target, key) { 51 | return unRef(Reflect.get(target, key)); 52 | }, 53 | 54 | set(target, key, value) { 55 | if (isRef(target[key]) && !isRef(value)) { 56 | return (target[key].value = value); 57 | } else { 58 | return Reflect.set(target, key, value); 59 | } 60 | }, 61 | }); 62 | } 63 | -------------------------------------------------------------------------------- /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": "es5" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, 15 | "lib": ["DOM","es6"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 16 | // "jsx": "preserve", /* Specify what JSX code is generated. */ 17 | // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ 18 | // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 19 | // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ 20 | // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 21 | // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ 22 | // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ 23 | // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 24 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 25 | 26 | /* Modules */ 27 | "module": "commonjs" /* Specify what module code is generated. */, 28 | // "rootDir": "./", /* Specify the root folder within your source files. */ 29 | // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ 30 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 31 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 32 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 33 | // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ 34 | "types": [ 35 | "jest" 36 | ], 37 | /* Specify type package names to be included without being referenced in a source file. */, 38 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 39 | // "resolveJsonModule": true, /* Enable importing .json files */ 40 | // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ 41 | 42 | /* JavaScript Support */ 43 | // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ 44 | // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 45 | // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ 46 | 47 | /* Emit */ 48 | // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 49 | // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 50 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 51 | // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 52 | // "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. */ 53 | // "outDir": "./", /* Specify an output folder for all emitted files. */ 54 | // "removeComments": true, /* Disable emitting comments. */ 55 | // "noEmit": true, /* Disable emitting files from a compilation. */ 56 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 57 | // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ 58 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 59 | // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 60 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 61 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 62 | // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 63 | // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 64 | // "newLine": "crlf", /* Set the newline character for emitting files. */ 65 | // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ 66 | // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ 67 | // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 68 | // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ 69 | // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 70 | 71 | /* Interop Constraints */ 72 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 73 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 74 | "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, 75 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 76 | "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, 77 | 78 | /* Type Checking */ 79 | "strict": true /* Enable all strict type-checking options. */, 80 | "noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ 81 | // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ 82 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 83 | // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ 84 | // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 85 | // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ 86 | // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ 87 | // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 88 | // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ 89 | // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ 90 | // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 91 | // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 92 | // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 93 | // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ 94 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 95 | // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ 96 | // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 97 | // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 98 | 99 | /* Completeness */ 100 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 101 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5": 6 | version "7.14.5" 7 | resolved "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" 8 | integrity sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts= 9 | dependencies: 10 | "@babel/highlight" "^7.14.5" 11 | 12 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.15.0": 13 | version "7.15.0" 14 | resolved "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" 15 | integrity sha1-Lbr4uFM0eWyvuw9Xk6kKL8AQsXY= 16 | 17 | "@babel/core@^7.1.0", "@babel/core@^7.15.5", "@babel/core@^7.7.2", "@babel/core@^7.7.5": 18 | version "7.15.5" 19 | resolved "https://registry.nlark.com/@babel/core/download/@babel/core-7.15.5.tgz#f8ed9ace730722544609f90c9bb49162dc3bf5b9" 20 | integrity sha1-+O2aznMHIlRGCfkMm7SRYtw79bk= 21 | dependencies: 22 | "@babel/code-frame" "^7.14.5" 23 | "@babel/generator" "^7.15.4" 24 | "@babel/helper-compilation-targets" "^7.15.4" 25 | "@babel/helper-module-transforms" "^7.15.4" 26 | "@babel/helpers" "^7.15.4" 27 | "@babel/parser" "^7.15.5" 28 | "@babel/template" "^7.15.4" 29 | "@babel/traverse" "^7.15.4" 30 | "@babel/types" "^7.15.4" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.15.4", "@babel/generator@^7.7.2": 39 | version "7.15.4" 40 | resolved "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.15.4.tgz?cache=0&sync_timestamp=1630618918440&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.15.4.tgz#85acb159a267ca6324f9793986991ee2022a05b0" 41 | integrity sha1-hayxWaJnymMk+Xk5hpke4gIqBbA= 42 | dependencies: 43 | "@babel/types" "^7.15.4" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4": 48 | version "7.15.4" 49 | resolved "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.15.4.tgz?cache=0&sync_timestamp=1630618920081&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835" 50 | integrity sha1-PQ5DsAxeSf22xX5CFgGnpljV+DU= 51 | dependencies: 52 | "@babel/types" "^7.15.4" 53 | 54 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": 55 | version "7.15.4" 56 | resolved "https://registry.nlark.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz?cache=0&sync_timestamp=1630619287194&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-builder-binary-assignment-operator-visitor%2Fdownload%2F%40babel%2Fhelper-builder-binary-assignment-operator-visitor-7.15.4.tgz#21ad815f609b84ee0e3058676c33cf6d1670525f" 57 | integrity sha1-Ia2BX2CbhO4OMFhnbDPPbRZwUl8= 58 | dependencies: 59 | "@babel/helper-explode-assignable-expression" "^7.15.4" 60 | "@babel/types" "^7.15.4" 61 | 62 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.15.4": 63 | version "7.15.4" 64 | resolved "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.15.4.tgz?cache=0&sync_timestamp=1630618788550&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" 65 | integrity sha1-z22U8w++/BORI+J91rAvZa7tt7k= 66 | dependencies: 67 | "@babel/compat-data" "^7.15.0" 68 | "@babel/helper-validator-option" "^7.14.5" 69 | browserslist "^4.16.6" 70 | semver "^6.3.0" 71 | 72 | "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.4": 73 | version "7.15.4" 74 | resolved "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.15.4.tgz?cache=0&sync_timestamp=1630618927387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.15.4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e" 75 | integrity sha1-f5d8F70SpfujY8sZvqCQOUvzfS4= 76 | dependencies: 77 | "@babel/helper-annotate-as-pure" "^7.15.4" 78 | "@babel/helper-function-name" "^7.15.4" 79 | "@babel/helper-member-expression-to-functions" "^7.15.4" 80 | "@babel/helper-optimise-call-expression" "^7.15.4" 81 | "@babel/helper-replace-supers" "^7.15.4" 82 | "@babel/helper-split-export-declaration" "^7.15.4" 83 | 84 | "@babel/helper-create-regexp-features-plugin@^7.14.5": 85 | version "7.14.5" 86 | resolved "https://registry.nlark.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623280375996&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-regexp-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" 87 | integrity sha1-x9WsXpz2IcJgV3Ivt6ikxYiTWMQ= 88 | dependencies: 89 | "@babel/helper-annotate-as-pure" "^7.14.5" 90 | regexpu-core "^4.7.1" 91 | 92 | "@babel/helper-define-polyfill-provider@^0.2.2": 93 | version "0.2.3" 94 | resolved "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025470416&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-define-polyfill-provider%2Fdownload%2F%40babel%2Fhelper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" 95 | integrity sha1-BSXt7FCUZTooJojTTYRuTHXpwLY= 96 | dependencies: 97 | "@babel/helper-compilation-targets" "^7.13.0" 98 | "@babel/helper-module-imports" "^7.12.13" 99 | "@babel/helper-plugin-utils" "^7.13.0" 100 | "@babel/traverse" "^7.13.0" 101 | debug "^4.1.1" 102 | lodash.debounce "^4.0.8" 103 | resolve "^1.14.2" 104 | semver "^6.1.2" 105 | 106 | "@babel/helper-explode-assignable-expression@^7.15.4": 107 | version "7.15.4" 108 | resolved "https://registry.nlark.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.15.4.tgz?cache=0&sync_timestamp=1630619284047&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-explode-assignable-expression%2Fdownload%2F%40babel%2Fhelper-explode-assignable-expression-7.15.4.tgz#f9aec9d219f271eaf92b9f561598ca6b2682600c" 109 | integrity sha1-+a7J0hnycer5K59WFZjKayaCYAw= 110 | dependencies: 111 | "@babel/types" "^7.15.4" 112 | 113 | "@babel/helper-function-name@^7.14.5", "@babel/helper-function-name@^7.15.4": 114 | version "7.15.4" 115 | resolved "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.15.4.tgz?cache=0&sync_timestamp=1630618923307&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" 116 | integrity sha1-hFdE2vxDgaSl+2r6bD02+Yp4frw= 117 | dependencies: 118 | "@babel/helper-get-function-arity" "^7.15.4" 119 | "@babel/template" "^7.15.4" 120 | "@babel/types" "^7.15.4" 121 | 122 | "@babel/helper-get-function-arity@^7.15.4": 123 | version "7.15.4" 124 | resolved "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.15.4.tgz?cache=0&sync_timestamp=1630618916983&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" 125 | integrity sha1-CYgYk0oTf854tTaj4BWGS+Hih5s= 126 | dependencies: 127 | "@babel/types" "^7.15.4" 128 | 129 | "@babel/helper-hoist-variables@^7.15.4": 130 | version "7.15.4" 131 | resolved "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.15.4.tgz?cache=0&sync_timestamp=1630618919536&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" 132 | integrity sha1-CZk6MlnA6Rj5nRBCYd/fwDPxeN8= 133 | dependencies: 134 | "@babel/types" "^7.15.4" 135 | 136 | "@babel/helper-member-expression-to-functions@^7.15.4": 137 | version "7.15.4" 138 | resolved "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.15.4.tgz?cache=0&sync_timestamp=1630618921004&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" 139 | integrity sha1-v9NNybupgkpGWLAxfsL9VxpR5u8= 140 | dependencies: 141 | "@babel/types" "^7.15.4" 142 | 143 | "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.15.4": 144 | version "7.15.4" 145 | resolved "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.15.4.tgz?cache=0&sync_timestamp=1630619202866&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 146 | integrity sha1-4YAH0jBjLeoZtHhTuYRHbntOED8= 147 | dependencies: 148 | "@babel/types" "^7.15.4" 149 | 150 | "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4": 151 | version "7.15.7" 152 | resolved "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.15.7.tgz?cache=0&sync_timestamp=1631920167398&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.15.7.tgz#7da80c8cbc1f02655d83f8b79d25866afe50d226" 153 | integrity sha1-fagMjLwfAmVdg/i3nSWGav5Q0iY= 154 | dependencies: 155 | "@babel/helper-module-imports" "^7.15.4" 156 | "@babel/helper-replace-supers" "^7.15.4" 157 | "@babel/helper-simple-access" "^7.15.4" 158 | "@babel/helper-split-export-declaration" "^7.15.4" 159 | "@babel/helper-validator-identifier" "^7.15.7" 160 | "@babel/template" "^7.15.4" 161 | "@babel/traverse" "^7.15.4" 162 | "@babel/types" "^7.15.6" 163 | 164 | "@babel/helper-optimise-call-expression@^7.15.4": 165 | version "7.15.4" 166 | resolved "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.15.4.tgz?cache=0&sync_timestamp=1630618919803&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" 167 | integrity sha1-8xClEho7nMUtmrGRIr1ymCLe4XE= 168 | dependencies: 169 | "@babel/types" "^7.15.4" 170 | 171 | "@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.8.0", "@babel/helper-plugin-utils@^7.8.3": 172 | version "7.14.5" 173 | resolved "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" 174 | integrity sha1-WsgizpfuxGdBq3ClF5ceRDpwxak= 175 | 176 | "@babel/helper-remap-async-to-generator@^7.14.5", "@babel/helper-remap-async-to-generator@^7.15.4": 177 | version "7.15.4" 178 | resolved "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.15.4.tgz#2637c0731e4c90fbf58ac58b50b2b5a192fc970f" 179 | integrity sha1-JjfAcx5MkPv1isWLULK1oZL8lw8= 180 | dependencies: 181 | "@babel/helper-annotate-as-pure" "^7.15.4" 182 | "@babel/helper-wrap-function" "^7.15.4" 183 | "@babel/types" "^7.15.4" 184 | 185 | "@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.4": 186 | version "7.15.4" 187 | resolved "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.15.4.tgz?cache=0&sync_timestamp=1630618924259&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" 188 | integrity sha1-UqirJrqRjH9t7ihiiwcHGse3NHo= 189 | dependencies: 190 | "@babel/helper-member-expression-to-functions" "^7.15.4" 191 | "@babel/helper-optimise-call-expression" "^7.15.4" 192 | "@babel/traverse" "^7.15.4" 193 | "@babel/types" "^7.15.4" 194 | 195 | "@babel/helper-simple-access@^7.15.4": 196 | version "7.15.4" 197 | resolved "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.15.4.tgz?cache=0&sync_timestamp=1630619204668&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" 198 | integrity sha1-rDaJBavx3o6XgUNLY12PhnS8wTs= 199 | dependencies: 200 | "@babel/types" "^7.15.4" 201 | 202 | "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.15.4": 203 | version "7.15.4" 204 | resolved "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.15.4.tgz?cache=0&sync_timestamp=1630619286160&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb" 205 | integrity sha1-cH29uh9K0Po0+RFPyBl67H1dous= 206 | dependencies: 207 | "@babel/types" "^7.15.4" 208 | 209 | "@babel/helper-split-export-declaration@^7.15.4": 210 | version "7.15.4" 211 | resolved "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" 212 | integrity sha1-rsq5Lc2+9qEKo7YqsgSwhfd24lc= 213 | dependencies: 214 | "@babel/types" "^7.15.4" 215 | 216 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7": 217 | version "7.15.7" 218 | resolved "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz?cache=0&sync_timestamp=1631920000984&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 219 | integrity sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k= 220 | 221 | "@babel/helper-validator-option@^7.14.5": 222 | version "7.14.5" 223 | resolved "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 224 | integrity sha1-bnKh//GNXfy4eOHmLxoCHEty1aM= 225 | 226 | "@babel/helper-wrap-function@^7.15.4": 227 | version "7.15.4" 228 | resolved "https://registry.nlark.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.15.4.tgz#6f754b2446cfaf3d612523e6ab8d79c27c3a3de7" 229 | integrity sha1-b3VLJEbPrz1hJSPmq415wnw6Pec= 230 | dependencies: 231 | "@babel/helper-function-name" "^7.15.4" 232 | "@babel/template" "^7.15.4" 233 | "@babel/traverse" "^7.15.4" 234 | "@babel/types" "^7.15.4" 235 | 236 | "@babel/helpers@^7.15.4": 237 | version "7.15.4" 238 | resolved "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.15.4.tgz?cache=0&sync_timestamp=1630619159559&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" 239 | integrity sha1-X0DwIFCjAnEho89I1JfAXFVer0M= 240 | dependencies: 241 | "@babel/template" "^7.15.4" 242 | "@babel/traverse" "^7.15.4" 243 | "@babel/types" "^7.15.4" 244 | 245 | "@babel/highlight@^7.14.5": 246 | version "7.14.5" 247 | resolved "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz?cache=0&sync_timestamp=1623280393681&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 248 | integrity sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk= 249 | dependencies: 250 | "@babel/helper-validator-identifier" "^7.14.5" 251 | chalk "^2.0.0" 252 | js-tokens "^4.0.0" 253 | 254 | "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.7.2": 255 | version "7.15.7" 256 | resolved "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.7.tgz#0c3ed4a2eb07b165dfa85b3cc45c727334c4edae" 257 | integrity sha1-DD7UousHsWXfqFs8xFxyczTE7a4= 258 | 259 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.15.4": 260 | version "7.15.4" 261 | resolved "https://registry.nlark.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-bugfix-v8-spread-parameters-in-optional-chaining%2Fdownload%2F%40babel%2Fplugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a567e" 262 | integrity sha1-296rsegPYi2fC1g++ymZYF4KVn4= 263 | dependencies: 264 | "@babel/helper-plugin-utils" "^7.14.5" 265 | "@babel/helper-skip-transparent-expression-wrappers" "^7.15.4" 266 | "@babel/plugin-proposal-optional-chaining" "^7.14.5" 267 | 268 | "@babel/plugin-proposal-async-generator-functions@^7.15.4": 269 | version "7.15.4" 270 | resolved "https://registry.nlark.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-async-generator-functions%2Fdownload%2F%40babel%2Fplugin-proposal-async-generator-functions-7.15.4.tgz#f82aabe96c135d2ceaa917feb9f5fca31635277e" 271 | integrity sha1-+Cqr6WwTXSzqqRf+ufX8oxY1J34= 272 | dependencies: 273 | "@babel/helper-plugin-utils" "^7.14.5" 274 | "@babel/helper-remap-async-to-generator" "^7.15.4" 275 | "@babel/plugin-syntax-async-generators" "^7.8.4" 276 | 277 | "@babel/plugin-proposal-class-properties@^7.14.5": 278 | version "7.14.5" 279 | resolved "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623280683880&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-class-properties%2Fdownload%2F%40babel%2Fplugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" 280 | integrity sha1-QNHuFAxbHjGjUPT17tlFCWVZtC4= 281 | dependencies: 282 | "@babel/helper-create-class-features-plugin" "^7.14.5" 283 | "@babel/helper-plugin-utils" "^7.14.5" 284 | 285 | "@babel/plugin-proposal-class-static-block@^7.15.4": 286 | version "7.15.4" 287 | resolved "https://registry.nlark.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-class-static-block%2Fdownload%2F%40babel%2Fplugin-proposal-class-static-block-7.15.4.tgz#3e7ca6128453c089e8b477a99f970c63fc1cb8d7" 288 | integrity sha1-PnymEoRTwInotHepn5cMY/wcuNc= 289 | dependencies: 290 | "@babel/helper-create-class-features-plugin" "^7.15.4" 291 | "@babel/helper-plugin-utils" "^7.14.5" 292 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 293 | 294 | "@babel/plugin-proposal-dynamic-import@^7.14.5": 295 | version "7.14.5" 296 | resolved "https://registry.nlark.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.14.5.tgz?cache=0&sync_timestamp=1623280457211&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-dynamic-import%2Fdownload%2F%40babel%2Fplugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c" 297 | integrity sha1-DGYX30YcDB+P/ztHzVl3I2AQHSw= 298 | dependencies: 299 | "@babel/helper-plugin-utils" "^7.14.5" 300 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 301 | 302 | "@babel/plugin-proposal-export-namespace-from@^7.14.5": 303 | version "7.14.5" 304 | resolved "https://registry.nlark.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.14.5.tgz?cache=0&sync_timestamp=1623280459053&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-export-namespace-from%2Fdownload%2F%40babel%2Fplugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76" 305 | integrity sha1-260kQxDObM0IMHIWfYzqg6Uvr3Y= 306 | dependencies: 307 | "@babel/helper-plugin-utils" "^7.14.5" 308 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 309 | 310 | "@babel/plugin-proposal-json-strings@^7.14.5": 311 | version "7.14.5" 312 | resolved "https://registry.nlark.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb" 313 | integrity sha1-ON5g2zYug6PYyUSshY3fnwwiOes= 314 | dependencies: 315 | "@babel/helper-plugin-utils" "^7.14.5" 316 | "@babel/plugin-syntax-json-strings" "^7.8.3" 317 | 318 | "@babel/plugin-proposal-logical-assignment-operators@^7.14.5": 319 | version "7.14.5" 320 | resolved "https://registry.nlark.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.14.5.tgz?cache=0&sync_timestamp=1623280460897&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-logical-assignment-operators%2Fdownload%2F%40babel%2Fplugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738" 321 | integrity sha1-bmIpwqmbAqspFfglceDMZGpAxzg= 322 | dependencies: 323 | "@babel/helper-plugin-utils" "^7.14.5" 324 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 325 | 326 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": 327 | version "7.14.5" 328 | resolved "https://registry.nlark.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz?cache=0&sync_timestamp=1623280605042&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-nullish-coalescing-operator%2Fdownload%2F%40babel%2Fplugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" 329 | integrity sha1-7jhYnOAOLMWbKZ7D6kBvzToP2vY= 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.14.5" 332 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 333 | 334 | "@babel/plugin-proposal-numeric-separator@^7.14.5": 335 | version "7.14.5" 336 | resolved "https://registry.nlark.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.14.5.tgz?cache=0&sync_timestamp=1623280460632&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-numeric-separator%2Fdownload%2F%40babel%2Fplugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18" 337 | integrity sha1-g2Mb8z2aUd8YTCECoGmsDFjAXxg= 338 | dependencies: 339 | "@babel/helper-plugin-utils" "^7.14.5" 340 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 341 | 342 | "@babel/plugin-proposal-object-rest-spread@^7.15.6": 343 | version "7.15.6" 344 | resolved "https://registry.nlark.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.15.6.tgz?cache=0&sync_timestamp=1631216659207&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-proposal-object-rest-spread-7.15.6.tgz#ef68050c8703d07b25af402cb96cf7f34a68ed11" 345 | integrity sha1-72gFDIcD0Hslr0AsuWz380po7RE= 346 | dependencies: 347 | "@babel/compat-data" "^7.15.0" 348 | "@babel/helper-compilation-targets" "^7.15.4" 349 | "@babel/helper-plugin-utils" "^7.14.5" 350 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 351 | "@babel/plugin-transform-parameters" "^7.15.4" 352 | 353 | "@babel/plugin-proposal-optional-catch-binding@^7.14.5": 354 | version "7.14.5" 355 | resolved "https://registry.nlark.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" 356 | integrity sha1-k53W7d7/Omf997PwRLU0cmJZjDw= 357 | dependencies: 358 | "@babel/helper-plugin-utils" "^7.14.5" 359 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 360 | 361 | "@babel/plugin-proposal-optional-chaining@^7.14.5": 362 | version "7.14.5" 363 | resolved "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" 364 | integrity sha1-+oNlHmCjYOPxN5fu8AuNUZaVtgM= 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.14.5" 367 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" 368 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 369 | 370 | "@babel/plugin-proposal-private-methods@^7.14.5": 371 | version "7.14.5" 372 | resolved "https://registry.nlark.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d" 373 | integrity sha1-N0RklZlrKUXzD1vltg1eKqT1eS0= 374 | dependencies: 375 | "@babel/helper-create-class-features-plugin" "^7.14.5" 376 | "@babel/helper-plugin-utils" "^7.14.5" 377 | 378 | "@babel/plugin-proposal-private-property-in-object@^7.15.4": 379 | version "7.15.4" 380 | resolved "https://registry.nlark.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-private-property-in-object%2Fdownload%2F%40babel%2Fplugin-proposal-private-property-in-object-7.15.4.tgz#55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5" 381 | integrity sha1-VcXjtNAmH9RP5jfj9iTPsPSE4+U= 382 | dependencies: 383 | "@babel/helper-annotate-as-pure" "^7.15.4" 384 | "@babel/helper-create-class-features-plugin" "^7.15.4" 385 | "@babel/helper-plugin-utils" "^7.14.5" 386 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 387 | 388 | "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 389 | version "7.14.5" 390 | resolved "https://registry.nlark.com/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.14.5.tgz?cache=0&sync_timestamp=1623280385924&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-unicode-property-regex%2Fdownload%2F%40babel%2Fplugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" 391 | integrity sha1-D5XuDnV6XWR/N42qDsp+k/qou+g= 392 | dependencies: 393 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 394 | "@babel/helper-plugin-utils" "^7.14.5" 395 | 396 | "@babel/plugin-syntax-async-generators@^7.8.4": 397 | version "7.8.4" 398 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 399 | integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0= 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.8.0" 402 | 403 | "@babel/plugin-syntax-bigint@^7.8.3": 404 | version "7.8.3" 405 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 406 | integrity sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo= 407 | dependencies: 408 | "@babel/helper-plugin-utils" "^7.8.0" 409 | 410 | "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": 411 | version "7.12.13" 412 | resolved "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 413 | integrity sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA= 414 | dependencies: 415 | "@babel/helper-plugin-utils" "^7.12.13" 416 | 417 | "@babel/plugin-syntax-class-static-block@^7.14.5": 418 | version "7.14.5" 419 | resolved "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz?cache=0&sync_timestamp=1623280461402&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-class-static-block%2Fdownload%2F%40babel%2Fplugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" 420 | integrity sha1-GV34mxRrS3izv4l/16JXyEZZ1AY= 421 | dependencies: 422 | "@babel/helper-plugin-utils" "^7.14.5" 423 | 424 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 425 | version "7.8.3" 426 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 427 | integrity sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM= 428 | dependencies: 429 | "@babel/helper-plugin-utils" "^7.8.0" 430 | 431 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 432 | version "7.8.3" 433 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 434 | integrity sha1-AolkqbqA28CUyRXEh618TnpmRlo= 435 | dependencies: 436 | "@babel/helper-plugin-utils" "^7.8.3" 437 | 438 | "@babel/plugin-syntax-import-meta@^7.8.3": 439 | version "7.10.4" 440 | resolved "https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 441 | integrity sha1-7mATSMNw+jNNIge+FYd3SWUh/VE= 442 | dependencies: 443 | "@babel/helper-plugin-utils" "^7.10.4" 444 | 445 | "@babel/plugin-syntax-json-strings@^7.8.3": 446 | version "7.8.3" 447 | resolved "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 448 | integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo= 449 | dependencies: 450 | "@babel/helper-plugin-utils" "^7.8.0" 451 | 452 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 453 | version "7.10.4" 454 | resolved "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 455 | integrity sha1-ypHvRjA1MESLkGZSusLp/plB9pk= 456 | dependencies: 457 | "@babel/helper-plugin-utils" "^7.10.4" 458 | 459 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 460 | version "7.8.3" 461 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 462 | integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak= 463 | dependencies: 464 | "@babel/helper-plugin-utils" "^7.8.0" 465 | 466 | "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": 467 | version "7.10.4" 468 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 469 | integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c= 470 | dependencies: 471 | "@babel/helper-plugin-utils" "^7.10.4" 472 | 473 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 474 | version "7.8.3" 475 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 476 | integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE= 477 | dependencies: 478 | "@babel/helper-plugin-utils" "^7.8.0" 479 | 480 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 481 | version "7.8.3" 482 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 483 | integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE= 484 | dependencies: 485 | "@babel/helper-plugin-utils" "^7.8.0" 486 | 487 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 488 | version "7.8.3" 489 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 490 | integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io= 491 | dependencies: 492 | "@babel/helper-plugin-utils" "^7.8.0" 493 | 494 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 495 | version "7.14.5" 496 | resolved "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz?cache=0&sync_timestamp=1623280462994&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-private-property-in-object%2Fdownload%2F%40babel%2Fplugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" 497 | integrity sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0= 498 | dependencies: 499 | "@babel/helper-plugin-utils" "^7.14.5" 500 | 501 | "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": 502 | version "7.14.5" 503 | resolved "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz?cache=0&sync_timestamp=1623280464882&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-top-level-await%2Fdownload%2F%40babel%2Fplugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 504 | integrity sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw= 505 | dependencies: 506 | "@babel/helper-plugin-utils" "^7.14.5" 507 | 508 | "@babel/plugin-syntax-typescript@^7.14.5", "@babel/plugin-syntax-typescript@^7.7.2": 509 | version "7.14.5" 510 | resolved "https://registry.nlark.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" 511 | integrity sha1-uCxs5HGxZbXOQgz5KRTW+0YiVxY= 512 | dependencies: 513 | "@babel/helper-plugin-utils" "^7.14.5" 514 | 515 | "@babel/plugin-transform-arrow-functions@^7.14.5": 516 | version "7.14.5" 517 | resolved "https://registry.nlark.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" 518 | integrity sha1-9xh9lYinaN0IC/TJ/+EX6mL3hio= 519 | dependencies: 520 | "@babel/helper-plugin-utils" "^7.14.5" 521 | 522 | "@babel/plugin-transform-async-to-generator@^7.14.5": 523 | version "7.14.5" 524 | resolved "https://registry.nlark.com/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623280684756&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-async-to-generator%2Fdownload%2F%40babel%2Fplugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" 525 | integrity sha1-cseJCE2PIJSsuUVjOUPvhEPTnmc= 526 | dependencies: 527 | "@babel/helper-module-imports" "^7.14.5" 528 | "@babel/helper-plugin-utils" "^7.14.5" 529 | "@babel/helper-remap-async-to-generator" "^7.14.5" 530 | 531 | "@babel/plugin-transform-block-scoped-functions@^7.14.5": 532 | version "7.14.5" 533 | resolved "https://registry.nlark.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" 534 | integrity sha1-5IZB2ZnUvBV6Z+8zautUvET9OtQ= 535 | dependencies: 536 | "@babel/helper-plugin-utils" "^7.14.5" 537 | 538 | "@babel/plugin-transform-block-scoping@^7.15.3": 539 | version "7.15.3" 540 | resolved "https://registry.nlark.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf" 541 | integrity sha1-lMgabi/CMLzObvU3rJah5NKzr68= 542 | dependencies: 543 | "@babel/helper-plugin-utils" "^7.14.5" 544 | 545 | "@babel/plugin-transform-classes@^7.15.4": 546 | version "7.15.4" 547 | resolved "https://registry.nlark.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-classes%2Fdownload%2F%40babel%2Fplugin-transform-classes-7.15.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1" 548 | integrity sha1-UK7heq9/MyrkTjvOTC4QU01dO/E= 549 | dependencies: 550 | "@babel/helper-annotate-as-pure" "^7.15.4" 551 | "@babel/helper-function-name" "^7.15.4" 552 | "@babel/helper-optimise-call-expression" "^7.15.4" 553 | "@babel/helper-plugin-utils" "^7.14.5" 554 | "@babel/helper-replace-supers" "^7.15.4" 555 | "@babel/helper-split-export-declaration" "^7.15.4" 556 | globals "^11.1.0" 557 | 558 | "@babel/plugin-transform-computed-properties@^7.14.5": 559 | version "7.14.5" 560 | resolved "https://registry.nlark.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" 561 | integrity sha1-G514mHQg0RIj1BGVRhzEO5dLIE8= 562 | dependencies: 563 | "@babel/helper-plugin-utils" "^7.14.5" 564 | 565 | "@babel/plugin-transform-destructuring@^7.14.7": 566 | version "7.14.7" 567 | resolved "https://registry.nlark.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576" 568 | integrity sha1-CtWO034j4iCE0QnxhSYINeVVdXY= 569 | dependencies: 570 | "@babel/helper-plugin-utils" "^7.14.5" 571 | 572 | "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": 573 | version "7.14.5" 574 | resolved "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623280386290&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-dotall-regex%2Fdownload%2F%40babel%2Fplugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" 575 | integrity sha1-L2v3bka9+AQ7Tn4WzyRTJim6DHo= 576 | dependencies: 577 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 578 | "@babel/helper-plugin-utils" "^7.14.5" 579 | 580 | "@babel/plugin-transform-duplicate-keys@^7.14.5": 581 | version "7.14.5" 582 | resolved "https://registry.nlark.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" 583 | integrity sha1-NlpIRIgb3xUB46nwJw5/D5EXeVQ= 584 | dependencies: 585 | "@babel/helper-plugin-utils" "^7.14.5" 586 | 587 | "@babel/plugin-transform-exponentiation-operator@^7.14.5": 588 | version "7.14.5" 589 | resolved "https://registry.nlark.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.14.5.tgz?cache=0&sync_timestamp=1623280390976&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-exponentiation-operator%2Fdownload%2F%40babel%2Fplugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" 590 | integrity sha1-UVS43Wo9/m2Qkj1hckvT3uuQtJM= 591 | dependencies: 592 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" 593 | "@babel/helper-plugin-utils" "^7.14.5" 594 | 595 | "@babel/plugin-transform-for-of@^7.15.4": 596 | version "7.15.4" 597 | resolved "https://registry.nlark.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.15.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2" 598 | integrity sha1-JcYszicYz7KXFfQW511SY/s2qMI= 599 | dependencies: 600 | "@babel/helper-plugin-utils" "^7.14.5" 601 | 602 | "@babel/plugin-transform-function-name@^7.14.5": 603 | version "7.14.5" 604 | resolved "https://registry.nlark.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" 605 | integrity sha1-6Bxl7LkAdG1/MYAva+0fUtkV1vI= 606 | dependencies: 607 | "@babel/helper-function-name" "^7.14.5" 608 | "@babel/helper-plugin-utils" "^7.14.5" 609 | 610 | "@babel/plugin-transform-literals@^7.14.5": 611 | version "7.14.5" 612 | resolved "https://registry.nlark.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" 613 | integrity sha1-QdBsf/XU0J489Fh70+zzkwxzD3g= 614 | dependencies: 615 | "@babel/helper-plugin-utils" "^7.14.5" 616 | 617 | "@babel/plugin-transform-member-expression-literals@^7.14.5": 618 | version "7.14.5" 619 | resolved "https://registry.nlark.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" 620 | integrity sha1-s5zVISor8jWmF9Mg7CtIvMCRuKc= 621 | dependencies: 622 | "@babel/helper-plugin-utils" "^7.14.5" 623 | 624 | "@babel/plugin-transform-modules-amd@^7.14.5": 625 | version "7.14.5" 626 | resolved "https://registry.nlark.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.14.5.tgz?cache=0&sync_timestamp=1623280684461&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-amd%2Fdownload%2F%40babel%2Fplugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7" 627 | integrity sha1-T9nOfjQRy4uDhISAtwQdgwBIWPc= 628 | dependencies: 629 | "@babel/helper-module-transforms" "^7.14.5" 630 | "@babel/helper-plugin-utils" "^7.14.5" 631 | babel-plugin-dynamic-import-node "^2.3.3" 632 | 633 | "@babel/plugin-transform-modules-commonjs@^7.15.4": 634 | version "7.15.4" 635 | resolved "https://registry.nlark.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.15.4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c1" 636 | integrity sha1-ggEQEkDqu1p2wI72GylU92e2tME= 637 | dependencies: 638 | "@babel/helper-module-transforms" "^7.15.4" 639 | "@babel/helper-plugin-utils" "^7.14.5" 640 | "@babel/helper-simple-access" "^7.15.4" 641 | babel-plugin-dynamic-import-node "^2.3.3" 642 | 643 | "@babel/plugin-transform-modules-systemjs@^7.15.4": 644 | version "7.15.4" 645 | resolved "https://registry.nlark.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.15.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-systemjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-systemjs-7.15.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132" 646 | integrity sha1-tCiQxzSaeMgncZ8dLQzTjH0mgTI= 647 | dependencies: 648 | "@babel/helper-hoist-variables" "^7.15.4" 649 | "@babel/helper-module-transforms" "^7.15.4" 650 | "@babel/helper-plugin-utils" "^7.14.5" 651 | "@babel/helper-validator-identifier" "^7.14.9" 652 | babel-plugin-dynamic-import-node "^2.3.3" 653 | 654 | "@babel/plugin-transform-modules-umd@^7.14.5": 655 | version "7.14.5" 656 | resolved "https://registry.nlark.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0" 657 | integrity sha1-+2Yt/uaXzOJ0p82lJRkKeQlqpuA= 658 | dependencies: 659 | "@babel/helper-module-transforms" "^7.14.5" 660 | "@babel/helper-plugin-utils" "^7.14.5" 661 | 662 | "@babel/plugin-transform-named-capturing-groups-regex@^7.14.9": 663 | version "7.14.9" 664 | resolved "https://registry.nlark.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.14.9.tgz?cache=0&sync_timestamp=1627804495986&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-named-capturing-groups-regex%2Fdownload%2F%40babel%2Fplugin-transform-named-capturing-groups-regex-7.14.9.tgz#c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2" 665 | integrity sha1-xo9cXRLS66ujdi5XwsT2NHpG57I= 666 | dependencies: 667 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 668 | 669 | "@babel/plugin-transform-new-target@^7.14.5": 670 | version "7.14.5" 671 | resolved "https://registry.nlark.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8" 672 | integrity sha1-Mb2ui5JdyEB26/zSqZQBQ67X2/g= 673 | dependencies: 674 | "@babel/helper-plugin-utils" "^7.14.5" 675 | 676 | "@babel/plugin-transform-object-super@^7.14.5": 677 | version "7.14.5" 678 | resolved "https://registry.nlark.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.14.5.tgz?cache=0&sync_timestamp=1623280681813&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-object-super%2Fdownload%2F%40babel%2Fplugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" 679 | integrity sha1-0LX66snphZehYanPeMUn7ZNM3EU= 680 | dependencies: 681 | "@babel/helper-plugin-utils" "^7.14.5" 682 | "@babel/helper-replace-supers" "^7.14.5" 683 | 684 | "@babel/plugin-transform-parameters@^7.15.4": 685 | version "7.15.4" 686 | resolved "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.15.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62" 687 | integrity sha1-XyKFzDFgv0jIUCQycWtIUE0p7WI= 688 | dependencies: 689 | "@babel/helper-plugin-utils" "^7.14.5" 690 | 691 | "@babel/plugin-transform-property-literals@^7.14.5": 692 | version "7.14.5" 693 | resolved "https://registry.nlark.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" 694 | integrity sha1-DduqH4PbNgbxzfSEb6HftHNFizQ= 695 | dependencies: 696 | "@babel/helper-plugin-utils" "^7.14.5" 697 | 698 | "@babel/plugin-transform-regenerator@^7.14.5": 699 | version "7.14.5" 700 | resolved "https://registry.nlark.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.14.5.tgz?cache=0&sync_timestamp=1623280395479&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" 701 | integrity sha1-lnb9VwftKPUicnxbPAqoVERAsE8= 702 | dependencies: 703 | regenerator-transform "^0.14.2" 704 | 705 | "@babel/plugin-transform-reserved-words@^7.14.5": 706 | version "7.14.5" 707 | resolved "https://registry.nlark.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.14.5.tgz?cache=0&sync_timestamp=1623280468592&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-reserved-words%2Fdownload%2F%40babel%2Fplugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304" 708 | integrity sha1-xEWJtmHP2++NQwDcx0ad/6kvgwQ= 709 | dependencies: 710 | "@babel/helper-plugin-utils" "^7.14.5" 711 | 712 | "@babel/plugin-transform-shorthand-properties@^7.14.5": 713 | version "7.14.5" 714 | resolved "https://registry.nlark.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.14.5.tgz?cache=0&sync_timestamp=1623280351390&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-shorthand-properties%2Fdownload%2F%40babel%2Fplugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" 715 | integrity sha1-l/E4VfFAkzjYyty6ymcK154JGlg= 716 | dependencies: 717 | "@babel/helper-plugin-utils" "^7.14.5" 718 | 719 | "@babel/plugin-transform-spread@^7.14.6": 720 | version "7.14.6" 721 | resolved "https://registry.nlark.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.14.6.tgz?cache=0&sync_timestamp=1623708435507&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144" 722 | integrity sha1-a9QOV/596UqpBIUZY7VhZlL3MUQ= 723 | dependencies: 724 | "@babel/helper-plugin-utils" "^7.14.5" 725 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" 726 | 727 | "@babel/plugin-transform-sticky-regex@^7.14.5": 728 | version "7.14.5" 729 | resolved "https://registry.nlark.com/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.14.5.tgz?cache=0&sync_timestamp=1623280350911&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-sticky-regex%2Fdownload%2F%40babel%2Fplugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" 730 | integrity sha1-W2F1Qmdei3dhKUOB88KMYz9Arrk= 731 | dependencies: 732 | "@babel/helper-plugin-utils" "^7.14.5" 733 | 734 | "@babel/plugin-transform-template-literals@^7.14.5": 735 | version "7.14.5" 736 | resolved "https://registry.nlark.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280350943&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-template-literals%2Fdownload%2F%40babel%2Fplugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" 737 | integrity sha1-pfK8Izk32EU4hdxza92Nn/q/PZM= 738 | dependencies: 739 | "@babel/helper-plugin-utils" "^7.14.5" 740 | 741 | "@babel/plugin-transform-typeof-symbol@^7.14.5": 742 | version "7.14.5" 743 | resolved "https://registry.nlark.com/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.14.5.tgz?cache=0&sync_timestamp=1623280352113&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-typeof-symbol%2Fdownload%2F%40babel%2Fplugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4" 744 | integrity sha1-Oa8nOemJor0pG/a1PxaYFCPUV9Q= 745 | dependencies: 746 | "@babel/helper-plugin-utils" "^7.14.5" 747 | 748 | "@babel/plugin-transform-typescript@^7.15.0": 749 | version "7.15.4" 750 | resolved "https://registry.nlark.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.15.4.tgz?cache=0&sync_timestamp=1630618928216&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-typescript%2Fdownload%2F%40babel%2Fplugin-transform-typescript-7.15.4.tgz#db7a062dcf8be5fc096bc0eeb40a13fbfa1fa251" 751 | integrity sha1-23oGLc+L5fwJa8DutAoT+/ofolE= 752 | dependencies: 753 | "@babel/helper-create-class-features-plugin" "^7.15.4" 754 | "@babel/helper-plugin-utils" "^7.14.5" 755 | "@babel/plugin-syntax-typescript" "^7.14.5" 756 | 757 | "@babel/plugin-transform-unicode-escapes@^7.14.5": 758 | version "7.14.5" 759 | resolved "https://registry.nlark.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.14.5.tgz?cache=0&sync_timestamp=1623280468339&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-unicode-escapes%2Fdownload%2F%40babel%2Fplugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b" 760 | integrity sha1-nUvSpoHjxdes9PV/qeURddkdDGs= 761 | dependencies: 762 | "@babel/helper-plugin-utils" "^7.14.5" 763 | 764 | "@babel/plugin-transform-unicode-regex@^7.14.5": 765 | version "7.14.5" 766 | resolved "https://registry.nlark.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" 767 | integrity sha1-TNCbbIQl3YElXHzrP7GDbnQUOC4= 768 | dependencies: 769 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 770 | "@babel/helper-plugin-utils" "^7.14.5" 771 | 772 | "@babel/preset-env@^7.15.6": 773 | version "7.15.6" 774 | resolved "https://registry.nlark.com/@babel/preset-env/download/@babel/preset-env-7.15.6.tgz?cache=0&sync_timestamp=1631216658989&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fpreset-env%2Fdownload%2F%40babel%2Fpreset-env-7.15.6.tgz#0f3898db9d63d320f21b17380d8462779de57659" 775 | integrity sha1-DziY251j0yDyGxc4DYRid53ldlk= 776 | dependencies: 777 | "@babel/compat-data" "^7.15.0" 778 | "@babel/helper-compilation-targets" "^7.15.4" 779 | "@babel/helper-plugin-utils" "^7.14.5" 780 | "@babel/helper-validator-option" "^7.14.5" 781 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.15.4" 782 | "@babel/plugin-proposal-async-generator-functions" "^7.15.4" 783 | "@babel/plugin-proposal-class-properties" "^7.14.5" 784 | "@babel/plugin-proposal-class-static-block" "^7.15.4" 785 | "@babel/plugin-proposal-dynamic-import" "^7.14.5" 786 | "@babel/plugin-proposal-export-namespace-from" "^7.14.5" 787 | "@babel/plugin-proposal-json-strings" "^7.14.5" 788 | "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" 789 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" 790 | "@babel/plugin-proposal-numeric-separator" "^7.14.5" 791 | "@babel/plugin-proposal-object-rest-spread" "^7.15.6" 792 | "@babel/plugin-proposal-optional-catch-binding" "^7.14.5" 793 | "@babel/plugin-proposal-optional-chaining" "^7.14.5" 794 | "@babel/plugin-proposal-private-methods" "^7.14.5" 795 | "@babel/plugin-proposal-private-property-in-object" "^7.15.4" 796 | "@babel/plugin-proposal-unicode-property-regex" "^7.14.5" 797 | "@babel/plugin-syntax-async-generators" "^7.8.4" 798 | "@babel/plugin-syntax-class-properties" "^7.12.13" 799 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 800 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 801 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 802 | "@babel/plugin-syntax-json-strings" "^7.8.3" 803 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 804 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 805 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 806 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 807 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 808 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 809 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 810 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 811 | "@babel/plugin-transform-arrow-functions" "^7.14.5" 812 | "@babel/plugin-transform-async-to-generator" "^7.14.5" 813 | "@babel/plugin-transform-block-scoped-functions" "^7.14.5" 814 | "@babel/plugin-transform-block-scoping" "^7.15.3" 815 | "@babel/plugin-transform-classes" "^7.15.4" 816 | "@babel/plugin-transform-computed-properties" "^7.14.5" 817 | "@babel/plugin-transform-destructuring" "^7.14.7" 818 | "@babel/plugin-transform-dotall-regex" "^7.14.5" 819 | "@babel/plugin-transform-duplicate-keys" "^7.14.5" 820 | "@babel/plugin-transform-exponentiation-operator" "^7.14.5" 821 | "@babel/plugin-transform-for-of" "^7.15.4" 822 | "@babel/plugin-transform-function-name" "^7.14.5" 823 | "@babel/plugin-transform-literals" "^7.14.5" 824 | "@babel/plugin-transform-member-expression-literals" "^7.14.5" 825 | "@babel/plugin-transform-modules-amd" "^7.14.5" 826 | "@babel/plugin-transform-modules-commonjs" "^7.15.4" 827 | "@babel/plugin-transform-modules-systemjs" "^7.15.4" 828 | "@babel/plugin-transform-modules-umd" "^7.14.5" 829 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9" 830 | "@babel/plugin-transform-new-target" "^7.14.5" 831 | "@babel/plugin-transform-object-super" "^7.14.5" 832 | "@babel/plugin-transform-parameters" "^7.15.4" 833 | "@babel/plugin-transform-property-literals" "^7.14.5" 834 | "@babel/plugin-transform-regenerator" "^7.14.5" 835 | "@babel/plugin-transform-reserved-words" "^7.14.5" 836 | "@babel/plugin-transform-shorthand-properties" "^7.14.5" 837 | "@babel/plugin-transform-spread" "^7.14.6" 838 | "@babel/plugin-transform-sticky-regex" "^7.14.5" 839 | "@babel/plugin-transform-template-literals" "^7.14.5" 840 | "@babel/plugin-transform-typeof-symbol" "^7.14.5" 841 | "@babel/plugin-transform-unicode-escapes" "^7.14.5" 842 | "@babel/plugin-transform-unicode-regex" "^7.14.5" 843 | "@babel/preset-modules" "^0.1.4" 844 | "@babel/types" "^7.15.6" 845 | babel-plugin-polyfill-corejs2 "^0.2.2" 846 | babel-plugin-polyfill-corejs3 "^0.2.2" 847 | babel-plugin-polyfill-regenerator "^0.2.2" 848 | core-js-compat "^3.16.0" 849 | semver "^6.3.0" 850 | 851 | "@babel/preset-modules@^0.1.4": 852 | version "0.1.4" 853 | resolved "https://registry.npm.taobao.org/@babel/preset-modules/download/@babel/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 854 | integrity sha1-Ni8raMZihClw/bXiVP/I/BwuQV4= 855 | dependencies: 856 | "@babel/helper-plugin-utils" "^7.0.0" 857 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 858 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 859 | "@babel/types" "^7.4.4" 860 | esutils "^2.0.2" 861 | 862 | "@babel/preset-typescript@^7.15.0": 863 | version "7.15.0" 864 | resolved "https://registry.nlark.com/@babel/preset-typescript/download/@babel/preset-typescript-7.15.0.tgz#e8fca638a1a0f64f14e1119f7fe4500277840945" 865 | integrity sha1-6PymOKGg9k8U4RGff+RQAneECUU= 866 | dependencies: 867 | "@babel/helper-plugin-utils" "^7.14.5" 868 | "@babel/helper-validator-option" "^7.14.5" 869 | "@babel/plugin-transform-typescript" "^7.15.0" 870 | 871 | "@babel/runtime@^7.8.4": 872 | version "7.15.4" 873 | resolved "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.15.4.tgz?cache=0&sync_timestamp=1630618785994&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" 874 | integrity sha1-/RfRa/34eObdAtGXU6OfqKjZyEo= 875 | dependencies: 876 | regenerator-runtime "^0.13.4" 877 | 878 | "@babel/template@^7.15.4", "@babel/template@^7.3.3": 879 | version "7.15.4" 880 | resolved "https://registry.nlark.com/@babel/template/download/@babel/template-7.15.4.tgz?cache=0&sync_timestamp=1630618922172&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" 881 | integrity sha1-UYmNNdzz+qZwxO5q/P1RfuE58ZQ= 882 | dependencies: 883 | "@babel/code-frame" "^7.14.5" 884 | "@babel/parser" "^7.15.4" 885 | "@babel/types" "^7.15.4" 886 | 887 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2": 888 | version "7.15.4" 889 | resolved "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.15.4.tgz?cache=0&sync_timestamp=1630618923983&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" 890 | integrity sha1-/4UQNnoUS/v/VS2eGOKPPiiJwi0= 891 | dependencies: 892 | "@babel/code-frame" "^7.14.5" 893 | "@babel/generator" "^7.15.4" 894 | "@babel/helper-function-name" "^7.15.4" 895 | "@babel/helper-hoist-variables" "^7.15.4" 896 | "@babel/helper-split-export-declaration" "^7.15.4" 897 | "@babel/parser" "^7.15.4" 898 | "@babel/types" "^7.15.4" 899 | debug "^4.1.0" 900 | globals "^11.1.0" 901 | 902 | "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": 903 | version "7.15.6" 904 | resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz?cache=0&sync_timestamp=1631216657849&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 905 | integrity sha1-mavcSCGLKIHAWN0KerBbmcm+dY8= 906 | dependencies: 907 | "@babel/helper-validator-identifier" "^7.14.9" 908 | to-fast-properties "^2.0.0" 909 | 910 | "@bcoe/v8-coverage@^0.2.3": 911 | version "0.2.3" 912 | resolved "https://registry.npm.taobao.org/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 913 | integrity sha1-daLotRy3WKdVPWgEpZMteqznXDk= 914 | 915 | "@istanbuljs/load-nyc-config@^1.0.0": 916 | version "1.1.0" 917 | resolved "https://registry.npm.taobao.org/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 918 | integrity sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0= 919 | dependencies: 920 | camelcase "^5.3.1" 921 | find-up "^4.1.0" 922 | get-package-type "^0.1.0" 923 | js-yaml "^3.13.1" 924 | resolve-from "^5.0.0" 925 | 926 | "@istanbuljs/schema@^0.1.2": 927 | version "0.1.3" 928 | resolved "https://registry.npm.taobao.org/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 929 | integrity sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg= 930 | 931 | "@jest/console@^27.2.0": 932 | version "27.2.0" 933 | resolved "https://registry.nlark.com/@jest/console/download/@jest/console-27.2.0.tgz#57f702837ec52899be58c3794dce5941c77a8b63" 934 | integrity sha1-V/cCg37FKJm+WMN5Tc5ZQcd6i2M= 935 | dependencies: 936 | "@jest/types" "^27.1.1" 937 | "@types/node" "*" 938 | chalk "^4.0.0" 939 | jest-message-util "^27.2.0" 940 | jest-util "^27.2.0" 941 | slash "^3.0.0" 942 | 943 | "@jest/core@^27.2.0": 944 | version "27.2.0" 945 | resolved "https://registry.nlark.com/@jest/core/download/@jest/core-27.2.0.tgz#61fc27b244e9709170ed9ffe41b006add569f1b3" 946 | integrity sha1-YfwnskTpcJFw7Z/+QbAGrdVp8bM= 947 | dependencies: 948 | "@jest/console" "^27.2.0" 949 | "@jest/reporters" "^27.2.0" 950 | "@jest/test-result" "^27.2.0" 951 | "@jest/transform" "^27.2.0" 952 | "@jest/types" "^27.1.1" 953 | "@types/node" "*" 954 | ansi-escapes "^4.2.1" 955 | chalk "^4.0.0" 956 | emittery "^0.8.1" 957 | exit "^0.1.2" 958 | graceful-fs "^4.2.4" 959 | jest-changed-files "^27.1.1" 960 | jest-config "^27.2.0" 961 | jest-haste-map "^27.2.0" 962 | jest-message-util "^27.2.0" 963 | jest-regex-util "^27.0.6" 964 | jest-resolve "^27.2.0" 965 | jest-resolve-dependencies "^27.2.0" 966 | jest-runner "^27.2.0" 967 | jest-runtime "^27.2.0" 968 | jest-snapshot "^27.2.0" 969 | jest-util "^27.2.0" 970 | jest-validate "^27.2.0" 971 | jest-watcher "^27.2.0" 972 | micromatch "^4.0.4" 973 | p-each-series "^2.1.0" 974 | rimraf "^3.0.0" 975 | slash "^3.0.0" 976 | strip-ansi "^6.0.0" 977 | 978 | "@jest/environment@^27.2.0": 979 | version "27.2.0" 980 | resolved "https://registry.nlark.com/@jest/environment/download/@jest/environment-27.2.0.tgz#48d1dbfa65f8e4a5a5c6cbeb9c59d1a5c2776f6b" 981 | integrity sha1-SNHb+mX45KWlxsvrnFnRpcJ3b2s= 982 | dependencies: 983 | "@jest/fake-timers" "^27.2.0" 984 | "@jest/types" "^27.1.1" 985 | "@types/node" "*" 986 | jest-mock "^27.1.1" 987 | 988 | "@jest/fake-timers@^27.2.0": 989 | version "27.2.0" 990 | resolved "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-27.2.0.tgz#560841bc21ae7fbeff0cbff8de8f5cf43ad3561d" 991 | integrity sha1-VghBvCGuf77/DL/43o9c9DrTVh0= 992 | dependencies: 993 | "@jest/types" "^27.1.1" 994 | "@sinonjs/fake-timers" "^7.0.2" 995 | "@types/node" "*" 996 | jest-message-util "^27.2.0" 997 | jest-mock "^27.1.1" 998 | jest-util "^27.2.0" 999 | 1000 | "@jest/globals@^27.2.0": 1001 | version "27.2.0" 1002 | resolved "https://registry.nlark.com/@jest/globals/download/@jest/globals-27.2.0.tgz#4d7085f51df5ac70c8240eb3501289676503933d" 1003 | integrity sha1-TXCF9R31rHDIJA6zUBKJZ2UDkz0= 1004 | dependencies: 1005 | "@jest/environment" "^27.2.0" 1006 | "@jest/types" "^27.1.1" 1007 | expect "^27.2.0" 1008 | 1009 | "@jest/reporters@^27.2.0": 1010 | version "27.2.0" 1011 | resolved "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-27.2.0.tgz?cache=0&sync_timestamp=1631520538667&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Freporters%2Fdownload%2F%40jest%2Freporters-27.2.0.tgz#629886d9a42218e504a424889a293abb27919e25" 1012 | integrity sha1-YpiG2aQiGOUEpCSImik6uyeRniU= 1013 | dependencies: 1014 | "@bcoe/v8-coverage" "^0.2.3" 1015 | "@jest/console" "^27.2.0" 1016 | "@jest/test-result" "^27.2.0" 1017 | "@jest/transform" "^27.2.0" 1018 | "@jest/types" "^27.1.1" 1019 | chalk "^4.0.0" 1020 | collect-v8-coverage "^1.0.0" 1021 | exit "^0.1.2" 1022 | glob "^7.1.2" 1023 | graceful-fs "^4.2.4" 1024 | istanbul-lib-coverage "^3.0.0" 1025 | istanbul-lib-instrument "^4.0.3" 1026 | istanbul-lib-report "^3.0.0" 1027 | istanbul-lib-source-maps "^4.0.0" 1028 | istanbul-reports "^3.0.2" 1029 | jest-haste-map "^27.2.0" 1030 | jest-resolve "^27.2.0" 1031 | jest-util "^27.2.0" 1032 | jest-worker "^27.2.0" 1033 | slash "^3.0.0" 1034 | source-map "^0.6.0" 1035 | string-length "^4.0.1" 1036 | terminal-link "^2.0.0" 1037 | v8-to-istanbul "^8.0.0" 1038 | 1039 | "@jest/source-map@^27.0.6": 1040 | version "27.0.6" 1041 | resolved "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-27.0.6.tgz?cache=0&sync_timestamp=1624900561091&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" 1042 | integrity sha1-vp6bk1ZdSbBUi4biMgkkkftgVR8= 1043 | dependencies: 1044 | callsites "^3.0.0" 1045 | graceful-fs "^4.2.4" 1046 | source-map "^0.6.0" 1047 | 1048 | "@jest/test-result@^27.2.0": 1049 | version "27.2.0" 1050 | resolved "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-27.2.0.tgz#377b46a41a6415dd4839fd0bed67b89fecea6b20" 1051 | integrity sha1-N3tGpBpkFd1IOf0L7We4n+zqayA= 1052 | dependencies: 1053 | "@jest/console" "^27.2.0" 1054 | "@jest/types" "^27.1.1" 1055 | "@types/istanbul-lib-coverage" "^2.0.0" 1056 | collect-v8-coverage "^1.0.0" 1057 | 1058 | "@jest/test-sequencer@^27.2.0": 1059 | version "27.2.0" 1060 | resolved "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-27.2.0.tgz?cache=0&sync_timestamp=1631520537319&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-27.2.0.tgz#b02b507687825af2fdc84e90c539d36fd8cf7bc9" 1061 | integrity sha1-sCtQdoeCWvL9yE6QxTnTb9jPe8k= 1062 | dependencies: 1063 | "@jest/test-result" "^27.2.0" 1064 | graceful-fs "^4.2.4" 1065 | jest-haste-map "^27.2.0" 1066 | jest-runtime "^27.2.0" 1067 | 1068 | "@jest/transform@^27.2.0": 1069 | version "27.2.0" 1070 | resolved "https://registry.nlark.com/@jest/transform/download/@jest/transform-27.2.0.tgz#e7e6e49d2591792db2385c33cdbb4379d407068d" 1071 | integrity sha1-5+bknSWReS2yOFwzzbtDedQHBo0= 1072 | dependencies: 1073 | "@babel/core" "^7.1.0" 1074 | "@jest/types" "^27.1.1" 1075 | babel-plugin-istanbul "^6.0.0" 1076 | chalk "^4.0.0" 1077 | convert-source-map "^1.4.0" 1078 | fast-json-stable-stringify "^2.0.0" 1079 | graceful-fs "^4.2.4" 1080 | jest-haste-map "^27.2.0" 1081 | jest-regex-util "^27.0.6" 1082 | jest-util "^27.2.0" 1083 | micromatch "^4.0.4" 1084 | pirates "^4.0.1" 1085 | slash "^3.0.0" 1086 | source-map "^0.6.1" 1087 | write-file-atomic "^3.0.0" 1088 | 1089 | "@jest/types@^27.1.1": 1090 | version "27.1.1" 1091 | resolved "https://registry.nlark.com/@jest/types/download/@jest/types-27.1.1.tgz#77a3fc014f906c65752d12123a0134359707c0ad" 1092 | integrity sha1-d6P8AU+QbGV1LRISOgE0NZcHwK0= 1093 | dependencies: 1094 | "@types/istanbul-lib-coverage" "^2.0.0" 1095 | "@types/istanbul-reports" "^3.0.0" 1096 | "@types/node" "*" 1097 | "@types/yargs" "^16.0.0" 1098 | chalk "^4.0.0" 1099 | 1100 | "@sinonjs/commons@^1.7.0": 1101 | version "1.8.3" 1102 | resolved "https://registry.npm.taobao.org/@sinonjs/commons/download/@sinonjs/commons-1.8.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40sinonjs%2Fcommons%2Fdownload%2F%40sinonjs%2Fcommons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 1103 | integrity sha1-OALd0hpQqUm2ch3dcto25n5/Gy0= 1104 | dependencies: 1105 | type-detect "4.0.8" 1106 | 1107 | "@sinonjs/fake-timers@^7.0.2": 1108 | version "7.1.2" 1109 | resolved "https://registry.nlark.com/@sinonjs/fake-timers/download/@sinonjs/fake-timers-7.1.2.tgz?cache=0&sync_timestamp=1622212451029&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40sinonjs%2Ffake-timers%2Fdownload%2F%40sinonjs%2Ffake-timers-7.1.2.tgz#2524eae70c4910edccf99b2f4e6efc5894aff7b5" 1110 | integrity sha1-JSTq5wxJEO3M+ZsvTm78WJSv97U= 1111 | dependencies: 1112 | "@sinonjs/commons" "^1.7.0" 1113 | 1114 | "@tootallnate/once@1": 1115 | version "1.1.2" 1116 | resolved "https://registry.npm.taobao.org/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 1117 | integrity sha1-zLkURTYBeaBOf+av94wA/8Hur4I= 1118 | 1119 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 1120 | version "7.1.16" 1121 | resolved "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702" 1122 | integrity sha1-vBLHS31l6C0ph2tdC69cYlrFhwI= 1123 | dependencies: 1124 | "@babel/parser" "^7.1.0" 1125 | "@babel/types" "^7.0.0" 1126 | "@types/babel__generator" "*" 1127 | "@types/babel__template" "*" 1128 | "@types/babel__traverse" "*" 1129 | 1130 | "@types/babel__generator@*": 1131 | version "7.6.3" 1132 | resolved "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.3.tgz?cache=0&sync_timestamp=1629706648808&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__generator%2Fdownload%2F%40types%2Fbabel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" 1133 | integrity sha1-9Fa0ss55E392iqEw0kI9LwzPq6U= 1134 | dependencies: 1135 | "@babel/types" "^7.0.0" 1136 | 1137 | "@types/babel__template@*": 1138 | version "7.4.1" 1139 | resolved "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.1.tgz?cache=0&sync_timestamp=1629706636298&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 1140 | integrity sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk= 1141 | dependencies: 1142 | "@babel/parser" "^7.1.0" 1143 | "@babel/types" "^7.0.0" 1144 | 1145 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 1146 | version "7.14.2" 1147 | resolved "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.14.2.tgz?cache=0&sync_timestamp=1629706636317&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 1148 | integrity sha1-/81HC7s/i/MEgWePtVAieMqDOkM= 1149 | dependencies: 1150 | "@babel/types" "^7.3.0" 1151 | 1152 | "@types/graceful-fs@^4.1.2": 1153 | version "4.1.5" 1154 | resolved "https://registry.nlark.com/@types/graceful-fs/download/@types/graceful-fs-4.1.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fgraceful-fs%2Fdownload%2F%40types%2Fgraceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 1155 | integrity sha1-If+6DZjaQ1DbZIkfkqnl2zzbThU= 1156 | dependencies: 1157 | "@types/node" "*" 1158 | 1159 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1160 | version "2.0.3" 1161 | resolved "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 1162 | integrity sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I= 1163 | 1164 | "@types/istanbul-lib-report@*": 1165 | version "3.0.0" 1166 | resolved "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-report%2Fdownload%2F%40types%2Fistanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 1167 | integrity sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY= 1168 | dependencies: 1169 | "@types/istanbul-lib-coverage" "*" 1170 | 1171 | "@types/istanbul-reports@^3.0.0": 1172 | version "3.0.1" 1173 | resolved "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-reports%2Fdownload%2F%40types%2Fistanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 1174 | integrity sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8= 1175 | dependencies: 1176 | "@types/istanbul-lib-report" "*" 1177 | 1178 | "@types/jest@^27.0.1": 1179 | version "27.0.1" 1180 | resolved "https://registry.nlark.com/@types/jest/download/@types/jest-27.0.1.tgz#fafcc997da0135865311bb1215ba16dba6bdf4ca" 1181 | integrity sha1-+vzJl9oBNYZTEbsSFboW26a99Mo= 1182 | dependencies: 1183 | jest-diff "^27.0.0" 1184 | pretty-format "^27.0.0" 1185 | 1186 | "@types/node@*": 1187 | version "16.9.2" 1188 | resolved "https://registry.nlark.com/@types/node/download/@types/node-16.9.2.tgz#81f5a039d6ed1941f8cc57506c74e7c2b8fc64b9" 1189 | integrity sha1-gfWgOdbtGUH4zFdQbHTnwrj8ZLk= 1190 | 1191 | "@types/prettier@^2.1.5": 1192 | version "2.3.2" 1193 | resolved "https://registry.nlark.com/@types/prettier/download/@types/prettier-2.3.2.tgz#fc8c2825e4ed2142473b4a81064e6e081463d1b3" 1194 | integrity sha1-/IwoJeTtIUJHO0qBBk5uCBRj0bM= 1195 | 1196 | "@types/stack-utils@^2.0.0": 1197 | version "2.0.1" 1198 | resolved "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-2.0.1.tgz?cache=0&sync_timestamp=1629709282362&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 1199 | integrity sha1-IPGClPeX8iCbX2XI47XI6CYdEnw= 1200 | 1201 | "@types/yargs-parser@*": 1202 | version "20.2.1" 1203 | resolved "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz?cache=0&sync_timestamp=1629709781719&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 1204 | integrity sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk= 1205 | 1206 | "@types/yargs@^16.0.0": 1207 | version "16.0.4" 1208 | resolved "https://registry.nlark.com/@types/yargs/download/@types/yargs-16.0.4.tgz?cache=0&sync_timestamp=1629709908599&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 1209 | integrity sha1-JqrZjdLCo45CEIbqmtQrnlFkKXc= 1210 | dependencies: 1211 | "@types/yargs-parser" "*" 1212 | 1213 | abab@^2.0.3, abab@^2.0.5: 1214 | version "2.0.5" 1215 | resolved "https://registry.npm.taobao.org/abab/download/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 1216 | integrity sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o= 1217 | 1218 | acorn-globals@^6.0.0: 1219 | version "6.0.0" 1220 | resolved "https://registry.npm.taobao.org/acorn-globals/download/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 1221 | integrity sha1-Rs3Tnw+P8IqHZhm1X1rIptx3C0U= 1222 | dependencies: 1223 | acorn "^7.1.1" 1224 | acorn-walk "^7.1.1" 1225 | 1226 | acorn-walk@^7.1.1: 1227 | version "7.2.0" 1228 | resolved "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1229 | integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w= 1230 | 1231 | acorn@^7.1.1: 1232 | version "7.4.1" 1233 | resolved "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1630916517167&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1234 | integrity sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo= 1235 | 1236 | acorn@^8.2.4: 1237 | version "8.5.0" 1238 | resolved "https://registry.nlark.com/acorn/download/acorn-8.5.0.tgz?cache=0&sync_timestamp=1630916517167&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" 1239 | integrity sha1-RRLMuZs2mMdSWR6btEcuOK1DzuI= 1240 | 1241 | agent-base@6: 1242 | version "6.0.2" 1243 | resolved "https://registry.npm.taobao.org/agent-base/download/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 1244 | integrity sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c= 1245 | dependencies: 1246 | debug "4" 1247 | 1248 | ansi-escapes@^4.2.1: 1249 | version "4.3.2" 1250 | resolved "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-4.3.2.tgz?cache=0&sync_timestamp=1618723498592&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-escapes%2Fdownload%2Fansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 1251 | integrity sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4= 1252 | dependencies: 1253 | type-fest "^0.21.3" 1254 | 1255 | ansi-regex@^5.0.0: 1256 | version "5.0.1" 1257 | resolved "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz?cache=0&sync_timestamp=1631634988487&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 1258 | integrity sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ= 1259 | 1260 | ansi-styles@^3.2.1: 1261 | version "3.2.1" 1262 | resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1263 | integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0= 1264 | dependencies: 1265 | color-convert "^1.9.0" 1266 | 1267 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1268 | version "4.3.0" 1269 | resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1270 | integrity sha1-7dgDYornHATIWuegkG7a00tkiTc= 1271 | dependencies: 1272 | color-convert "^2.0.1" 1273 | 1274 | ansi-styles@^5.0.0: 1275 | version "5.2.0" 1276 | resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 1277 | integrity sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s= 1278 | 1279 | anymatch@^3.0.3: 1280 | version "3.1.2" 1281 | resolved "https://registry.npm.taobao.org/anymatch/download/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 1282 | integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY= 1283 | dependencies: 1284 | normalize-path "^3.0.0" 1285 | picomatch "^2.0.4" 1286 | 1287 | argparse@^1.0.7: 1288 | version "1.0.10" 1289 | resolved "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1290 | integrity sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE= 1291 | dependencies: 1292 | sprintf-js "~1.0.2" 1293 | 1294 | asynckit@^0.4.0: 1295 | version "0.4.0" 1296 | resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1297 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1298 | 1299 | babel-jest@^27.2.0: 1300 | version "27.2.0" 1301 | resolved "https://registry.nlark.com/babel-jest/download/babel-jest-27.2.0.tgz?cache=0&sync_timestamp=1631520441347&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-jest%2Fdownload%2Fbabel-jest-27.2.0.tgz#c0f129a81f1197028aeb4447acbc04564c8bfc52" 1302 | integrity sha1-wPEpqB8RlwKK60RHrLwEVkyL/FI= 1303 | dependencies: 1304 | "@jest/transform" "^27.2.0" 1305 | "@jest/types" "^27.1.1" 1306 | "@types/babel__core" "^7.1.14" 1307 | babel-plugin-istanbul "^6.0.0" 1308 | babel-preset-jest "^27.2.0" 1309 | chalk "^4.0.0" 1310 | graceful-fs "^4.2.4" 1311 | slash "^3.0.0" 1312 | 1313 | babel-plugin-dynamic-import-node@^2.3.3: 1314 | version "2.3.3" 1315 | resolved "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz?cache=0&sync_timestamp=1618846790496&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-dynamic-import-node%2Fdownload%2Fbabel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1316 | integrity sha1-hP2hnJduxcbe/vV/lCez3vZuF6M= 1317 | dependencies: 1318 | object.assign "^4.1.0" 1319 | 1320 | babel-plugin-istanbul@^6.0.0: 1321 | version "6.0.0" 1322 | resolved "https://registry.npm.taobao.org/babel-plugin-istanbul/download/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" 1323 | integrity sha1-4VnM3Jr5XgtXDHW0Vzt8NNZx12U= 1324 | dependencies: 1325 | "@babel/helper-plugin-utils" "^7.0.0" 1326 | "@istanbuljs/load-nyc-config" "^1.0.0" 1327 | "@istanbuljs/schema" "^0.1.2" 1328 | istanbul-lib-instrument "^4.0.0" 1329 | test-exclude "^6.0.0" 1330 | 1331 | babel-plugin-jest-hoist@^27.2.0: 1332 | version "27.2.0" 1333 | resolved "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-27.2.0.tgz?cache=0&sync_timestamp=1631520502500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277" 1334 | integrity sha1-efN9Q/flxP3Esso+EMxs9UViYnc= 1335 | dependencies: 1336 | "@babel/template" "^7.3.3" 1337 | "@babel/types" "^7.3.3" 1338 | "@types/babel__core" "^7.0.0" 1339 | "@types/babel__traverse" "^7.0.6" 1340 | 1341 | babel-plugin-polyfill-corejs2@^0.2.2: 1342 | version "0.2.2" 1343 | resolved "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz?cache=0&sync_timestamp=1622023904181&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-polyfill-corejs2%2Fdownload%2Fbabel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327" 1344 | integrity sha1-6RJHheb9lPlLYYp5VOVpMFO/Uyc= 1345 | dependencies: 1346 | "@babel/compat-data" "^7.13.11" 1347 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1348 | semver "^6.1.1" 1349 | 1350 | babel-plugin-polyfill-corejs3@^0.2.2: 1351 | version "0.2.4" 1352 | resolved "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.4.tgz?cache=0&sync_timestamp=1627502231082&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-polyfill-corejs3%2Fdownload%2Fbabel-plugin-polyfill-corejs3-0.2.4.tgz#68cb81316b0e8d9d721a92e0009ec6ecd4cd2ca9" 1353 | integrity sha1-aMuBMWsOjZ1yGpLgAJ7G7NTNLKk= 1354 | dependencies: 1355 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1356 | core-js-compat "^3.14.0" 1357 | 1358 | babel-plugin-polyfill-regenerator@^0.2.2: 1359 | version "0.2.2" 1360 | resolved "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz?cache=0&sync_timestamp=1622023907940&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-polyfill-regenerator%2Fdownload%2Fbabel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077" 1361 | integrity sha1-sxDI1kKsraNIwfo7Pmzg6FG+4Hc= 1362 | dependencies: 1363 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1364 | 1365 | babel-preset-current-node-syntax@^1.0.0: 1366 | version "1.0.1" 1367 | resolved "https://registry.npm.taobao.org/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 1368 | integrity sha1-tDmSObibKgEfndvj5PQB/EDP9zs= 1369 | dependencies: 1370 | "@babel/plugin-syntax-async-generators" "^7.8.4" 1371 | "@babel/plugin-syntax-bigint" "^7.8.3" 1372 | "@babel/plugin-syntax-class-properties" "^7.8.3" 1373 | "@babel/plugin-syntax-import-meta" "^7.8.3" 1374 | "@babel/plugin-syntax-json-strings" "^7.8.3" 1375 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1376 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1377 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1378 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1379 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1380 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1381 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 1382 | 1383 | babel-preset-jest@^27.2.0: 1384 | version "27.2.0" 1385 | resolved "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885" 1386 | integrity sha1-VWu780Bgj+1WcKsOoMjvJEn7qIU= 1387 | dependencies: 1388 | babel-plugin-jest-hoist "^27.2.0" 1389 | babel-preset-current-node-syntax "^1.0.0" 1390 | 1391 | balanced-match@^1.0.0: 1392 | version "1.0.2" 1393 | resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1394 | integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4= 1395 | 1396 | brace-expansion@^1.1.7: 1397 | version "1.1.11" 1398 | resolved "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1399 | integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0= 1400 | dependencies: 1401 | balanced-match "^1.0.0" 1402 | concat-map "0.0.1" 1403 | 1404 | braces@^3.0.1: 1405 | version "3.0.2" 1406 | resolved "https://registry.npm.taobao.org/braces/download/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1407 | integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc= 1408 | dependencies: 1409 | fill-range "^7.0.1" 1410 | 1411 | browser-process-hrtime@^1.0.0: 1412 | version "1.0.0" 1413 | resolved "https://registry.npm.taobao.org/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1414 | integrity sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY= 1415 | 1416 | browserslist@^4.16.6, browserslist@^4.17.0: 1417 | version "4.17.0" 1418 | resolved "https://registry.nlark.com/browserslist/download/browserslist-4.17.0.tgz?cache=0&sync_timestamp=1630836541147&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.17.0.tgz#1fcd81ec75b41d6d4994fb0831b92ac18c01649c" 1419 | integrity sha1-H82B7HW0HW1JlPsIMbkqwYwBZJw= 1420 | dependencies: 1421 | caniuse-lite "^1.0.30001254" 1422 | colorette "^1.3.0" 1423 | electron-to-chromium "^1.3.830" 1424 | escalade "^3.1.1" 1425 | node-releases "^1.1.75" 1426 | 1427 | bser@2.1.1: 1428 | version "2.1.1" 1429 | resolved "https://registry.npm.taobao.org/bser/download/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 1430 | integrity sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU= 1431 | dependencies: 1432 | node-int64 "^0.4.0" 1433 | 1434 | buffer-from@^1.0.0: 1435 | version "1.1.2" 1436 | resolved "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 1437 | integrity sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U= 1438 | 1439 | call-bind@^1.0.0: 1440 | version "1.0.2" 1441 | resolved "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1442 | integrity sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw= 1443 | dependencies: 1444 | function-bind "^1.1.1" 1445 | get-intrinsic "^1.0.2" 1446 | 1447 | callsites@^3.0.0: 1448 | version "3.1.0" 1449 | resolved "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz?cache=0&sync_timestamp=1628464722297&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcallsites%2Fdownload%2Fcallsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1450 | integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M= 1451 | 1452 | camelcase@^5.3.1: 1453 | version "5.3.1" 1454 | resolved "https://registry.nlark.com/camelcase/download/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1455 | integrity sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA= 1456 | 1457 | camelcase@^6.2.0: 1458 | version "6.2.0" 1459 | resolved "https://registry.nlark.com/camelcase/download/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 1460 | integrity sha1-kkr4gcnVJaydh/QNlk5c6pgqGAk= 1461 | 1462 | caniuse-lite@^1.0.30001254: 1463 | version "1.0.30001258" 1464 | resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001258.tgz#b604eed80cc54a578e4bf5a02ae3ed49f869d252" 1465 | integrity sha1-tgTu2AzFSleOS/WgKuPtSfhp0lI= 1466 | 1467 | chalk@^2.0.0: 1468 | version "2.4.2" 1469 | resolved "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1470 | integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= 1471 | dependencies: 1472 | ansi-styles "^3.2.1" 1473 | escape-string-regexp "^1.0.5" 1474 | supports-color "^5.3.0" 1475 | 1476 | chalk@^4.0.0: 1477 | version "4.1.2" 1478 | resolved "https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1479 | integrity sha1-qsTit3NKdAhnrrFr8CqtVWoeegE= 1480 | dependencies: 1481 | ansi-styles "^4.1.0" 1482 | supports-color "^7.1.0" 1483 | 1484 | char-regex@^1.0.2: 1485 | version "1.0.2" 1486 | resolved "https://registry.nlark.com/char-regex/download/char-regex-1.0.2.tgz?cache=0&sync_timestamp=1622809071355&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchar-regex%2Fdownload%2Fchar-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1487 | integrity sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8= 1488 | 1489 | ci-info@^3.1.1: 1490 | version "3.2.0" 1491 | resolved "https://registry.nlark.com/ci-info/download/ci-info-3.2.0.tgz?cache=0&sync_timestamp=1622039942508&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fci-info%2Fdownload%2Fci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" 1492 | integrity sha1-KHbLlIpJh5e1I28AlbwFfQ3KOLY= 1493 | 1494 | cjs-module-lexer@^1.0.0: 1495 | version "1.2.2" 1496 | resolved "https://registry.nlark.com/cjs-module-lexer/download/cjs-module-lexer-1.2.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcjs-module-lexer%2Fdownload%2Fcjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 1497 | integrity sha1-n4S6MkSlEvOlTlJ36O70xImGTkA= 1498 | 1499 | cliui@^7.0.2: 1500 | version "7.0.4" 1501 | resolved "https://registry.nlark.com/cliui/download/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 1502 | integrity sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08= 1503 | dependencies: 1504 | string-width "^4.2.0" 1505 | strip-ansi "^6.0.0" 1506 | wrap-ansi "^7.0.0" 1507 | 1508 | co@^4.6.0: 1509 | version "4.6.0" 1510 | resolved "https://registry.npm.taobao.org/co/download/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1511 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1512 | 1513 | collect-v8-coverage@^1.0.0: 1514 | version "1.0.1" 1515 | resolved "https://registry.npm.taobao.org/collect-v8-coverage/download/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 1516 | integrity sha1-zCyOlPwYu9/+ZNZTRXDIpnOyf1k= 1517 | 1518 | color-convert@^1.9.0: 1519 | version "1.9.3" 1520 | resolved "https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1521 | integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg= 1522 | dependencies: 1523 | color-name "1.1.3" 1524 | 1525 | color-convert@^2.0.1: 1526 | version "2.0.1" 1527 | resolved "https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1528 | integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM= 1529 | dependencies: 1530 | color-name "~1.1.4" 1531 | 1532 | color-name@1.1.3: 1533 | version "1.1.3" 1534 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1535 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1536 | 1537 | color-name@~1.1.4: 1538 | version "1.1.4" 1539 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1540 | integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI= 1541 | 1542 | colorette@^1.3.0: 1543 | version "1.4.0" 1544 | resolved "https://registry.nlark.com/colorette/download/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" 1545 | integrity sha1-UZD7uHJ2JZqGrXAL/yxtb6o/ykA= 1546 | 1547 | combined-stream@^1.0.8: 1548 | version "1.0.8" 1549 | resolved "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1550 | integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8= 1551 | dependencies: 1552 | delayed-stream "~1.0.0" 1553 | 1554 | concat-map@0.0.1: 1555 | version "0.0.1" 1556 | resolved "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1557 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1558 | 1559 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1560 | version "1.8.0" 1561 | resolved "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz?cache=0&sync_timestamp=1624045304679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconvert-source-map%2Fdownload%2Fconvert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 1562 | integrity sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k= 1563 | dependencies: 1564 | safe-buffer "~5.1.1" 1565 | 1566 | core-js-compat@^3.14.0, core-js-compat@^3.16.0: 1567 | version "3.17.3" 1568 | resolved "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.17.3.tgz?cache=0&sync_timestamp=1631177006967&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.17.3.tgz#b39c8e4dec71ecdc735c653ce5233466e561324e" 1569 | integrity sha1-s5yOTexx7NxzXGU85SM0ZuVhMk4= 1570 | dependencies: 1571 | browserslist "^4.17.0" 1572 | semver "7.0.0" 1573 | 1574 | cross-spawn@^7.0.3: 1575 | version "7.0.3" 1576 | resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1577 | integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY= 1578 | dependencies: 1579 | path-key "^3.1.0" 1580 | shebang-command "^2.0.0" 1581 | which "^2.0.1" 1582 | 1583 | cssom@^0.4.4: 1584 | version "0.4.4" 1585 | resolved "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz?cache=0&sync_timestamp=1624218957158&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcssom%2Fdownload%2Fcssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 1586 | integrity sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA= 1587 | 1588 | cssom@~0.3.6: 1589 | version "0.3.8" 1590 | resolved "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz?cache=0&sync_timestamp=1624218957158&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcssom%2Fdownload%2Fcssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1591 | integrity sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o= 1592 | 1593 | cssstyle@^2.3.0: 1594 | version "2.3.0" 1595 | resolved "https://registry.npm.taobao.org/cssstyle/download/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1596 | integrity sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI= 1597 | dependencies: 1598 | cssom "~0.3.6" 1599 | 1600 | data-urls@^2.0.0: 1601 | version "2.0.0" 1602 | resolved "https://registry.nlark.com/data-urls/download/data-urls-2.0.0.tgz?cache=0&sync_timestamp=1626722876103&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdata-urls%2Fdownload%2Fdata-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1603 | integrity sha1-FWSFpyljqXD11YIar2Qr7yvy25s= 1604 | dependencies: 1605 | abab "^2.0.3" 1606 | whatwg-mimetype "^2.3.0" 1607 | whatwg-url "^8.0.0" 1608 | 1609 | debug@4, debug@^4.1.0, debug@^4.1.1: 1610 | version "4.3.2" 1611 | resolved "https://registry.nlark.com/debug/download/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 1612 | integrity sha1-8KScGKyHeeMdSgxgKd+3aHPHQos= 1613 | dependencies: 1614 | ms "2.1.2" 1615 | 1616 | decimal.js@^10.2.1: 1617 | version "10.3.1" 1618 | resolved "https://registry.nlark.com/decimal.js/download/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1619 | integrity sha1-2MOkRKnGd0umDKatcmHDqU/V54M= 1620 | 1621 | dedent@^0.7.0: 1622 | version "0.7.0" 1623 | resolved "https://registry.npm.taobao.org/dedent/download/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1624 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1625 | 1626 | deep-is@~0.1.3: 1627 | version "0.1.4" 1628 | resolved "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeep-is%2Fdownload%2Fdeep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1629 | integrity sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE= 1630 | 1631 | deepmerge@^4.2.2: 1632 | version "4.2.2" 1633 | resolved "https://registry.npm.taobao.org/deepmerge/download/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1634 | integrity sha1-RNLqNnm49NT/ujPwPYZfwee/SVU= 1635 | 1636 | define-properties@^1.1.3: 1637 | version "1.1.3" 1638 | resolved "https://registry.npm.taobao.org/define-properties/download/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1639 | integrity sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE= 1640 | dependencies: 1641 | object-keys "^1.0.12" 1642 | 1643 | delayed-stream@~1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1646 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1647 | 1648 | detect-newline@^3.0.0: 1649 | version "3.1.0" 1650 | resolved "https://registry.npm.taobao.org/detect-newline/download/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1651 | integrity sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE= 1652 | 1653 | diff-sequences@^27.0.6: 1654 | version "27.0.6" 1655 | resolved "https://registry.nlark.com/diff-sequences/download/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" 1656 | integrity sha1-MwXLLlWgM5JAVGlcxmAZ/X+OVyM= 1657 | 1658 | domexception@^2.0.1: 1659 | version "2.0.1" 1660 | resolved "https://registry.npm.taobao.org/domexception/download/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1661 | integrity sha1-+0Su+6eT4VdLCvau0oAdBXUp8wQ= 1662 | dependencies: 1663 | webidl-conversions "^5.0.0" 1664 | 1665 | electron-to-chromium@^1.3.830: 1666 | version "1.3.843" 1667 | resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.843.tgz?cache=0&sync_timestamp=1631916194181&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.843.tgz#671489bd2f59fd49b76adddc1aa02c88cd38a5c0" 1668 | integrity sha1-ZxSJvS9Z/Um3at3cGqAsiM04pcA= 1669 | 1670 | emittery@^0.8.1: 1671 | version "0.8.1" 1672 | resolved "https://registry.nlark.com/emittery/download/emittery-0.8.1.tgz?cache=0&sync_timestamp=1631379353966&other_urls=https%3A%2F%2Fregistry.nlark.com%2Femittery%2Fdownload%2Femittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1673 | integrity sha1-uyPMhtA7MKp1p/c0gZ3uLhunCGA= 1674 | 1675 | emoji-regex@^8.0.0: 1676 | version "8.0.0" 1677 | resolved "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1678 | integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc= 1679 | 1680 | escalade@^3.1.1: 1681 | version "3.1.1" 1682 | resolved "https://registry.npm.taobao.org/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1683 | integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA= 1684 | 1685 | escape-string-regexp@^1.0.5: 1686 | version "1.0.5" 1687 | resolved "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz?cache=0&sync_timestamp=1618677243201&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1688 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1689 | 1690 | escape-string-regexp@^2.0.0: 1691 | version "2.0.0" 1692 | resolved "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz?cache=0&sync_timestamp=1618677243201&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1693 | integrity sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q= 1694 | 1695 | escodegen@^2.0.0: 1696 | version "2.0.0" 1697 | resolved "https://registry.npm.taobao.org/escodegen/download/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1698 | integrity sha1-XjKxKDPoqo+jXhvwvvqJOASEx90= 1699 | dependencies: 1700 | esprima "^4.0.1" 1701 | estraverse "^5.2.0" 1702 | esutils "^2.0.2" 1703 | optionator "^0.8.1" 1704 | optionalDependencies: 1705 | source-map "~0.6.1" 1706 | 1707 | esprima@^4.0.0, esprima@^4.0.1: 1708 | version "4.0.1" 1709 | resolved "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1710 | integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE= 1711 | 1712 | estraverse@^5.2.0: 1713 | version "5.2.0" 1714 | resolved "https://registry.nlark.com/estraverse/download/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1715 | integrity sha1-MH30JUfmzHMk088DwVXVzbjFOIA= 1716 | 1717 | esutils@^2.0.2: 1718 | version "2.0.3" 1719 | resolved "https://registry.nlark.com/esutils/download/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1720 | integrity sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q= 1721 | 1722 | execa@^5.0.0: 1723 | version "5.1.1" 1724 | resolved "https://registry.nlark.com/execa/download/execa-5.1.1.tgz?cache=0&sync_timestamp=1622825396605&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexeca%2Fdownload%2Fexeca-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1725 | integrity sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0= 1726 | dependencies: 1727 | cross-spawn "^7.0.3" 1728 | get-stream "^6.0.0" 1729 | human-signals "^2.1.0" 1730 | is-stream "^2.0.0" 1731 | merge-stream "^2.0.0" 1732 | npm-run-path "^4.0.1" 1733 | onetime "^5.1.2" 1734 | signal-exit "^3.0.3" 1735 | strip-final-newline "^2.0.0" 1736 | 1737 | exit@^0.1.2: 1738 | version "0.1.2" 1739 | resolved "https://registry.npm.taobao.org/exit/download/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1740 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1741 | 1742 | expect@^27.2.0: 1743 | version "27.2.0" 1744 | resolved "https://registry.nlark.com/expect/download/expect-27.2.0.tgz#40eb89a492afb726a3929ccf3611ee0799ab976f" 1745 | integrity sha1-QOuJpJKvtyajkpzPNhHuB5mrl28= 1746 | dependencies: 1747 | "@jest/types" "^27.1.1" 1748 | ansi-styles "^5.0.0" 1749 | jest-get-type "^27.0.6" 1750 | jest-matcher-utils "^27.2.0" 1751 | jest-message-util "^27.2.0" 1752 | jest-regex-util "^27.0.6" 1753 | 1754 | fast-json-stable-stringify@^2.0.0: 1755 | version "2.1.0" 1756 | resolved "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1757 | integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM= 1758 | 1759 | fast-levenshtein@~2.0.6: 1760 | version "2.0.6" 1761 | resolved "https://registry.nlark.com/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1762 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1763 | 1764 | fb-watchman@^2.0.0: 1765 | version "2.0.1" 1766 | resolved "https://registry.npm.taobao.org/fb-watchman/download/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1767 | integrity sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU= 1768 | dependencies: 1769 | bser "2.1.1" 1770 | 1771 | fill-range@^7.0.1: 1772 | version "7.0.1" 1773 | resolved "https://registry.npm.taobao.org/fill-range/download/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1774 | integrity sha1-GRmmp8df44ssfHflGYU12prN2kA= 1775 | dependencies: 1776 | to-regex-range "^5.0.1" 1777 | 1778 | find-up@^4.0.0, find-up@^4.1.0: 1779 | version "4.1.0" 1780 | resolved "https://registry.nlark.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1629976988340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1781 | integrity sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk= 1782 | dependencies: 1783 | locate-path "^5.0.0" 1784 | path-exists "^4.0.0" 1785 | 1786 | form-data@^3.0.0: 1787 | version "3.0.1" 1788 | resolved "https://registry.npm.taobao.org/form-data/download/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1789 | integrity sha1-69U3kbeDVqma+aMA1CgsTV65dV8= 1790 | dependencies: 1791 | asynckit "^0.4.0" 1792 | combined-stream "^1.0.8" 1793 | mime-types "^2.1.12" 1794 | 1795 | fs.realpath@^1.0.0: 1796 | version "1.0.0" 1797 | resolved "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1798 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1799 | 1800 | fsevents@^2.3.2: 1801 | version "2.3.2" 1802 | resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1803 | integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro= 1804 | 1805 | function-bind@^1.1.1: 1806 | version "1.1.1" 1807 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1808 | integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= 1809 | 1810 | gensync@^1.0.0-beta.2: 1811 | version "1.0.0-beta.2" 1812 | resolved "https://registry.npm.taobao.org/gensync/download/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1813 | integrity sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA= 1814 | 1815 | get-caller-file@^2.0.5: 1816 | version "2.0.5" 1817 | resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1818 | integrity sha1-T5RBKoLbMvNuOwuXQfipf+sDH34= 1819 | 1820 | get-intrinsic@^1.0.2: 1821 | version "1.1.1" 1822 | resolved "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1823 | integrity sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y= 1824 | dependencies: 1825 | function-bind "^1.1.1" 1826 | has "^1.0.3" 1827 | has-symbols "^1.0.1" 1828 | 1829 | get-package-type@^0.1.0: 1830 | version "0.1.0" 1831 | resolved "https://registry.nlark.com/get-package-type/download/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1832 | integrity sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro= 1833 | 1834 | get-stream@^6.0.0: 1835 | version "6.0.1" 1836 | resolved "https://registry.nlark.com/get-stream/download/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1837 | integrity sha1-omLY7vZ6ztV8KFKtYWdSakPL97c= 1838 | 1839 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1840 | version "7.1.7" 1841 | resolved "https://registry.nlark.com/glob/download/glob-7.1.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob%2Fdownload%2Fglob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1842 | integrity sha1-Oxk+kjPwHULQs/eClLvutBj5SpA= 1843 | dependencies: 1844 | fs.realpath "^1.0.0" 1845 | inflight "^1.0.4" 1846 | inherits "2" 1847 | minimatch "^3.0.4" 1848 | once "^1.3.0" 1849 | path-is-absolute "^1.0.0" 1850 | 1851 | globals@^11.1.0: 1852 | version "11.12.0" 1853 | resolved "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1628810148451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1854 | integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4= 1855 | 1856 | graceful-fs@^4.2.4: 1857 | version "4.2.8" 1858 | resolved "https://registry.nlark.com/graceful-fs/download/graceful-fs-4.2.8.tgz?cache=0&sync_timestamp=1628194078324&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1859 | integrity sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo= 1860 | 1861 | has-flag@^3.0.0: 1862 | version "3.0.0" 1863 | resolved "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1864 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1865 | 1866 | has-flag@^4.0.0: 1867 | version "4.0.0" 1868 | resolved "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1869 | integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s= 1870 | 1871 | has-symbols@^1.0.1: 1872 | version "1.0.2" 1873 | resolved "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1874 | integrity sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM= 1875 | 1876 | has@^1.0.3: 1877 | version "1.0.3" 1878 | resolved "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1879 | integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= 1880 | dependencies: 1881 | function-bind "^1.1.1" 1882 | 1883 | html-encoding-sniffer@^2.0.1: 1884 | version "2.0.1" 1885 | resolved "https://registry.npm.taobao.org/html-encoding-sniffer/download/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1886 | integrity sha1-QqbcT9M/ACgRduiyN1nKTk+hhfM= 1887 | dependencies: 1888 | whatwg-encoding "^1.0.5" 1889 | 1890 | html-escaper@^2.0.0: 1891 | version "2.0.2" 1892 | resolved "https://registry.npm.taobao.org/html-escaper/download/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1893 | integrity sha1-39YAJ9o2o238viNiYsAKWCJoFFM= 1894 | 1895 | http-proxy-agent@^4.0.1: 1896 | version "4.0.1" 1897 | resolved "https://registry.npm.taobao.org/http-proxy-agent/download/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1898 | integrity sha1-ioyO9/WTLM+VPClsqCkblap0qjo= 1899 | dependencies: 1900 | "@tootallnate/once" "1" 1901 | agent-base "6" 1902 | debug "4" 1903 | 1904 | https-proxy-agent@^5.0.0: 1905 | version "5.0.0" 1906 | resolved "https://registry.nlark.com/https-proxy-agent/download/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1907 | integrity sha1-4qkFQqu2inYuCghQ9sntrf2FBrI= 1908 | dependencies: 1909 | agent-base "6" 1910 | debug "4" 1911 | 1912 | human-signals@^2.1.0: 1913 | version "2.1.0" 1914 | resolved "https://registry.nlark.com/human-signals/download/human-signals-2.1.0.tgz?cache=0&sync_timestamp=1624364695595&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhuman-signals%2Fdownload%2Fhuman-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1915 | integrity sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA= 1916 | 1917 | iconv-lite@0.4.24: 1918 | version "0.4.24" 1919 | resolved "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1920 | integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs= 1921 | dependencies: 1922 | safer-buffer ">= 2.1.2 < 3" 1923 | 1924 | import-local@^3.0.2: 1925 | version "3.0.2" 1926 | resolved "https://registry.npm.taobao.org/import-local/download/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 1927 | integrity sha1-qM/QQx0d5KIZlwPQA+PmI2T6bbY= 1928 | dependencies: 1929 | pkg-dir "^4.2.0" 1930 | resolve-cwd "^3.0.0" 1931 | 1932 | imurmurhash@^0.1.4: 1933 | version "0.1.4" 1934 | resolved "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1935 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1936 | 1937 | inflight@^1.0.4: 1938 | version "1.0.6" 1939 | resolved "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1940 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1941 | dependencies: 1942 | once "^1.3.0" 1943 | wrappy "1" 1944 | 1945 | inherits@2: 1946 | version "2.0.4" 1947 | resolved "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1948 | integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= 1949 | 1950 | is-ci@^3.0.0: 1951 | version "3.0.0" 1952 | resolved "https://registry.npm.taobao.org/is-ci/download/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" 1953 | integrity sha1-x+e+PJ2O730PoUQ5C9HkuI3EyZQ= 1954 | dependencies: 1955 | ci-info "^3.1.1" 1956 | 1957 | is-core-module@^2.2.0: 1958 | version "2.6.0" 1959 | resolved "https://registry.nlark.com/is-core-module/download/is-core-module-2.6.0.tgz?cache=0&sync_timestamp=1629224656971&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19" 1960 | integrity sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk= 1961 | dependencies: 1962 | has "^1.0.3" 1963 | 1964 | is-fullwidth-code-point@^3.0.0: 1965 | version "3.0.0" 1966 | resolved "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1967 | integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0= 1968 | 1969 | is-generator-fn@^2.0.0: 1970 | version "2.1.0" 1971 | resolved "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz?cache=0&sync_timestamp=1628686038445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-generator-fn%2Fdownload%2Fis-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1972 | integrity sha1-fRQK3DiarzARqPKipM+m+q3/sRg= 1973 | 1974 | is-number@^7.0.0: 1975 | version "7.0.0" 1976 | resolved "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1977 | integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss= 1978 | 1979 | is-potential-custom-element-name@^1.0.1: 1980 | version "1.0.1" 1981 | resolved "https://registry.npm.taobao.org/is-potential-custom-element-name/download/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 1982 | integrity sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U= 1983 | 1984 | is-stream@^2.0.0: 1985 | version "2.0.1" 1986 | resolved "https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1987 | integrity sha1-+sHj1TuXrVqdCunO8jifWBClwHc= 1988 | 1989 | is-typedarray@^1.0.0: 1990 | version "1.0.0" 1991 | resolved "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1992 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1993 | 1994 | isexe@^2.0.0: 1995 | version "2.0.0" 1996 | resolved "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1997 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1998 | 1999 | istanbul-lib-coverage@^3.0.0: 2000 | version "3.0.0" 2001 | resolved "https://registry.npm.taobao.org/istanbul-lib-coverage/download/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 2002 | integrity sha1-9ZRKN8cLVQsCp4pcOyBVsoDOyOw= 2003 | 2004 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: 2005 | version "4.0.3" 2006 | resolved "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-4.0.3.tgz?cache=0&sync_timestamp=1631500725465&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fistanbul-lib-instrument%2Fdownload%2Fistanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 2007 | integrity sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0= 2008 | dependencies: 2009 | "@babel/core" "^7.7.5" 2010 | "@istanbuljs/schema" "^0.1.2" 2011 | istanbul-lib-coverage "^3.0.0" 2012 | semver "^6.3.0" 2013 | 2014 | istanbul-lib-report@^3.0.0: 2015 | version "3.0.0" 2016 | resolved "https://registry.npm.taobao.org/istanbul-lib-report/download/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 2017 | integrity sha1-dRj+UupE3jcvRgp2tezan/tz2KY= 2018 | dependencies: 2019 | istanbul-lib-coverage "^3.0.0" 2020 | make-dir "^3.0.0" 2021 | supports-color "^7.1.0" 2022 | 2023 | istanbul-lib-source-maps@^4.0.0: 2024 | version "4.0.0" 2025 | resolved "https://registry.nlark.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 2026 | integrity sha1-dXQ85tlruG3H7kNSz2Nmoj8LGtk= 2027 | dependencies: 2028 | debug "^4.1.1" 2029 | istanbul-lib-coverage "^3.0.0" 2030 | source-map "^0.6.1" 2031 | 2032 | istanbul-reports@^3.0.2: 2033 | version "3.0.2" 2034 | resolved "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" 2035 | integrity sha1-1ZMhDlAAaDdQywn8BkTktuJ/1Ts= 2036 | dependencies: 2037 | html-escaper "^2.0.0" 2038 | istanbul-lib-report "^3.0.0" 2039 | 2040 | jest-changed-files@^27.1.1: 2041 | version "27.1.1" 2042 | resolved "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-27.1.1.tgz?cache=0&sync_timestamp=1631095953071&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-changed-files%2Fdownload%2Fjest-changed-files-27.1.1.tgz#9b3f67a34cc58e3e811e2e1e21529837653e4200" 2043 | integrity sha1-mz9no0zFjj6BHi4eIVKYN2U+QgA= 2044 | dependencies: 2045 | "@jest/types" "^27.1.1" 2046 | execa "^5.0.0" 2047 | throat "^6.0.1" 2048 | 2049 | jest-circus@^27.2.0: 2050 | version "27.2.0" 2051 | resolved "https://registry.nlark.com/jest-circus/download/jest-circus-27.2.0.tgz#ad0d6d75514050f539d422bae41344224d2328f9" 2052 | integrity sha1-rQ1tdVFAUPU51CK65BNEIk0jKPk= 2053 | dependencies: 2054 | "@jest/environment" "^27.2.0" 2055 | "@jest/test-result" "^27.2.0" 2056 | "@jest/types" "^27.1.1" 2057 | "@types/node" "*" 2058 | chalk "^4.0.0" 2059 | co "^4.6.0" 2060 | dedent "^0.7.0" 2061 | expect "^27.2.0" 2062 | is-generator-fn "^2.0.0" 2063 | jest-each "^27.2.0" 2064 | jest-matcher-utils "^27.2.0" 2065 | jest-message-util "^27.2.0" 2066 | jest-runtime "^27.2.0" 2067 | jest-snapshot "^27.2.0" 2068 | jest-util "^27.2.0" 2069 | pretty-format "^27.2.0" 2070 | slash "^3.0.0" 2071 | stack-utils "^2.0.3" 2072 | throat "^6.0.1" 2073 | 2074 | jest-cli@^27.2.0: 2075 | version "27.2.0" 2076 | resolved "https://registry.nlark.com/jest-cli/download/jest-cli-27.2.0.tgz#6da5ecca5bd757e20449f5ec1f1cad5b0303d16b" 2077 | integrity sha1-baXsylvXV+IESfXsHxytWwMD0Ws= 2078 | dependencies: 2079 | "@jest/core" "^27.2.0" 2080 | "@jest/test-result" "^27.2.0" 2081 | "@jest/types" "^27.1.1" 2082 | chalk "^4.0.0" 2083 | exit "^0.1.2" 2084 | graceful-fs "^4.2.4" 2085 | import-local "^3.0.2" 2086 | jest-config "^27.2.0" 2087 | jest-util "^27.2.0" 2088 | jest-validate "^27.2.0" 2089 | prompts "^2.0.1" 2090 | yargs "^16.0.3" 2091 | 2092 | jest-config@^27.2.0: 2093 | version "27.2.0" 2094 | resolved "https://registry.nlark.com/jest-config/download/jest-config-27.2.0.tgz?cache=0&sync_timestamp=1631520557934&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-27.2.0.tgz#d1c359253927005c53d11ab3e50d3b2f402a673a" 2095 | integrity sha1-0cNZJTknAFxT0Rqz5Q07L0AqZzo= 2096 | dependencies: 2097 | "@babel/core" "^7.1.0" 2098 | "@jest/test-sequencer" "^27.2.0" 2099 | "@jest/types" "^27.1.1" 2100 | babel-jest "^27.2.0" 2101 | chalk "^4.0.0" 2102 | deepmerge "^4.2.2" 2103 | glob "^7.1.1" 2104 | graceful-fs "^4.2.4" 2105 | is-ci "^3.0.0" 2106 | jest-circus "^27.2.0" 2107 | jest-environment-jsdom "^27.2.0" 2108 | jest-environment-node "^27.2.0" 2109 | jest-get-type "^27.0.6" 2110 | jest-jasmine2 "^27.2.0" 2111 | jest-regex-util "^27.0.6" 2112 | jest-resolve "^27.2.0" 2113 | jest-runner "^27.2.0" 2114 | jest-util "^27.2.0" 2115 | jest-validate "^27.2.0" 2116 | micromatch "^4.0.4" 2117 | pretty-format "^27.2.0" 2118 | 2119 | jest-diff@^27.0.0, jest-diff@^27.2.0: 2120 | version "27.2.0" 2121 | resolved "https://registry.nlark.com/jest-diff/download/jest-diff-27.2.0.tgz?cache=0&sync_timestamp=1631520428777&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-27.2.0.tgz#bda761c360f751bab1e7a2fe2fc2b0a35ce8518c" 2122 | integrity sha1-vadhw2D3Ubqx56L+L8Kwo1zoUYw= 2123 | dependencies: 2124 | chalk "^4.0.0" 2125 | diff-sequences "^27.0.6" 2126 | jest-get-type "^27.0.6" 2127 | pretty-format "^27.2.0" 2128 | 2129 | jest-docblock@^27.0.6: 2130 | version "27.0.6" 2131 | resolved "https://registry.nlark.com/jest-docblock/download/jest-docblock-27.0.6.tgz?cache=0&sync_timestamp=1624900203204&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-docblock%2Fdownload%2Fjest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" 2132 | integrity sha1-zHgmas9/5pPKRiy72g6k5jnk5fM= 2133 | dependencies: 2134 | detect-newline "^3.0.0" 2135 | 2136 | jest-each@^27.2.0: 2137 | version "27.2.0" 2138 | resolved "https://registry.nlark.com/jest-each/download/jest-each-27.2.0.tgz#4c531c7223de289429fc7b2473a86e653c86d61f" 2139 | integrity sha1-TFMcciPeKJQp/Hskc6huZTyG1h8= 2140 | dependencies: 2141 | "@jest/types" "^27.1.1" 2142 | chalk "^4.0.0" 2143 | jest-get-type "^27.0.6" 2144 | jest-util "^27.2.0" 2145 | pretty-format "^27.2.0" 2146 | 2147 | jest-environment-jsdom@^27.2.0: 2148 | version "27.2.0" 2149 | resolved "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-27.2.0.tgz#c654dfae50ca2272c2a2e2bb95ff0af298283a3c" 2150 | integrity sha1-xlTfrlDKInLCouK7lf8K8pgoOjw= 2151 | dependencies: 2152 | "@jest/environment" "^27.2.0" 2153 | "@jest/fake-timers" "^27.2.0" 2154 | "@jest/types" "^27.1.1" 2155 | "@types/node" "*" 2156 | jest-mock "^27.1.1" 2157 | jest-util "^27.2.0" 2158 | jsdom "^16.6.0" 2159 | 2160 | jest-environment-node@^27.2.0: 2161 | version "27.2.0" 2162 | resolved "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-27.2.0.tgz?cache=0&sync_timestamp=1631520514165&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-27.2.0.tgz#73ef2151cb62206669becb94cd84f33276252de5" 2163 | integrity sha1-c+8hUctiIGZpvsuUzYTzMnYlLeU= 2164 | dependencies: 2165 | "@jest/environment" "^27.2.0" 2166 | "@jest/fake-timers" "^27.2.0" 2167 | "@jest/types" "^27.1.1" 2168 | "@types/node" "*" 2169 | jest-mock "^27.1.1" 2170 | jest-util "^27.2.0" 2171 | 2172 | jest-get-type@^27.0.6: 2173 | version "27.0.6" 2174 | resolved "https://registry.nlark.com/jest-get-type/download/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" 2175 | integrity sha1-DrXH91WFQnnOm2ip8aQSL2kEfP4= 2176 | 2177 | jest-haste-map@^27.2.0: 2178 | version "27.2.0" 2179 | resolved "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-27.2.0.tgz#703b3a473e3f2e27d75ab07864ffd7bbaad0d75e" 2180 | integrity sha1-cDs6Rz4/LifXWrB4ZP/Xu6rQ114= 2181 | dependencies: 2182 | "@jest/types" "^27.1.1" 2183 | "@types/graceful-fs" "^4.1.2" 2184 | "@types/node" "*" 2185 | anymatch "^3.0.3" 2186 | fb-watchman "^2.0.0" 2187 | graceful-fs "^4.2.4" 2188 | jest-regex-util "^27.0.6" 2189 | jest-serializer "^27.0.6" 2190 | jest-util "^27.2.0" 2191 | jest-worker "^27.2.0" 2192 | micromatch "^4.0.4" 2193 | walker "^1.0.7" 2194 | optionalDependencies: 2195 | fsevents "^2.3.2" 2196 | 2197 | jest-jasmine2@^27.2.0: 2198 | version "27.2.0" 2199 | resolved "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-27.2.0.tgz?cache=0&sync_timestamp=1631520512934&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-27.2.0.tgz#1ece0ee37c348b59ed3dfcfe509fc24e3377b12d" 2200 | integrity sha1-Hs4O43w0i1ntPfz+UJ/CTjN3sS0= 2201 | dependencies: 2202 | "@babel/traverse" "^7.1.0" 2203 | "@jest/environment" "^27.2.0" 2204 | "@jest/source-map" "^27.0.6" 2205 | "@jest/test-result" "^27.2.0" 2206 | "@jest/types" "^27.1.1" 2207 | "@types/node" "*" 2208 | chalk "^4.0.0" 2209 | co "^4.6.0" 2210 | expect "^27.2.0" 2211 | is-generator-fn "^2.0.0" 2212 | jest-each "^27.2.0" 2213 | jest-matcher-utils "^27.2.0" 2214 | jest-message-util "^27.2.0" 2215 | jest-runtime "^27.2.0" 2216 | jest-snapshot "^27.2.0" 2217 | jest-util "^27.2.0" 2218 | pretty-format "^27.2.0" 2219 | throat "^6.0.1" 2220 | 2221 | jest-leak-detector@^27.2.0: 2222 | version "27.2.0" 2223 | resolved "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-27.2.0.tgz?cache=0&sync_timestamp=1631520436832&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-27.2.0.tgz#9a7ca2dad1a21c4e49ad2a8ad7f1214ffdb86a28" 2224 | integrity sha1-mnyi2tGiHE5JrSqK1/EhT/24aig= 2225 | dependencies: 2226 | jest-get-type "^27.0.6" 2227 | pretty-format "^27.2.0" 2228 | 2229 | jest-matcher-utils@^27.2.0: 2230 | version "27.2.0" 2231 | resolved "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-27.2.0.tgz?cache=0&sync_timestamp=1631520439659&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-27.2.0.tgz#b4d224ab88655d5fab64b96b989ac349e2f5da43" 2232 | integrity sha1-tNIkq4hlXV+rZLlrmJrDSeL12kM= 2233 | dependencies: 2234 | chalk "^4.0.0" 2235 | jest-diff "^27.2.0" 2236 | jest-get-type "^27.0.6" 2237 | pretty-format "^27.2.0" 2238 | 2239 | jest-message-util@^27.2.0: 2240 | version "27.2.0" 2241 | resolved "https://registry.nlark.com/jest-message-util/download/jest-message-util-27.2.0.tgz?cache=0&sync_timestamp=1631520510387&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-27.2.0.tgz#2f65c71df55267208686b1d7514e18106c91ceaf" 2242 | integrity sha1-L2XHHfVSZyCGhrHXUU4YEGyRzq8= 2243 | dependencies: 2244 | "@babel/code-frame" "^7.12.13" 2245 | "@jest/types" "^27.1.1" 2246 | "@types/stack-utils" "^2.0.0" 2247 | chalk "^4.0.0" 2248 | graceful-fs "^4.2.4" 2249 | micromatch "^4.0.4" 2250 | pretty-format "^27.2.0" 2251 | slash "^3.0.0" 2252 | stack-utils "^2.0.3" 2253 | 2254 | jest-mock@^27.1.1: 2255 | version "27.1.1" 2256 | resolved "https://registry.nlark.com/jest-mock/download/jest-mock-27.1.1.tgz?cache=0&sync_timestamp=1631096011697&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-27.1.1.tgz#c7a2e81301fdcf3dab114931d23d89ec9d0c3a82" 2257 | integrity sha1-x6LoEwH9zz2rEUkx0j2J7J0MOoI= 2258 | dependencies: 2259 | "@jest/types" "^27.1.1" 2260 | "@types/node" "*" 2261 | 2262 | jest-pnp-resolver@^1.2.2: 2263 | version "1.2.2" 2264 | resolved "https://registry.npm.taobao.org/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 2265 | integrity sha1-twSsCuAoqJEIpNBAs/kZ393I4zw= 2266 | 2267 | jest-regex-util@^27.0.6: 2268 | version "27.0.6" 2269 | resolved "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-27.0.6.tgz?cache=0&sync_timestamp=1624900201901&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" 2270 | integrity sha1-AuESCCk1rpSc5dE7JnXbPYyH2cU= 2271 | 2272 | jest-resolve-dependencies@^27.2.0: 2273 | version "27.2.0" 2274 | resolved "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-27.2.0.tgz?cache=0&sync_timestamp=1631520514595&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve-dependencies%2Fdownload%2Fjest-resolve-dependencies-27.2.0.tgz#b56a1aab95b0fd21e0a69a15fda985c05f902b8a" 2275 | integrity sha1-tWoaq5Ww/SHgppoV/amFwF+QK4o= 2276 | dependencies: 2277 | "@jest/types" "^27.1.1" 2278 | jest-regex-util "^27.0.6" 2279 | jest-snapshot "^27.2.0" 2280 | 2281 | jest-resolve@^27.2.0: 2282 | version "27.2.0" 2283 | resolved "https://registry.nlark.com/jest-resolve/download/jest-resolve-27.2.0.tgz?cache=0&sync_timestamp=1631520431077&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-27.2.0.tgz#f5d053693ab3806ec2f778e6df8b0aa4cfaef95f" 2284 | integrity sha1-9dBTaTqzgG7C93jm34sKpM+u+V8= 2285 | dependencies: 2286 | "@jest/types" "^27.1.1" 2287 | chalk "^4.0.0" 2288 | escalade "^3.1.1" 2289 | graceful-fs "^4.2.4" 2290 | jest-haste-map "^27.2.0" 2291 | jest-pnp-resolver "^1.2.2" 2292 | jest-util "^27.2.0" 2293 | jest-validate "^27.2.0" 2294 | resolve "^1.20.0" 2295 | slash "^3.0.0" 2296 | 2297 | jest-runner@^27.2.0: 2298 | version "27.2.0" 2299 | resolved "https://registry.nlark.com/jest-runner/download/jest-runner-27.2.0.tgz?cache=0&sync_timestamp=1631520516702&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-27.2.0.tgz#281b255d88a473aebc0b5cb46e58a83a1251cab3" 2300 | integrity sha1-KBslXYikc668C1y0blioOhJRyrM= 2301 | dependencies: 2302 | "@jest/console" "^27.2.0" 2303 | "@jest/environment" "^27.2.0" 2304 | "@jest/test-result" "^27.2.0" 2305 | "@jest/transform" "^27.2.0" 2306 | "@jest/types" "^27.1.1" 2307 | "@types/node" "*" 2308 | chalk "^4.0.0" 2309 | emittery "^0.8.1" 2310 | exit "^0.1.2" 2311 | graceful-fs "^4.2.4" 2312 | jest-docblock "^27.0.6" 2313 | jest-environment-jsdom "^27.2.0" 2314 | jest-environment-node "^27.2.0" 2315 | jest-haste-map "^27.2.0" 2316 | jest-leak-detector "^27.2.0" 2317 | jest-message-util "^27.2.0" 2318 | jest-resolve "^27.2.0" 2319 | jest-runtime "^27.2.0" 2320 | jest-util "^27.2.0" 2321 | jest-worker "^27.2.0" 2322 | source-map-support "^0.5.6" 2323 | throat "^6.0.1" 2324 | 2325 | jest-runtime@^27.2.0: 2326 | version "27.2.0" 2327 | resolved "https://registry.nlark.com/jest-runtime/download/jest-runtime-27.2.0.tgz#998295ccd80008b3031eeb5cc60e801e8551024b" 2328 | integrity sha1-mYKVzNgACLMDHutcxg6AHoVRAks= 2329 | dependencies: 2330 | "@jest/console" "^27.2.0" 2331 | "@jest/environment" "^27.2.0" 2332 | "@jest/fake-timers" "^27.2.0" 2333 | "@jest/globals" "^27.2.0" 2334 | "@jest/source-map" "^27.0.6" 2335 | "@jest/test-result" "^27.2.0" 2336 | "@jest/transform" "^27.2.0" 2337 | "@jest/types" "^27.1.1" 2338 | "@types/yargs" "^16.0.0" 2339 | chalk "^4.0.0" 2340 | cjs-module-lexer "^1.0.0" 2341 | collect-v8-coverage "^1.0.0" 2342 | execa "^5.0.0" 2343 | exit "^0.1.2" 2344 | glob "^7.1.3" 2345 | graceful-fs "^4.2.4" 2346 | jest-haste-map "^27.2.0" 2347 | jest-message-util "^27.2.0" 2348 | jest-mock "^27.1.1" 2349 | jest-regex-util "^27.0.6" 2350 | jest-resolve "^27.2.0" 2351 | jest-snapshot "^27.2.0" 2352 | jest-util "^27.2.0" 2353 | jest-validate "^27.2.0" 2354 | slash "^3.0.0" 2355 | strip-bom "^4.0.0" 2356 | yargs "^16.0.3" 2357 | 2358 | jest-serializer@^27.0.6: 2359 | version "27.0.6" 2360 | resolved "https://registry.nlark.com/jest-serializer/download/jest-serializer-27.0.6.tgz?cache=0&sync_timestamp=1624900202593&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-serializer%2Fdownload%2Fjest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" 2361 | integrity sha1-k6bHTgEyuBotVGIyUcRsSYu1vsE= 2362 | dependencies: 2363 | "@types/node" "*" 2364 | graceful-fs "^4.2.4" 2365 | 2366 | jest-snapshot@^27.2.0: 2367 | version "27.2.0" 2368 | resolved "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-27.2.0.tgz?cache=0&sync_timestamp=1631520512139&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-27.2.0.tgz#7961e7107ac666a46fbb23e7bb48ce0b8c6a9285" 2369 | integrity sha1-eWHnEHrGZqRvuyPnu0jOC4xqkoU= 2370 | dependencies: 2371 | "@babel/core" "^7.7.2" 2372 | "@babel/generator" "^7.7.2" 2373 | "@babel/parser" "^7.7.2" 2374 | "@babel/plugin-syntax-typescript" "^7.7.2" 2375 | "@babel/traverse" "^7.7.2" 2376 | "@babel/types" "^7.0.0" 2377 | "@jest/transform" "^27.2.0" 2378 | "@jest/types" "^27.1.1" 2379 | "@types/babel__traverse" "^7.0.4" 2380 | "@types/prettier" "^2.1.5" 2381 | babel-preset-current-node-syntax "^1.0.0" 2382 | chalk "^4.0.0" 2383 | expect "^27.2.0" 2384 | graceful-fs "^4.2.4" 2385 | jest-diff "^27.2.0" 2386 | jest-get-type "^27.0.6" 2387 | jest-haste-map "^27.2.0" 2388 | jest-matcher-utils "^27.2.0" 2389 | jest-message-util "^27.2.0" 2390 | jest-resolve "^27.2.0" 2391 | jest-util "^27.2.0" 2392 | natural-compare "^1.4.0" 2393 | pretty-format "^27.2.0" 2394 | semver "^7.3.2" 2395 | 2396 | jest-util@^27.2.0: 2397 | version "27.2.0" 2398 | resolved "https://registry.nlark.com/jest-util/download/jest-util-27.2.0.tgz?cache=0&sync_timestamp=1631520525717&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-27.2.0.tgz#bfccb85cfafae752257319e825a5b8d4ada470dc" 2399 | integrity sha1-v8y4XPr651IlcxnoJaW41K2kcNw= 2400 | dependencies: 2401 | "@jest/types" "^27.1.1" 2402 | "@types/node" "*" 2403 | chalk "^4.0.0" 2404 | graceful-fs "^4.2.4" 2405 | is-ci "^3.0.0" 2406 | picomatch "^2.2.3" 2407 | 2408 | jest-validate@^27.2.0: 2409 | version "27.2.0" 2410 | resolved "https://registry.nlark.com/jest-validate/download/jest-validate-27.2.0.tgz?cache=0&sync_timestamp=1631520430955&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-27.2.0.tgz#b7535f12d95dd3b4382831f4047384ca098642ab" 2411 | integrity sha1-t1NfEtld07Q4KDH0BHOEygmGQqs= 2412 | dependencies: 2413 | "@jest/types" "^27.1.1" 2414 | camelcase "^6.2.0" 2415 | chalk "^4.0.0" 2416 | jest-get-type "^27.0.6" 2417 | leven "^3.1.0" 2418 | pretty-format "^27.2.0" 2419 | 2420 | jest-watcher@^27.2.0: 2421 | version "27.2.0" 2422 | resolved "https://registry.nlark.com/jest-watcher/download/jest-watcher-27.2.0.tgz?cache=0&sync_timestamp=1631520458051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-watcher%2Fdownload%2Fjest-watcher-27.2.0.tgz#dc2eef4c13c6d41cebf3f1fc5f900a54b51c2ea0" 2423 | integrity sha1-3C7vTBPG1Bzr8/H8X5AKVLUcLqA= 2424 | dependencies: 2425 | "@jest/test-result" "^27.2.0" 2426 | "@jest/types" "^27.1.1" 2427 | "@types/node" "*" 2428 | ansi-escapes "^4.2.1" 2429 | chalk "^4.0.0" 2430 | jest-util "^27.2.0" 2431 | string-length "^4.0.1" 2432 | 2433 | jest-worker@^27.2.0: 2434 | version "27.2.0" 2435 | resolved "https://registry.nlark.com/jest-worker/download/jest-worker-27.2.0.tgz?cache=0&sync_timestamp=1631520421179&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-27.2.0.tgz#11eef39f1c88f41384ca235c2f48fe50bc229bc0" 2436 | integrity sha1-Ee7znxyI9BOEyiNcL0j+ULwim8A= 2437 | dependencies: 2438 | "@types/node" "*" 2439 | merge-stream "^2.0.0" 2440 | supports-color "^8.0.0" 2441 | 2442 | jest@^27.2.0: 2443 | version "27.2.0" 2444 | resolved "https://registry.nlark.com/jest/download/jest-27.2.0.tgz?cache=0&sync_timestamp=1631520621556&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest%2Fdownload%2Fjest-27.2.0.tgz#3bc329287d699d26361e2094919630eefdf1ac0d" 2445 | integrity sha1-O8MpKH1pnSY2HiCUkZYw7v3xrA0= 2446 | dependencies: 2447 | "@jest/core" "^27.2.0" 2448 | import-local "^3.0.2" 2449 | jest-cli "^27.2.0" 2450 | 2451 | js-tokens@^4.0.0: 2452 | version "4.0.0" 2453 | resolved "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345098261&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2454 | integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= 2455 | 2456 | js-yaml@^3.13.1: 2457 | version "3.14.1" 2458 | resolved "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2459 | integrity sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc= 2460 | dependencies: 2461 | argparse "^1.0.7" 2462 | esprima "^4.0.0" 2463 | 2464 | jsdom@^16.6.0: 2465 | version "16.7.0" 2466 | resolved "https://registry.nlark.com/jsdom/download/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 2467 | integrity sha1-kYrnGWVCSxl8gZ+Bg6dU4Yl3txA= 2468 | dependencies: 2469 | abab "^2.0.5" 2470 | acorn "^8.2.4" 2471 | acorn-globals "^6.0.0" 2472 | cssom "^0.4.4" 2473 | cssstyle "^2.3.0" 2474 | data-urls "^2.0.0" 2475 | decimal.js "^10.2.1" 2476 | domexception "^2.0.1" 2477 | escodegen "^2.0.0" 2478 | form-data "^3.0.0" 2479 | html-encoding-sniffer "^2.0.1" 2480 | http-proxy-agent "^4.0.1" 2481 | https-proxy-agent "^5.0.0" 2482 | is-potential-custom-element-name "^1.0.1" 2483 | nwsapi "^2.2.0" 2484 | parse5 "6.0.1" 2485 | saxes "^5.0.1" 2486 | symbol-tree "^3.2.4" 2487 | tough-cookie "^4.0.0" 2488 | w3c-hr-time "^1.0.2" 2489 | w3c-xmlserializer "^2.0.0" 2490 | webidl-conversions "^6.1.0" 2491 | whatwg-encoding "^1.0.5" 2492 | whatwg-mimetype "^2.3.0" 2493 | whatwg-url "^8.5.0" 2494 | ws "^7.4.6" 2495 | xml-name-validator "^3.0.0" 2496 | 2497 | jsesc@^2.5.1: 2498 | version "2.5.2" 2499 | resolved "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2500 | integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q= 2501 | 2502 | jsesc@~0.5.0: 2503 | version "0.5.0" 2504 | resolved "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2505 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2506 | 2507 | json5@^2.1.2: 2508 | version "2.2.0" 2509 | resolved "https://registry.npm.taobao.org/json5/download/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 2510 | integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM= 2511 | dependencies: 2512 | minimist "^1.2.5" 2513 | 2514 | kleur@^3.0.3: 2515 | version "3.0.3" 2516 | resolved "https://registry.npm.taobao.org/kleur/download/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2517 | integrity sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4= 2518 | 2519 | leven@^3.1.0: 2520 | version "3.1.0" 2521 | resolved "https://registry.nlark.com/leven/download/leven-3.1.0.tgz?cache=0&sync_timestamp=1628597847220&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fleven%2Fdownload%2Fleven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2522 | integrity sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I= 2523 | 2524 | levn@~0.3.0: 2525 | version "0.3.0" 2526 | resolved "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2527 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2528 | dependencies: 2529 | prelude-ls "~1.1.2" 2530 | type-check "~0.3.2" 2531 | 2532 | locate-path@^5.0.0: 2533 | version "5.0.0" 2534 | resolved "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz?cache=0&sync_timestamp=1629895618224&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flocate-path%2Fdownload%2Flocate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2535 | integrity sha1-Gvujlq/WdqbUJQTQpno6frn2KqA= 2536 | dependencies: 2537 | p-locate "^4.1.0" 2538 | 2539 | lodash.debounce@^4.0.8: 2540 | version "4.0.8" 2541 | resolved "https://registry.npm.taobao.org/lodash.debounce/download/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2542 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2543 | 2544 | lodash@^4.7.0: 2545 | version "4.17.21" 2546 | resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1615982514995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2547 | integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw= 2548 | 2549 | lru-cache@^6.0.0: 2550 | version "6.0.0" 2551 | resolved "https://registry.npm.taobao.org/lru-cache/download/lru-cache-6.0.0.tgz?cache=0&sync_timestamp=1615982572805&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flru-cache%2Fdownload%2Flru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2552 | integrity sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ= 2553 | dependencies: 2554 | yallist "^4.0.0" 2555 | 2556 | make-dir@^3.0.0: 2557 | version "3.1.0" 2558 | resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2559 | integrity sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8= 2560 | dependencies: 2561 | semver "^6.0.0" 2562 | 2563 | makeerror@1.0.x: 2564 | version "1.0.11" 2565 | resolved "https://registry.npm.taobao.org/makeerror/download/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2566 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 2567 | dependencies: 2568 | tmpl "1.0.x" 2569 | 2570 | merge-stream@^2.0.0: 2571 | version "2.0.0" 2572 | resolved "https://registry.npm.taobao.org/merge-stream/download/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2573 | integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A= 2574 | 2575 | micromatch@^4.0.4: 2576 | version "4.0.4" 2577 | resolved "https://registry.npm.taobao.org/micromatch/download/micromatch-4.0.4.tgz?cache=0&sync_timestamp=1618054787196&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmicromatch%2Fdownload%2Fmicromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 2578 | integrity sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k= 2579 | dependencies: 2580 | braces "^3.0.1" 2581 | picomatch "^2.2.3" 2582 | 2583 | mime-db@1.49.0: 2584 | version "1.49.0" 2585 | resolved "https://registry.nlark.com/mime-db/download/mime-db-1.49.0.tgz?cache=0&sync_timestamp=1631863111146&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" 2586 | integrity sha1-89/eYMmenPO8lwHWh3ePU3ABy+0= 2587 | 2588 | mime-types@^2.1.12: 2589 | version "2.1.32" 2590 | resolved "https://registry.nlark.com/mime-types/download/mime-types-2.1.32.tgz?cache=0&sync_timestamp=1627407819001&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" 2591 | integrity sha1-HQDonn3n/gIAjbYQAdngKFJnD9U= 2592 | dependencies: 2593 | mime-db "1.49.0" 2594 | 2595 | mimic-fn@^2.1.0: 2596 | version "2.1.0" 2597 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2598 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= 2599 | 2600 | minimatch@^3.0.4: 2601 | version "3.0.4" 2602 | resolved "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2603 | integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM= 2604 | dependencies: 2605 | brace-expansion "^1.1.7" 2606 | 2607 | minimist@^1.2.5: 2608 | version "1.2.5" 2609 | resolved "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2610 | integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI= 2611 | 2612 | ms@2.1.2: 2613 | version "2.1.2" 2614 | resolved "https://registry.nlark.com/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2615 | integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk= 2616 | 2617 | natural-compare@^1.4.0: 2618 | version "1.4.0" 2619 | resolved "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2620 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2621 | 2622 | node-int64@^0.4.0: 2623 | version "0.4.0" 2624 | resolved "https://registry.npm.taobao.org/node-int64/download/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2625 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2626 | 2627 | node-modules-regexp@^1.0.0: 2628 | version "1.0.0" 2629 | resolved "https://registry.npm.taobao.org/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2630 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 2631 | 2632 | node-releases@^1.1.75: 2633 | version "1.1.75" 2634 | resolved "https://registry.nlark.com/node-releases/download/node-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe" 2635 | integrity sha1-bdjIdrmJehuOWgLeJq+nm7VOu/4= 2636 | 2637 | normalize-path@^3.0.0: 2638 | version "3.0.0" 2639 | resolved "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2640 | integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU= 2641 | 2642 | npm-run-path@^4.0.1: 2643 | version "4.0.1" 2644 | resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2645 | integrity sha1-t+zR5e1T2o43pV4cImnguX7XSOo= 2646 | dependencies: 2647 | path-key "^3.0.0" 2648 | 2649 | nwsapi@^2.2.0: 2650 | version "2.2.0" 2651 | resolved "https://registry.npm.taobao.org/nwsapi/download/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2652 | integrity sha1-IEh5qePQaP8qVROcLHcngGgaOLc= 2653 | 2654 | object-keys@^1.0.12, object-keys@^1.1.1: 2655 | version "1.1.1" 2656 | resolved "https://registry.npm.taobao.org/object-keys/download/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2657 | integrity sha1-HEfyct8nfzsdrwYWd9nILiMixg4= 2658 | 2659 | object.assign@^4.1.0: 2660 | version "4.1.2" 2661 | resolved "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 2662 | integrity sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA= 2663 | dependencies: 2664 | call-bind "^1.0.0" 2665 | define-properties "^1.1.3" 2666 | has-symbols "^1.0.1" 2667 | object-keys "^1.1.1" 2668 | 2669 | once@^1.3.0: 2670 | version "1.4.0" 2671 | resolved "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2672 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2673 | dependencies: 2674 | wrappy "1" 2675 | 2676 | onetime@^5.1.2: 2677 | version "5.1.2" 2678 | resolved "https://registry.npm.taobao.org/onetime/download/onetime-5.1.2.tgz?cache=0&sync_timestamp=1617889724435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fonetime%2Fdownload%2Fonetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2679 | integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4= 2680 | dependencies: 2681 | mimic-fn "^2.1.0" 2682 | 2683 | optionator@^0.8.1: 2684 | version "0.8.3" 2685 | resolved "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2686 | integrity sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU= 2687 | dependencies: 2688 | deep-is "~0.1.3" 2689 | fast-levenshtein "~2.0.6" 2690 | levn "~0.3.0" 2691 | prelude-ls "~1.1.2" 2692 | type-check "~0.3.2" 2693 | word-wrap "~1.2.3" 2694 | 2695 | p-each-series@^2.1.0: 2696 | version "2.2.0" 2697 | resolved "https://registry.npm.taobao.org/p-each-series/download/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" 2698 | integrity sha1-EFqwNXznKyAqiouUkzZyZXteKpo= 2699 | 2700 | p-limit@^2.2.0: 2701 | version "2.3.0" 2702 | resolved "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2703 | integrity sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE= 2704 | dependencies: 2705 | p-try "^2.0.0" 2706 | 2707 | p-locate@^4.1.0: 2708 | version "4.1.0" 2709 | resolved "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892721671&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2710 | integrity sha1-o0KLtwiLOmApL2aRkni3wpetTwc= 2711 | dependencies: 2712 | p-limit "^2.2.0" 2713 | 2714 | p-try@^2.0.0: 2715 | version "2.2.0" 2716 | resolved "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2717 | integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY= 2718 | 2719 | parse5@6.0.1: 2720 | version "6.0.1" 2721 | resolved "https://registry.npm.taobao.org/parse5/download/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2722 | integrity sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws= 2723 | 2724 | path-exists@^4.0.0: 2725 | version "4.0.0" 2726 | resolved "https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2727 | integrity sha1-UTvb4tO5XXdi6METfvoZXGxhtbM= 2728 | 2729 | path-is-absolute@^1.0.0: 2730 | version "1.0.1" 2731 | resolved "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2732 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2733 | 2734 | path-key@^3.0.0, path-key@^3.1.0: 2735 | version "3.1.1" 2736 | resolved "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz?cache=0&sync_timestamp=1617971632960&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2737 | integrity sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U= 2738 | 2739 | path-parse@^1.0.6: 2740 | version "1.0.7" 2741 | resolved "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2742 | integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU= 2743 | 2744 | picomatch@^2.0.4, picomatch@^2.2.3: 2745 | version "2.3.0" 2746 | resolved "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648246651&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 2747 | integrity sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI= 2748 | 2749 | pirates@^4.0.1: 2750 | version "4.0.1" 2751 | resolved "https://registry.npm.taobao.org/pirates/download/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 2752 | integrity sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c= 2753 | dependencies: 2754 | node-modules-regexp "^1.0.0" 2755 | 2756 | pkg-dir@^4.2.0: 2757 | version "4.2.0" 2758 | resolved "https://registry.npm.taobao.org/pkg-dir/download/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2759 | integrity sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM= 2760 | dependencies: 2761 | find-up "^4.0.0" 2762 | 2763 | prelude-ls@~1.1.2: 2764 | version "1.1.2" 2765 | resolved "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2766 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2767 | 2768 | pretty-format@^27.0.0, pretty-format@^27.2.0: 2769 | version "27.2.0" 2770 | resolved "https://registry.nlark.com/pretty-format/download/pretty-format-27.2.0.tgz?cache=0&sync_timestamp=1631520426763&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-27.2.0.tgz#ee37a94ce2a79765791a8649ae374d468c18ef19" 2771 | integrity sha1-7jepTOKnl2V5GoZJrjdNRowY7xk= 2772 | dependencies: 2773 | "@jest/types" "^27.1.1" 2774 | ansi-regex "^5.0.0" 2775 | ansi-styles "^5.0.0" 2776 | react-is "^17.0.1" 2777 | 2778 | prompts@^2.0.1: 2779 | version "2.4.1" 2780 | resolved "https://registry.npm.taobao.org/prompts/download/prompts-2.4.1.tgz?cache=0&sync_timestamp=1617240041932&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fprompts%2Fdownload%2Fprompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" 2781 | integrity sha1-vv07EZW6BS+f0v3opIbE6C7nf2E= 2782 | dependencies: 2783 | kleur "^3.0.3" 2784 | sisteransi "^1.0.5" 2785 | 2786 | psl@^1.1.33: 2787 | version "1.8.0" 2788 | resolved "https://registry.nlark.com/psl/download/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2789 | integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ= 2790 | 2791 | punycode@^2.1.1: 2792 | version "2.1.1" 2793 | resolved "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2794 | integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew= 2795 | 2796 | react-is@^17.0.1: 2797 | version "17.0.2" 2798 | resolved "https://registry.nlark.com/react-is/download/react-is-17.0.2.tgz?cache=0&sync_timestamp=1631895790951&other_urls=https%3A%2F%2Fregistry.nlark.com%2Freact-is%2Fdownload%2Freact-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2799 | integrity sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA= 2800 | 2801 | regenerate-unicode-properties@^9.0.0: 2802 | version "9.0.0" 2803 | resolved "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-9.0.0.tgz?cache=0&sync_timestamp=1631617161322&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerate-unicode-properties%2Fdownload%2Fregenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" 2804 | integrity sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY= 2805 | dependencies: 2806 | regenerate "^1.4.2" 2807 | 2808 | regenerate@^1.4.2: 2809 | version "1.4.2" 2810 | resolved "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 2811 | integrity sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo= 2812 | 2813 | regenerator-runtime@^0.13.4: 2814 | version "0.13.9" 2815 | resolved "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.9.tgz?cache=0&sync_timestamp=1626993001371&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 2816 | integrity sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I= 2817 | 2818 | regenerator-transform@^0.14.2: 2819 | version "0.14.5" 2820 | resolved "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz?cache=0&sync_timestamp=1627057502723&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2821 | integrity sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ= 2822 | dependencies: 2823 | "@babel/runtime" "^7.8.4" 2824 | 2825 | regexpu-core@^4.7.1: 2826 | version "4.8.0" 2827 | resolved "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.8.0.tgz?cache=0&sync_timestamp=1631619113277&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" 2828 | integrity sha1-5WBbo2G2excYR4UBMnUC9EeamPA= 2829 | dependencies: 2830 | regenerate "^1.4.2" 2831 | regenerate-unicode-properties "^9.0.0" 2832 | regjsgen "^0.5.2" 2833 | regjsparser "^0.7.0" 2834 | unicode-match-property-ecmascript "^2.0.0" 2835 | unicode-match-property-value-ecmascript "^2.0.0" 2836 | 2837 | regjsgen@^0.5.2: 2838 | version "0.5.2" 2839 | resolved "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2840 | integrity sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM= 2841 | 2842 | regjsparser@^0.7.0: 2843 | version "0.7.0" 2844 | resolved "https://registry.nlark.com/regjsparser/download/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" 2845 | integrity sha1-prZntUyIXhi1JVTLSWDvcRh+mWg= 2846 | dependencies: 2847 | jsesc "~0.5.0" 2848 | 2849 | require-directory@^2.1.1: 2850 | version "2.1.1" 2851 | resolved "https://registry.nlark.com/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2852 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2853 | 2854 | resolve-cwd@^3.0.0: 2855 | version "3.0.0" 2856 | resolved "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-3.0.0.tgz?cache=0&sync_timestamp=1615984440417&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve-cwd%2Fdownload%2Fresolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2857 | integrity sha1-DwB18bslRHZs9zumpuKt/ryxPy0= 2858 | dependencies: 2859 | resolve-from "^5.0.0" 2860 | 2861 | resolve-from@^5.0.0: 2862 | version "5.0.0" 2863 | resolved "https://registry.npm.taobao.org/resolve-from/download/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2864 | integrity sha1-w1IlhD3493bfIcV1V7wIfp39/Gk= 2865 | 2866 | resolve@^1.14.2, resolve@^1.20.0: 2867 | version "1.20.0" 2868 | resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz?cache=0&sync_timestamp=1615982599966&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2869 | integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU= 2870 | dependencies: 2871 | is-core-module "^2.2.0" 2872 | path-parse "^1.0.6" 2873 | 2874 | rimraf@^3.0.0: 2875 | version "3.0.2" 2876 | resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2877 | integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho= 2878 | dependencies: 2879 | glob "^7.1.3" 2880 | 2881 | safe-buffer@~5.1.1: 2882 | version "5.1.2" 2883 | resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2884 | integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= 2885 | 2886 | "safer-buffer@>= 2.1.2 < 3": 2887 | version "2.1.2" 2888 | resolved "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2889 | integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= 2890 | 2891 | saxes@^5.0.1: 2892 | version "5.0.1" 2893 | resolved "https://registry.npm.taobao.org/saxes/download/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2894 | integrity sha1-7rq5U/o7dgjb6U5drbFciI+maW0= 2895 | dependencies: 2896 | xmlchars "^2.2.0" 2897 | 2898 | semver@7.0.0: 2899 | version "7.0.0" 2900 | resolved "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2901 | integrity sha1-XzyjV2HkfgWyBsba/yz4FPAxa44= 2902 | 2903 | semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 2904 | version "6.3.0" 2905 | resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2906 | integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0= 2907 | 2908 | semver@^7.3.2: 2909 | version "7.3.5" 2910 | resolved "https://registry.npm.taobao.org/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 2911 | integrity sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc= 2912 | dependencies: 2913 | lru-cache "^6.0.0" 2914 | 2915 | shebang-command@^2.0.0: 2916 | version "2.0.0" 2917 | resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2918 | integrity sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo= 2919 | dependencies: 2920 | shebang-regex "^3.0.0" 2921 | 2922 | shebang-regex@^3.0.0: 2923 | version "3.0.0" 2924 | resolved "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz?cache=0&sync_timestamp=1628896299850&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshebang-regex%2Fdownload%2Fshebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2925 | integrity sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI= 2926 | 2927 | signal-exit@^3.0.2, signal-exit@^3.0.3: 2928 | version "3.0.4" 2929 | resolved "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.4.tgz?cache=0&sync_timestamp=1631772907409&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsignal-exit%2Fdownload%2Fsignal-exit-3.0.4.tgz#366a4684d175b9cab2081e3681fda3747b6c51d7" 2930 | integrity sha1-NmpGhNF1ucqyCB42gf2jdHtsUdc= 2931 | 2932 | sisteransi@^1.0.5: 2933 | version "1.0.5" 2934 | resolved "https://registry.npm.taobao.org/sisteransi/download/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2935 | integrity sha1-E01oEpd1ZDfMBcoBNw06elcQde0= 2936 | 2937 | slash@^3.0.0: 2938 | version "3.0.0" 2939 | resolved "https://registry.npm.taobao.org/slash/download/slash-3.0.0.tgz?cache=0&sync_timestamp=1618384496016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fslash%2Fdownload%2Fslash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2940 | integrity sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ= 2941 | 2942 | source-map-support@^0.5.6: 2943 | version "0.5.20" 2944 | resolved "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" 2945 | integrity sha1-EhZgifj15ejFaSazd2Mzkt0stsk= 2946 | dependencies: 2947 | buffer-from "^1.0.0" 2948 | source-map "^0.6.0" 2949 | 2950 | source-map@^0.5.0: 2951 | version "0.5.7" 2952 | resolved "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2953 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2954 | 2955 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2956 | version "0.6.1" 2957 | resolved "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2958 | integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM= 2959 | 2960 | source-map@^0.7.3: 2961 | version "0.7.3" 2962 | resolved "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2963 | integrity sha1-UwL4FpAxc1ImVECS5kmB91F1A4M= 2964 | 2965 | sprintf-js@~1.0.2: 2966 | version "1.0.3" 2967 | resolved "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2968 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2969 | 2970 | stack-utils@^2.0.3: 2971 | version "2.0.5" 2972 | resolved "https://registry.nlark.com/stack-utils/download/stack-utils-2.0.5.tgz?cache=0&sync_timestamp=1631896498361&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstack-utils%2Fdownload%2Fstack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 2973 | integrity sha1-0lJl/KmVFUZZ27+6O0klR3jS/dU= 2974 | dependencies: 2975 | escape-string-regexp "^2.0.0" 2976 | 2977 | string-length@^4.0.1: 2978 | version "4.0.2" 2979 | resolved "https://registry.nlark.com/string-length/download/string-length-4.0.2.tgz?cache=0&sync_timestamp=1631558009435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2980 | integrity sha1-qKjce9XBqCubPIuH4SX2aHG25Xo= 2981 | dependencies: 2982 | char-regex "^1.0.2" 2983 | strip-ansi "^6.0.0" 2984 | 2985 | string-width@^4.1.0, string-width@^4.2.0: 2986 | version "4.2.2" 2987 | resolved "https://registry.nlark.com/string-width/download/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 2988 | integrity sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU= 2989 | dependencies: 2990 | emoji-regex "^8.0.0" 2991 | is-fullwidth-code-point "^3.0.0" 2992 | strip-ansi "^6.0.0" 2993 | 2994 | strip-ansi@^6.0.0: 2995 | version "6.0.0" 2996 | resolved "https://registry.nlark.com/strip-ansi/download/strip-ansi-6.0.0.tgz?cache=0&sync_timestamp=1631350330859&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2997 | integrity sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI= 2998 | dependencies: 2999 | ansi-regex "^5.0.0" 3000 | 3001 | strip-bom@^4.0.0: 3002 | version "4.0.0" 3003 | resolved "https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 3004 | integrity sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg= 3005 | 3006 | strip-final-newline@^2.0.0: 3007 | version "2.0.0" 3008 | resolved "https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz?cache=0&sync_timestamp=1620046435959&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-final-newline%2Fdownload%2Fstrip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3009 | integrity sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0= 3010 | 3011 | supports-color@^5.3.0: 3012 | version "5.5.0" 3013 | resolved "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3014 | integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8= 3015 | dependencies: 3016 | has-flag "^3.0.0" 3017 | 3018 | supports-color@^7.0.0, supports-color@^7.1.0: 3019 | version "7.2.0" 3020 | resolved "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3021 | integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo= 3022 | dependencies: 3023 | has-flag "^4.0.0" 3024 | 3025 | supports-color@^8.0.0: 3026 | version "8.1.1" 3027 | resolved "https://registry.nlark.com/supports-color/download/supports-color-8.1.1.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 3028 | integrity sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw= 3029 | dependencies: 3030 | has-flag "^4.0.0" 3031 | 3032 | supports-hyperlinks@^2.0.0: 3033 | version "2.2.0" 3034 | resolved "https://registry.npm.taobao.org/supports-hyperlinks/download/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 3035 | integrity sha1-T3e0JIh2WJF3S3DHm6vYf5vVlLs= 3036 | dependencies: 3037 | has-flag "^4.0.0" 3038 | supports-color "^7.0.0" 3039 | 3040 | symbol-tree@^3.2.4: 3041 | version "3.2.4" 3042 | resolved "https://registry.npm.taobao.org/symbol-tree/download/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3043 | integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I= 3044 | 3045 | terminal-link@^2.0.0: 3046 | version "2.1.1" 3047 | resolved "https://registry.npm.taobao.org/terminal-link/download/terminal-link-2.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterminal-link%2Fdownload%2Fterminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 3048 | integrity sha1-FKZKJ6s8Dfkz6lRvulXy0HjtyZQ= 3049 | dependencies: 3050 | ansi-escapes "^4.2.1" 3051 | supports-hyperlinks "^2.0.0" 3052 | 3053 | test-exclude@^6.0.0: 3054 | version "6.0.0" 3055 | resolved "https://registry.npm.taobao.org/test-exclude/download/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 3056 | integrity sha1-BKhphmHYBepvopO2y55jrARO8V4= 3057 | dependencies: 3058 | "@istanbuljs/schema" "^0.1.2" 3059 | glob "^7.1.4" 3060 | minimatch "^3.0.4" 3061 | 3062 | throat@^6.0.1: 3063 | version "6.0.1" 3064 | resolved "https://registry.npm.taobao.org/throat/download/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 3065 | integrity sha1-1RT+2tlXQMEsLX/HDqhj61Gt43U= 3066 | 3067 | tmpl@1.0.x: 3068 | version "1.0.5" 3069 | resolved "https://registry.nlark.com/tmpl/download/tmpl-1.0.5.tgz?cache=0&sync_timestamp=1630997226611&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftmpl%2Fdownload%2Ftmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3070 | integrity sha1-hoPguQK7nCDE9ybjwLafNlGMB8w= 3071 | 3072 | to-fast-properties@^2.0.0: 3073 | version "2.0.0" 3074 | resolved "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418893613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3075 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3076 | 3077 | to-regex-range@^5.0.1: 3078 | version "5.0.1" 3079 | resolved "https://registry.npm.taobao.org/to-regex-range/download/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3080 | integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ= 3081 | dependencies: 3082 | is-number "^7.0.0" 3083 | 3084 | tough-cookie@^4.0.0: 3085 | version "4.0.0" 3086 | resolved "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 3087 | integrity sha1-2CIjTuyogvmR8PkIgkrSYi3b7OQ= 3088 | dependencies: 3089 | psl "^1.1.33" 3090 | punycode "^2.1.1" 3091 | universalify "^0.1.2" 3092 | 3093 | tr46@^2.1.0: 3094 | version "2.1.0" 3095 | resolved "https://registry.nlark.com/tr46/download/tr46-2.1.0.tgz?cache=0&sync_timestamp=1621678122275&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftr46%2Fdownload%2Ftr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 3096 | integrity sha1-+oeqgcpdWUHajL8fm3SdyWmk4kA= 3097 | dependencies: 3098 | punycode "^2.1.1" 3099 | 3100 | type-check@~0.3.2: 3101 | version "0.3.2" 3102 | resolved "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3103 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3104 | dependencies: 3105 | prelude-ls "~1.1.2" 3106 | 3107 | type-detect@4.0.8: 3108 | version "4.0.8" 3109 | resolved "https://registry.npm.taobao.org/type-detect/download/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3110 | integrity sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw= 3111 | 3112 | type-fest@^0.21.3: 3113 | version "0.21.3" 3114 | resolved "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 3115 | integrity sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc= 3116 | 3117 | typedarray-to-buffer@^3.1.5: 3118 | version "3.1.5" 3119 | resolved "https://registry.npm.taobao.org/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3120 | integrity sha1-qX7nqf9CaRufeD/xvFES/j/KkIA= 3121 | dependencies: 3122 | is-typedarray "^1.0.0" 3123 | 3124 | typescript@^4.4.3: 3125 | version "4.4.3" 3126 | resolved "https://registry.nlark.com/typescript/download/typescript-4.4.3.tgz?cache=0&sync_timestamp=1631949569593&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftypescript%2Fdownload%2Ftypescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324" 3127 | integrity sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ= 3128 | 3129 | unicode-canonical-property-names-ecmascript@^2.0.0: 3130 | version "2.0.0" 3131 | resolved "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" 3132 | integrity sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw= 3133 | 3134 | unicode-match-property-ecmascript@^2.0.0: 3135 | version "2.0.0" 3136 | resolved "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631618696521&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-match-property-ecmascript%2Fdownload%2Funicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" 3137 | integrity sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM= 3138 | dependencies: 3139 | unicode-canonical-property-names-ecmascript "^2.0.0" 3140 | unicode-property-aliases-ecmascript "^2.0.0" 3141 | 3142 | unicode-match-property-value-ecmascript@^2.0.0: 3143 | version "2.0.0" 3144 | resolved "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" 3145 | integrity sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ= 3146 | 3147 | unicode-property-aliases-ecmascript@^2.0.0: 3148 | version "2.0.0" 3149 | resolved "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631609408629&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-property-aliases-ecmascript%2Fdownload%2Funicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" 3150 | integrity sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g= 3151 | 3152 | universalify@^0.1.2: 3153 | version "0.1.2" 3154 | resolved "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3155 | integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY= 3156 | 3157 | v8-to-istanbul@^8.0.0: 3158 | version "8.0.0" 3159 | resolved "https://registry.nlark.com/v8-to-istanbul/download/v8-to-istanbul-8.0.0.tgz#4229f2a99e367f3f018fa1d5c2b8ec684667c69c" 3160 | integrity sha1-QinyqZ42fz8Bj6HVwrjsaEZnxpw= 3161 | dependencies: 3162 | "@types/istanbul-lib-coverage" "^2.0.1" 3163 | convert-source-map "^1.6.0" 3164 | source-map "^0.7.3" 3165 | 3166 | w3c-hr-time@^1.0.2: 3167 | version "1.0.2" 3168 | resolved "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 3169 | integrity sha1-ConN9cwVgi35w2BUNnaWPgzDCM0= 3170 | dependencies: 3171 | browser-process-hrtime "^1.0.0" 3172 | 3173 | w3c-xmlserializer@^2.0.0: 3174 | version "2.0.0" 3175 | resolved "https://registry.npm.taobao.org/w3c-xmlserializer/download/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 3176 | integrity sha1-PnEEoFt1FGzGD1ZDgLf2g6zxAgo= 3177 | dependencies: 3178 | xml-name-validator "^3.0.0" 3179 | 3180 | walker@^1.0.7: 3181 | version "1.0.7" 3182 | resolved "https://registry.npm.taobao.org/walker/download/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3183 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 3184 | dependencies: 3185 | makeerror "1.0.x" 3186 | 3187 | webidl-conversions@^5.0.0: 3188 | version "5.0.0" 3189 | resolved "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 3190 | integrity sha1-rlnIoAsSFUOirMZcBDT1ew/BGv8= 3191 | 3192 | webidl-conversions@^6.1.0: 3193 | version "6.1.0" 3194 | resolved "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 3195 | integrity sha1-kRG01+qArNQPUnDWZmIa+ni2lRQ= 3196 | 3197 | whatwg-encoding@^1.0.5: 3198 | version "1.0.5" 3199 | resolved "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz?cache=0&sync_timestamp=1631479408233&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwhatwg-encoding%2Fdownload%2Fwhatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3200 | integrity sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA= 3201 | dependencies: 3202 | iconv-lite "0.4.24" 3203 | 3204 | whatwg-mimetype@^2.3.0: 3205 | version "2.3.0" 3206 | resolved "https://registry.npm.taobao.org/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3207 | integrity sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78= 3208 | 3209 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3210 | version "8.7.0" 3211 | resolved "https://registry.nlark.com/whatwg-url/download/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 3212 | integrity sha1-ZWp45RD/jzk3vAvL6fXArDWUG3c= 3213 | dependencies: 3214 | lodash "^4.7.0" 3215 | tr46 "^2.1.0" 3216 | webidl-conversions "^6.1.0" 3217 | 3218 | which@^2.0.1: 3219 | version "2.0.2" 3220 | resolved "https://registry.npm.taobao.org/which/download/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3221 | integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE= 3222 | dependencies: 3223 | isexe "^2.0.0" 3224 | 3225 | word-wrap@~1.2.3: 3226 | version "1.2.3" 3227 | resolved "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3228 | integrity sha1-YQY29rH3A4kb00dxzLF/uTtHB5w= 3229 | 3230 | wrap-ansi@^7.0.0: 3231 | version "7.0.0" 3232 | resolved "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrap-ansi%2Fdownload%2Fwrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 3233 | integrity sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM= 3234 | dependencies: 3235 | ansi-styles "^4.0.0" 3236 | string-width "^4.1.0" 3237 | strip-ansi "^6.0.0" 3238 | 3239 | wrappy@1: 3240 | version "1.0.2" 3241 | resolved "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619133505879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3242 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3243 | 3244 | write-file-atomic@^3.0.0: 3245 | version "3.0.3" 3246 | resolved "https://registry.npm.taobao.org/write-file-atomic/download/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3247 | integrity sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug= 3248 | dependencies: 3249 | imurmurhash "^0.1.4" 3250 | is-typedarray "^1.0.0" 3251 | signal-exit "^3.0.2" 3252 | typedarray-to-buffer "^3.1.5" 3253 | 3254 | ws@^7.4.6: 3255 | version "7.5.5" 3256 | resolved "https://registry.nlark.com/ws/download/ws-7.5.5.tgz?cache=0&sync_timestamp=1631130711705&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fws%2Fdownload%2Fws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" 3257 | integrity sha1-i0vEr1GM+r0Ec65PmRRCh7M+uIE= 3258 | 3259 | xml-name-validator@^3.0.0: 3260 | version "3.0.0" 3261 | resolved "https://registry.npm.taobao.org/xml-name-validator/download/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3262 | integrity sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo= 3263 | 3264 | xmlchars@^2.2.0: 3265 | version "2.2.0" 3266 | resolved "https://registry.npm.taobao.org/xmlchars/download/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 3267 | integrity sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs= 3268 | 3269 | y18n@^5.0.5: 3270 | version "5.0.8" 3271 | resolved "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz?cache=0&sync_timestamp=1617822913245&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fy18n%2Fdownload%2Fy18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 3272 | integrity sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU= 3273 | 3274 | yallist@^4.0.0: 3275 | version "4.0.0" 3276 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3277 | integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI= 3278 | 3279 | yargs-parser@^20.2.2: 3280 | version "20.2.9" 3281 | resolved "https://registry.nlark.com/yargs-parser/download/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 3282 | integrity sha1-LrfcOwKJcY/ClfNidThFxBoMlO4= 3283 | 3284 | yargs@^16.0.3: 3285 | version "16.2.0" 3286 | resolved "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1628889096518&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 3287 | integrity sha1-HIK/D2tqZur85+8w43b0mhJHf2Y= 3288 | dependencies: 3289 | cliui "^7.0.2" 3290 | escalade "^3.1.1" 3291 | get-caller-file "^2.0.5" 3292 | require-directory "^2.1.1" 3293 | string-width "^4.2.0" 3294 | y18n "^5.0.5" 3295 | yargs-parser "^20.2.2" 3296 | --------------------------------------------------------------------------------